From 0540a837893f1e32676fe2a9b093216b44f5dc24 Mon Sep 17 00:00:00 2001 From: Dave Laing Date: Fri, 13 May 2016 09:26:31 +1000 Subject: [PATCH 001/508] llvm-general: Adds Darwin compatibilty --- .../haskell-modules/configuration-common.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5f1335ca72f..ca96d057574 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -615,8 +615,20 @@ self: super: { # Uses OpenGL in testing caramia = dontCheck super.caramia; + llvm-general-darwin = overrideCabal (super.llvm-general.override { llvm-config = pkgs.llvm_35; }) (drv: { + preConfigure = '' + sed -i llvm-general.cabal \ + -e 's,extra-libraries: stdc++,extra-libraries: c++,' + ''; + configureFlags = (drv.configureFlags or []) ++ ["--extra-include-dirs=${pkgs.libcxx}/include/c++/v1"]; + librarySystemDepends = [ pkgs.libcxx ] ++ drv.librarySystemDepends or []; + }); + # Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142 - llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; }; + llvm-general = + if pkgs.stdenv.isDarwin + then self.llvm-general-darwin + else super.llvm-general.override { llvm-config = pkgs.llvm_35; }; # Needs help finding LLVM. spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm; From 61ec8c1fe6edad1e99187b3f9ce74d14dc2078b7 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 7 Jun 2016 20:05:09 +0200 Subject: [PATCH 002/508] osm-gps-map: init at 1.1.0 --- .../libraries/osm-gps-map/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/development/libraries/osm-gps-map/default.nix diff --git a/pkgs/development/libraries/osm-gps-map/default.nix b/pkgs/development/libraries/osm-gps-map/default.nix new file mode 100644 index 00000000000..7dc8b8c6112 --- /dev/null +++ b/pkgs/development/libraries/osm-gps-map/default.nix @@ -0,0 +1,29 @@ +{ cairo, fetchzip, glib, gnome3, gobjectIntrospection, pkgconfig, stdenv }: + +stdenv.mkDerivation rec { + name = "osm-gps-map-${version}"; + version = "1.1.0"; + + src = fetchzip { + url = "https://github.com/nzjrs/osm-gps-map/releases/download/${version}/osm-gps-map-${version}.tar.gz"; + sha256 = "0fal3mqcf3yypir4f7njz0dm5wr7lqwpimjx28wz9imh48cqx9n9"; + }; + + outputs = [ "dev" "out" "doc" ]; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ + cairo glib gobjectIntrospection + ] ++ (with gnome3; [ + gnome_common gtk libsoup + ]); + + meta = with stdenv.lib; { + description = "Gtk+ widget for displaying OpenStreetMap tiles"; + homepage = https://nzjrs.github.io/osm-gps-map; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ hrdinka ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec0e5547ce2..56c8138589e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8682,6 +8682,8 @@ in ortp = callPackage ../development/libraries/ortp { }; + osm-gps-map = callPackage ../development/libraries/osm-gps-map { }; + p11_kit = callPackage ../development/libraries/p11-kit { }; paperkey = callPackage ../tools/security/paperkey { }; From dadd9a71507d1425c18c4209b7a8c09a5c34010c Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 7 Jun 2016 20:07:16 +0200 Subject: [PATCH 003/508] darktable: add map feature We lost darktables map (geo coordinates) feature in one of its pervious updates. This readds it. --- pkgs/applications/graphics/darktable/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/applications/graphics/darktable/default.nix index 52a123a7fb9..609d88cea3a 100644 --- a/pkgs/applications/graphics/darktable/default.nix +++ b/pkgs/applications/graphics/darktable/default.nix @@ -3,7 +3,7 @@ , libgnome_keyring, gtk3, ilmbase, intltool, lcms, lcms2 , lensfun, libXau, libXdmcp, libexif, libglade, libgphoto2, libjpeg , libpng, libpthreadstubs, librsvg, libtiff, libxcb -, openexr, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg +, openexr, osm-gps-map, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg , mesa, lua, pugixml, colord, colord-gtk, libxshmfence, libxkbcommon , epoxy, at_spi2_core, libwebp, libsecret, wrapGAppsHook, gnome3 }: @@ -27,6 +27,7 @@ stdenv.mkDerivation rec { libsoup graphicsmagick SDL json_glib openjpeg mesa lua pugixml colord colord-gtk libxshmfence libxkbcommon epoxy at_spi2_core libwebp libsecret wrapGAppsHook gnome3.adwaita-icon-theme + osm-gps-map ]; cmakeFlags = [ From a577b3666e2d2d200d74578603d7aaccc88bcdd2 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 8 Jun 2016 20:28:57 +0200 Subject: [PATCH 004/508] why3: 0.87.0 -> 0.87.1 --- pkgs/applications/science/logic/why3/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix index 7825fc2761e..3891f3ca6d1 100644 --- a/pkgs/applications/science/logic/why3/default.nix +++ b/pkgs/applications/science/logic/why3/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "why3-${version}"; - version = "0.87.0"; + version = "0.87.1"; src = fetchurl { - url = https://gforge.inria.fr/frs/download.php/file/35643/why3-0.87.0.tar.gz; - sha256 = "0c3vhcb70ay7iwvmq0m25fqh38y40c5x7mki4r9pxf13vgbs3xb0"; + url = https://gforge.inria.fr/frs/download.php/file/35893/why3-0.87.1.tar.gz; + sha256 = "1ssik2f6fkpvwpdmxz8hrm3p62qas3sjlqya0r57s60ilpkgiwwb"; }; buildInputs = (with ocamlPackages; [ From d0c7056b927547d77753dea81d932ae5f2d9c193 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Thu, 16 Jun 2016 01:03:22 +0200 Subject: [PATCH 005/508] inline-c-cpp: fix build on darwin --- .../development/haskell-modules/configuration-common.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5f1335ca72f..f31537970a1 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -225,6 +225,15 @@ self: super: { ''; })) pkgs.libcxx; + inline-c-cpp = if !pkgs.stdenv.isDarwin + then super.inline-c-cpp + else addExtraLibrary (overrideCabal super.inline-c-cpp (drv: + { + postPatch = '' + substituteInPlace inline-c-cpp.cabal --replace stdc++ c++ + ''; + })) pkgs.libcxx; + # tests don't compile for some odd reason jwt = dontCheck super.jwt; From 6145b6b7d644139dd551cea36a0bce1580baa971 Mon Sep 17 00:00:00 2001 From: Tim Cuthbertson Date: Mon, 20 Jun 2016 18:33:44 +1000 Subject: [PATCH 006/508] tk: propagate dependency on tcl & libXft --- pkgs/development/libraries/tk/generic.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/tk/generic.nix b/pkgs/development/libraries/tk/generic.nix index c3bab0b2f86..934bfa6a9e9 100644 --- a/pkgs/development/libraries/tk/generic.nix +++ b/pkgs/development/libraries/tk/generic.nix @@ -17,9 +17,11 @@ stdenv.mkDerivation { "--with-tcl=${tcl}/lib" ]; - buildInputs = [ pkgconfig tcl libXft ] + buildInputs = [ pkgconfig ] ++ stdenv.lib.optional stdenv.isDarwin fontconfig; + propagatedBuildInputs = [ tcl libXft ]; + NIX_CFLAGS_LINK = if stdenv.isDarwin then "-lfontconfig" else null; inherit tcl; From f473721e41ecc28cac33d6f3bed77d05be0a9778 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 23 Jun 2016 20:47:22 +0200 Subject: [PATCH 007/508] pythonPackages.pytest_28: 2.8.6 -> 2.8.7 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a128d7d475e..ac9c07ddc20 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4426,11 +4426,11 @@ in modules // { }; pytest_28 = self.pytest_27.override rec { - name = "pytest-2.8.6"; + name = "pytest-2.8.7"; src = pkgs.fetchurl { url = "mirror://pypi/p/pytest/${name}.tar.gz"; - sha256 = "ed38a3725b8e4478555dfdb549a4219ca3ba57955751141a1aaa45b706d84194"; + sha256 = "1bwb06g64x2gky8x5hcrfpg6r351xwvafimnhm5qxq7wajz8ck7w"; }; }; From 9e041fd9befe5091e49269c387b18f079f1a08e1 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 4 Jun 2016 13:55:15 -0400 Subject: [PATCH 008/508] secp256k1: init at 2016-05-30 --- pkgs/tools/security/secp256k1/default.nix | 35 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/tools/security/secp256k1/default.nix diff --git a/pkgs/tools/security/secp256k1/default.nix b/pkgs/tools/security/secp256k1/default.nix new file mode 100644 index 00000000000..f7a53469545 --- /dev/null +++ b/pkgs/tools/security/secp256k1/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, libtool, ... }: + +stdenv.mkDerivation rec { + name = "secp256k1-${version}"; + + # I can't find any version numbers, so we're just using the date + # of the last commit. + version = "2016-05-30"; + + src = fetchFromGitHub { + owner = "bitcoin-core"; + repo = "secp256k1"; + rev = "b3be8521e694eaf45dd29baea035055183c42fe2"; + sha256 = "1pgsy72w87yxbiqn96hnm8alsfx3rj7d9jlzdsypyf6i1rf6w4bq"; + }; + + buildInputs = [ autoconf automake libtool ]; + + configureFlags = [ "--enable-module-recovery" ]; + + preConfigure = "./autogen.sh"; + + meta = with stdenv.lib; { + description = "Optimized C library for EC operations on curve secp256k1"; + longDescription = '' + Optimized C library for EC operations on curve secp256k1. + Part of Bitcoin Core. This library is a work in progress + and is being used to research best practices. Use at your + own risk. + ''; + homepage = https://github.com/bitcoin-core/secp256k1; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ chris-martin ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dc47a12f10a..9f64e1167fc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3289,6 +3289,8 @@ in seccure = callPackage ../tools/security/seccure { }; + secp256k1 = callPackage ../tools/security/secp256k1 { }; + securefs = callPackage ../tools/filesystems/securefs { }; setroot = callPackage ../tools/X11/setroot { }; From 9f7871070e28c63acb549ab953a70cab0cc95433 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 4 Jun 2016 14:57:56 -0400 Subject: [PATCH 009/508] pythonPackages.secp256k1: init at 0.12.1 --- pkgs/top-level/python-packages.nix | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ac9c07ddc20..f533f4b53d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21328,6 +21328,40 @@ in modules // { }; }; + secp256k1 = buildPythonPackage rec { + name = "secp256k1-${version}"; + version = "0.12.1"; + + src = pkgs.fetchurl { + url = "mirror://pypi/s/secp256k1/${name}.tar.gz"; + sha256 = "0zrjxvzxqm4bz2jcy8sras8jircgbs6dkrw8j3nc6jhvzlikwwxl"; + }; + + buildInputs = [ pkgs.pkgconfig self.pytest_28 self.pytestrunner ]; + propagatedBuildInputs = [ self.cffi pkgs.secp256k1 ]; + + # Tests are not included in archive + doCheck = false; + + preConfigure = '' + cp -r ${pkgs.secp256k1.src} libsecp256k1 + touch libsecp256k1/autogen.sh + export INCLUDE_DIR=${pkgs.secp256k1}/include + export LIB_DIR=${pkgs.secp256k1}/lib + ''; + + checkPhase = '' + py.test tests + ''; + + meta = { + homepage = https://github.com/ludbb/secp256k1-py; + description = "Python FFI bindings for secp256k1"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ chris-martin ]; + }; + }; + semantic-version = buildPythonPackage rec { name = "semantic_version-2.4.2"; src = pkgs.fetchurl { From db2fc7a50387a7da297c0441d8ff3003a4fe0f86 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Tue, 28 Jun 2016 19:46:30 +0800 Subject: [PATCH 010/508] vips: 8.2.2 -> 8.3.1 --- pkgs/tools/graphics/vips/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/vips/default.nix b/pkgs/tools/graphics/vips/default.nix index 7b0cbc16e11..6ff2ee5cd44 100644 --- a/pkgs/tools/graphics/vips/default.nix +++ b/pkgs/tools/graphics/vips/default.nix @@ -4,11 +4,11 @@ }: stdenv.mkDerivation rec { - name = "vips-8.2.2"; + name = "vips-8.3.1"; src = fetchurl { url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz"; - sha256 = "12b319aicr129cpi5sixwd3q91y97vwwva6b044zy54px4s8ls0g"; + sha256 = "01hh1baar2r474kny24fcq6ddshcvq104207mqxnkis0as6pzjq9"; }; buildInputs = From 59ee0c747aa1f7bfcfc80f642f8567d953af36d3 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Tue, 28 Jun 2016 19:46:40 +0800 Subject: [PATCH 011/508] nip2: 8.0 -> 8.3.0 --- pkgs/tools/graphics/nip2/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/graphics/nip2/default.nix b/pkgs/tools/graphics/nip2/default.nix index e61488e202d..fb88a8c37d4 100644 --- a/pkgs/tools/graphics/nip2/default.nix +++ b/pkgs/tools/graphics/nip2/default.nix @@ -1,17 +1,17 @@ { stdenv, fetchurl, pkgconfig, glib, libxml2, flex, bison, vips, gnome, -fftw, gsl, goffice_0_8, libgsf }: +fftw, gsl, goffice, libgsf }: stdenv.mkDerivation rec { - name = "nip2-8.0"; + name = "nip2-8.3.0"; src = fetchurl { url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz"; - sha256 = "10ybac0qrz63x1yk1d0gpv9z1vzpadyii2qhrai6lllplzw6jqx7"; + sha256 = "0vr12gyfvhxx2a28y74lzfg379d1fk0g9isc69k0vdgpn4y1i8aa"; }; buildInputs = [ pkgconfig glib libxml2 flex bison vips - gnome.gtk fftw gsl goffice_0_8 libgsf + gnome.gtk fftw gsl goffice libgsf ]; meta = with stdenv.lib; { From 031b32104c84cac9fc168be5eeb8fd60a34e253d Mon Sep 17 00:00:00 2001 From: devhell <^@regexmail.net> Date: Fri, 1 Jul 2016 13:39:27 +0100 Subject: [PATCH 012/508] {lib}mediainfo{-gui}: 0.7.86 -> 0.7.87 From the changelog: ``` Version 0.7.87, 2016-06-30 + Spanish and catalan languages updated, thanks to Sergi Medina + Refactoring of the trace feature, for better performance and some bug fixes - Visual C++ 2012 project files removed x Review of symbols display, now using standard display (e.g. "k" instead of "K", " min" instead of "mn"...) x XML output: revert to old versioning method (version is MediaInfo software version) x I63, EBUCore/FIMS outputs: typo correction about WritingLibrary and WritingApplication x Matroska: files with CodecPrivate element before CodecID element where not always correctly parsed x OGG: crash/incoherent behavior with some buggy OGG streams having invalid chunk sizes ``` --- pkgs/applications/misc/mediainfo-gui/default.nix | 4 ++-- pkgs/applications/misc/mediainfo/default.nix | 4 ++-- pkgs/development/libraries/libmediainfo/default.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index 73dc8433b88..2fe806649c2 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -2,11 +2,11 @@ , desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.86"; + version = "0.7.87"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "15w6m75bk6rsxxdrdibi330ch1x0cw131gynbhmhbsppsg0v5vb5"; + sha256 = "1ws4hyfcw289hax0bq8y3bbw5y321xmh0va1x4zv5rjwfzcd51pv"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index c512f6a249e..77c1badbf40 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.86"; + version = "0.7.87"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "15w6m75bk6rsxxdrdibi330ch1x0cw131gynbhmhbsppsg0v5vb5"; + sha256 = "1ws4hyfcw289hax0bq8y3bbw5y321xmh0va1x4zv5rjwfzcd51pv"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index 26416dc1ee1..90869a4c8a5 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.86"; + version = "0.7.87"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "14m7cgd93mglc9a4x28pb4yc6nfxhqk7vfryca83vpn80la1lxy0"; + sha256 = "1gvjvc809mrhpcqr62cihhc6jnwml197xjbgydnzvsghih8dq8s9"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; From 23e9e33975bf560ec3fd6e5b2e01d7cd9ce1c14e Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Sat, 2 Jul 2016 02:20:02 -0400 Subject: [PATCH 013/508] dockerTools: format tarsum.go with gofmt Nearly all Go code on this earth is formatted with gofmt, and it's somewhat surprising to find a Go file that isn't formatted accordingly. --- pkgs/build-support/docker/tarsum.go | 32 ++++++++++++++--------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/pkgs/build-support/docker/tarsum.go b/pkgs/build-support/docker/tarsum.go index 4c25f11b71e..81a3341fff0 100644 --- a/pkgs/build-support/docker/tarsum.go +++ b/pkgs/build-support/docker/tarsum.go @@ -1,24 +1,24 @@ package main import ( - "tarsum" - "io" - "io/ioutil" - "fmt" - "os" + "fmt" + "io" + "io/ioutil" + "os" + "tarsum" ) func main() { - ts, err := tarsum.NewTarSum(os.Stdin, false, tarsum.Version1) - if err != nil { - fmt.Println(err) - os.Exit(1) - } + ts, err := tarsum.NewTarSum(os.Stdin, false, tarsum.Version1) + if err != nil { + fmt.Println(err) + os.Exit(1) + } - if _, err = io.Copy(ioutil.Discard, ts); err != nil { - fmt.Println(err) - os.Exit(1) - } + if _, err = io.Copy(ioutil.Discard, ts); err != nil { + fmt.Println(err) + os.Exit(1) + } - fmt.Println(ts.Sum(nil)) -} \ No newline at end of file + fmt.Println(ts.Sum(nil)) +} From b9284e445b3d27532c3493eb0fc09822b949e817 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Sat, 2 Jul 2016 02:21:20 -0400 Subject: [PATCH 014/508] dockerTools: disable compression in tarsum.go Previously, tarsum would compress the (discarded) tarball produced. That's a waste of CPU, and a waste of time. --- pkgs/build-support/docker/tarsum.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/docker/tarsum.go b/pkgs/build-support/docker/tarsum.go index 81a3341fff0..ad33bbac75b 100644 --- a/pkgs/build-support/docker/tarsum.go +++ b/pkgs/build-support/docker/tarsum.go @@ -9,7 +9,7 @@ import ( ) func main() { - ts, err := tarsum.NewTarSum(os.Stdin, false, tarsum.Version1) + ts, err := tarsum.NewTarSum(os.Stdin, true, tarsum.Version1) if err != nil { fmt.Println(err) os.Exit(1) From 853018124668d83bc17815da52d0e68b1a163eb7 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 1 Jul 2016 03:51:01 +0300 Subject: [PATCH 015/508] kbd: add system-wise search paths for NixOS --- pkgs/os-specific/linux/kbd/default.nix | 17 ++-- pkgs/os-specific/linux/kbd/search-paths.patch | 77 +++++++++++++++++++ 2 files changed, 87 insertions(+), 7 deletions(-) create mode 100644 pkgs/os-specific/linux/kbd/search-paths.patch diff --git a/pkgs/os-specific/linux/kbd/default.nix b/pkgs/os-specific/linux/kbd/default.nix index fddaa84a824..39da6d2a557 100644 --- a/pkgs/os-specific/linux/kbd/default.nix +++ b/pkgs/os-specific/linux/kbd/default.nix @@ -1,7 +1,8 @@ -{ stdenv, fetchurl, autoreconfHook, gzip, bzip2, pkgconfig, check, pam }: +{ stdenv, fetchurl, autoreconfHook, gzip, bzip2, pkgconfig, flex, check, pam }: stdenv.mkDerivation rec { - name = "kbd-2.0.3"; + name = "kbd-${version}"; + version = "2.0.3"; src = fetchurl { url = "mirror://kernel/linux/utils/kbd/${name}.tar.xz"; @@ -26,7 +27,7 @@ stdenv.mkDerivation rec { "--disable-nls" ]; - patches = [ ./console-fix.patch ]; + patches = [ ./console-fix.patch ./search-paths.patch ]; postPatch = '' @@ -49,13 +50,15 @@ stdenv.mkDerivation rec { ''} ''; - buildInputs = [ autoreconfHook pkgconfig check pam ]; + buildInputs = [ check pam ]; + nativeBuildInputs = [ autoreconfHook pkgconfig flex ]; - makeFlags = "setowner= "; + makeFlags = [ "setowner=" ]; - meta = { + meta = with stdenv.lib; { homepage = ftp://ftp.altlinux.org/pub/people/legion/kbd/; description = "Linux keyboard utilities and keyboard maps"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + licenses = licenses.gpl2Plus; }; } diff --git a/pkgs/os-specific/linux/kbd/search-paths.patch b/pkgs/os-specific/linux/kbd/search-paths.patch new file mode 100644 index 00000000000..66a56041481 --- /dev/null +++ b/pkgs/os-specific/linux/kbd/search-paths.patch @@ -0,0 +1,77 @@ +diff -ru3 kbd-2.0.3-old/src/libkeymap/analyze.l kbd-2.0.3/src/libkeymap/analyze.l +--- kbd-2.0.3-old/src/libkeymap/analyze.l 2016-07-03 02:31:28.258958092 +0300 ++++ kbd-2.0.3/src/libkeymap/analyze.l 2016-07-03 02:44:53.042592223 +0300 +@@ -99,6 +99,9 @@ + static const char *const include_dirpath0[] = { "", 0 }; + static const char *const include_dirpath1[] = { "", "../include/", "../../include/", 0 }; + static const char *const include_dirpath3[] = { ++ "/etc/kbd/" KEYMAPDIR "/include/", ++ "/etc/kbd/" KEYMAPDIR "/i386/include/", ++ "/etc/kbd/" KEYMAPDIR "/mac/include/", + DATADIR "/" KEYMAPDIR "/include/", + DATADIR "/" KEYMAPDIR "/i386/include/", + DATADIR "/" KEYMAPDIR "/mac/include/", 0 +diff -ru3 kbd-2.0.3-old/src/loadkeys.c kbd-2.0.3/src/loadkeys.c +--- kbd-2.0.3-old/src/loadkeys.c 2016-07-03 02:31:28.260958091 +0300 ++++ kbd-2.0.3/src/loadkeys.c 2016-07-03 02:34:34.123871103 +0300 +@@ -26,7 +26,7 @@ + #include "keymap.h" + + static const char *progname = NULL; +-static const char *const dirpath1[] = { "", DATADIR "/" KEYMAPDIR "/**", KERNDIR "/", 0 }; ++static const char *const dirpath1[] = { "", "/etc/kbd/" KEYMAPDIR "/**", DATADIR "/" KEYMAPDIR "/**", 0 }; + static const char *const suffixes[] = { "", ".kmap", ".map", 0 }; + + static void __attribute__ ((noreturn)) +diff -ru3 kbd-2.0.3-old/src/loadunimap.c kbd-2.0.3/src/loadunimap.c +--- kbd-2.0.3-old/src/loadunimap.c 2016-07-03 02:31:28.259958091 +0300 ++++ kbd-2.0.3/src/loadunimap.c 2016-07-03 02:33:06.803911971 +0300 +@@ -28,7 +28,7 @@ + extern char *progname; + extern int force; + +-static const char *const unidirpath[] = { "", DATADIR "/" UNIMAPDIR "/", 0 }; ++static const char *const unidirpath[] = { "", "/etc/kbd/" UNIMAPDIR "/", DATADIR "/" UNIMAPDIR "/", 0 }; + static const char *const unisuffixes[] = { "", ".uni", ".sfm", 0 }; + + #ifdef MAIN +diff -ru3 kbd-2.0.3-old/src/mapscrn.c kbd-2.0.3/src/mapscrn.c +--- kbd-2.0.3-old/src/mapscrn.c 2016-07-03 02:31:28.260958091 +0300 ++++ kbd-2.0.3/src/mapscrn.c 2016-07-03 02:33:21.119905270 +0300 +@@ -25,7 +25,7 @@ + static int ctoi (char *); + + /* search for the map file in these directories (with trailing /) */ +-static const char *const mapdirpath[] = { "", DATADIR "/" TRANSDIR "/", 0 }; ++static const char *const mapdirpath[] = { "", "/etc/kbd/" TRANSDIR "/", DATADIR "/" TRANSDIR "/", 0 }; + static const char *const mapsuffixes[] = { "", ".trans", "_to_uni.trans", ".acm", 0 }; + + #ifdef MAIN +diff -ru3 kbd-2.0.3-old/src/resizecons.c kbd-2.0.3/src/resizecons.c +--- kbd-2.0.3-old/src/resizecons.c 2016-07-03 02:31:28.260958091 +0300 ++++ kbd-2.0.3/src/resizecons.c 2016-07-03 02:33:32.253900060 +0300 +@@ -100,7 +100,7 @@ + static void vga_set_cursor(int, int); + static void vga_set_verticaldisplayend_lowbyte(int); + +-const char *const dirpath[] = { "", DATADIR "/" VIDEOMODEDIR "/", 0}; ++const char *const dirpath[] = { "", "/etc/kbd/" VIDEOMODEDIR "/", DATADIR "/" VIDEOMODEDIR "/", 0}; + const char *const suffixes[] = { "", 0 }; + + int +diff -ru3 kbd-2.0.3-old/src/setfont.c kbd-2.0.3/src/setfont.c +--- kbd-2.0.3-old/src/setfont.c 2016-07-03 02:31:28.260958091 +0300 ++++ kbd-2.0.3/src/setfont.c 2016-07-03 02:33:54.315889734 +0300 +@@ -51,10 +51,10 @@ + int debug = 0; + + /* search for the font in these directories (with trailing /) */ +-const char *const fontdirpath[] = { "", DATADIR "/" FONTDIR "/", 0 }; ++const char *const fontdirpath[] = { "", "/etc/kbd/" FONTDIR "/", DATADIR "/" FONTDIR "/", 0 }; + const char *const fontsuffixes[] = { "", ".psfu", ".psf", ".cp", ".fnt", 0 }; + /* hide partial fonts a bit - loading a single one is a bad idea */ +-const char *const partfontdirpath[] = { "", DATADIR "/" FONTDIR "/" PARTIALDIR "/", 0 }; ++const char *const partfontdirpath[] = { "", "/etc/kbd/" FONTDIR "/" PARTIALDIR "/", DATADIR "/" FONTDIR "/" PARTIALDIR "/", 0 }; + const char *const partfontsuffixes[] = { "", 0 }; + + static inline int From 489bbf0609f3a7fda0bf0ba89b7d7a1dc902e2eb Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 3 Jul 2016 03:28:29 +0300 Subject: [PATCH 016/508] kbd service: drop a comment now when we do restart vconsole setup --- nixos/modules/tasks/kbd.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/tasks/kbd.nix b/nixos/modules/tasks/kbd.nix index 02721bb3bea..c1087ce4783 100644 --- a/nixos/modules/tasks/kbd.nix +++ b/nixos/modules/tasks/kbd.nix @@ -52,8 +52,7 @@ in environment.systemPackages = [ pkgs.kbd ]; # Let systemd-vconsole-setup.service do the work of setting up the - # virtual consoles. FIXME: trigger a restart of - # systemd-vconsole-setup.service if /etc/vconsole.conf changes. + # virtual consoles. environment.etc = [ { target = "vconsole.conf"; source = vconsoleConf; From 796ced26aa79dabb4a456796e4ae5c75222455d3 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Tue, 5 Jul 2016 19:24:21 +0800 Subject: [PATCH 017/508] proxychains: 4.0.1-head -> 4.2.0 --- pkgs/tools/networking/proxychains/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/networking/proxychains/default.nix b/pkgs/tools/networking/proxychains/default.nix index 2b85cef70c5..ed19f9d1674 100644 --- a/pkgs/tools/networking/proxychains/default.nix +++ b/pkgs/tools/networking/proxychains/default.nix @@ -1,10 +1,13 @@ -{ stdenv, fetchgit } : -stdenv.mkDerivation { - name = "proxychains-4.0.1-head"; - src = fetchgit { - url = https://github.com/haad/proxychains.git; - rev = "c9b8ce35b24f9d4e80563242b759dff54867163f"; - sha256 = "163h3d3lpglbzjadf8a9kfaf0i1ds25r7si6ll6d5khn1835zik5"; +{ stdenv, fetchFromGitHub } : +stdenv.mkDerivation rec { + name = "proxychains-${version}"; + version = "4.2.0"; + + src = fetchFromGitHub { + owner = "haad"; + repo = "proxychains"; + rev = name; + sha256 = "015skh3z1jmm8kxbm3nkqv1w56kcvabdmcbmpwzywxr4xnh3x3pc"; }; meta = { From dedfc00204ba1a35ae620ceb25709d4618bca17a Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 16 Jun 2016 19:14:36 +0000 Subject: [PATCH 018/508] appstream-glib: 0.3.6 -> 0.5.11 - needed for gnome-software to build --- .../libraries/appstream-glib/default.nix | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pkgs/development/libraries/appstream-glib/default.nix b/pkgs/development/libraries/appstream-glib/default.nix index 14fbcdf7342..e6051552ab7 100644 --- a/pkgs/development/libraries/appstream-glib/default.nix +++ b/pkgs/development/libraries/appstream-glib/default.nix @@ -1,19 +1,23 @@ -{ stdenv, fetchurl, pkgconfig, gettext, gtk3, intltool, glib +{ stdenv, fetchFromGitHub, pkgconfig, gettext, gtk3, intltool, glib , gtk_doc, autoconf, automake, libtool, libarchive, libyaml , gobjectIntrospection, sqlite, libsoup, gcab, attr, acl, docbook_xsl +, libuuid, json_glib }: stdenv.mkDerivation rec { - name = "appstream-glib-0.3.6"; + name = "appstream-glib-0.5.11"; - src = fetchurl { - url = "https://github.com/hughsie/appstream-glib/archive/appstream_glib_0_3_6.tar.gz"; - sha256 = "1zdxg9dk9vxw2cs04cswd138di3dysz0hxk4918750hh19s3859c"; + src = fetchFromGitHub { + owner = "hughsie"; + repo = "appstream-glib"; + rev = stdenv.lib.replaceStrings ["." "-"] ["_" "_"] name; + sha256 = "1rvfncm9z29h70pd718j73cd263g6yyxkxrg7zfzy0gj6wwzvhkh"; }; - buildInputs = [ glib libtool pkgconfig gtk_doc gettext intltool sqlite libsoup - gcab attr acl docbook_xsl - libarchive libyaml gtk3 autoconf automake gobjectIntrospection ]; + nativeBuildInputs = [ autoconf automake libtool pkgconfig intltool ]; + buildInputs = [ glib gtk_doc gettext sqlite libsoup + gcab attr acl docbook_xsl libuuid json_glib + libarchive libyaml gtk3 gobjectIntrospection ]; configureScript = "./autogen.sh"; @@ -22,7 +26,6 @@ stdenv.mkDerivation rec { homepage = https://github.com/hughsie/appstream-glib; license = licenses.lgpl21Plus; platforms = platforms.linux; - maintainers = with maintainers; [ lethalman ]; + maintainers = with maintainers; [ lethalman matthewbauer ]; }; - } From 4e50880c828a771ab9ea72739bb70017b724358c Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 16 Jun 2016 19:18:09 +0000 Subject: [PATCH 019/508] packagekit: add latest from hughsie's github repo - currently pulled in from Git until the next release of PackageKit has Nix support - also: add in a service module to start packagekit properly - nixos service can be enabled via services.packagekit.enable - packagekit requires nixunstable to build properly --- nixos/modules/module-list.nix | 1 + nixos/modules/services/misc/packagekit.nix | 61 ++++++++++++++ .../package-management/packagekit/default.nix | 81 +++++++++---------- pkgs/top-level/all-packages.nix | 4 +- 4 files changed, 104 insertions(+), 43 deletions(-) create mode 100644 nixos/modules/services/misc/packagekit.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 67178e765c8..a59997da9d8 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -249,6 +249,7 @@ ./services/misc/nix-ssh-serve.nix ./services/misc/nzbget.nix ./services/misc/octoprint.nix + ./services/misc/packagekit.nix ./services/misc/parsoid.nix ./services/misc/phd.nix ./services/misc/plex.nix diff --git a/nixos/modules/services/misc/packagekit.nix b/nixos/modules/services/misc/packagekit.nix new file mode 100644 index 00000000000..2d1ff7bb411 --- /dev/null +++ b/nixos/modules/services/misc/packagekit.nix @@ -0,0 +1,61 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.packagekit; + + backend = "nix"; + + packagekitConf = '' +[Daemon] +DefaultBackend=${backend} +KeepCache=false + ''; + + vendorConf = '' +[PackagesNotFound] +DefaultUrl=https://github.com/NixOS/nixpkgs +CodecUrl=https://github.com/NixOS/nixpkgs +HardwareUrl=https://github.com/NixOS/nixpkgs +FontUrl=https://github.com/NixOS/nixpkgs +MimeUrl=https://github.com/NixOS/nixpkgs + ''; + +in + +{ + + options = { + + services.packagekit = { + enable = mkEnableOption + '' + PackageKit provides a cross-platform D-Bus abstraction layer for + installing software. Software utilizing PackageKit can install + software regardless of the package manager. + ''; + }; + + }; + + config = mkIf cfg.enable { + + services.dbus.packages = [ pkgs.packagekit ]; + + systemd.services.packagekit = { + description = "PackageKit Daemon"; + wantedBy = [ "multi-user.target" ]; + serviceConfig.ExecStart = "${pkgs.packagekit}/libexec/packagekitd"; + serviceConfig.User = "root"; + serviceConfig.BusName = "org.freedesktop.PackageKit"; + serviceConfig.Type = "dbus"; + }; + + environment.etc."PackageKit/PackageKit.conf".text = packagekitConf; + environment.etc."PackageKit/Vendor.conf".text = vendorConf; + + }; + +} diff --git a/pkgs/tools/package-management/packagekit/default.nix b/pkgs/tools/package-management/packagekit/default.nix index bdd02e58cbb..a56d3f6aebc 100644 --- a/pkgs/tools/package-management/packagekit/default.nix +++ b/pkgs/tools/package-management/packagekit/default.nix @@ -1,57 +1,54 @@ -{ stdenv, fetchurl, intltool, glib, pkgconfig, polkit, python, sqlite }: +{ stdenv, fetchFromGitHub, intltool, glib, pkgconfig, polkit, python, sqlite, systemd +, gobjectIntrospection, vala, gtk_doc, autoreconfHook, autoconf-archive +, nix, boost +, enableCommandNotFound ? false +, enableBashCompletion ? false, bashCompletion ? null }: + +with stdenv.lib; stdenv.mkDerivation rec { - name = "packagekit-${version}"; - version = "1.1.1"; + name = "packagekit-2016-06-03"; - src = fetchurl { - sha256 = "1i6an483vmm6y39szr2alq5vf6kfxhk3j5ca79qrshcj9jjlhcs8"; - url = "http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${version}.tar.xz"; + src = fetchFromGitHub { + owner = "hughsie"; + repo = "PackageKit"; + rev = "99fd83bbb26badf43c6a17a9f0c6dc054c7484c8"; + sha256 = "0y42vl6r1wh57sbjfkn4khjs78q54wshf4p0v4nly9s7hydxpi6a"; }; - buildInputs = [ glib polkit python ]; - propagatedBuildInputs = [ sqlite ]; - nativeBuildInputs = [ intltool pkgconfig ]; + buildInputs = [ glib polkit systemd python gobjectIntrospection vala ] + ++ optional enableBashCompletion bashCompletion; + propagatedBuildInputs = [ sqlite nix boost ]; + nativeBuildInputs = [ intltool pkgconfig autoreconfHook autoconf-archive gtk_doc ]; + + preAutoreconf = '' + gtkdocize + intltoolize + ''; configureFlags = [ - "--disable-static" - "--disable-python3" - "--disable-networkmanager" - "--disable-connman" - "--disable-systemd" - "--disable-bash-completion" - "--disable-gstreamer-plugin" - "--disable-gtk-module" - "--disable-command-not-found" + "--enable-systemd" + "--enable-nix" + "--disable-dummy" "--disable-cron" - "--disable-daemon-tests" - "--disable-alpm" - "--disable-aptcc" - "--enable-dummy" - "--disable-entropy" - "--disable-hif" - "--disable-pisi" - "--disable-poldek" - "--disable-portage" - "--disable-ports" - "--disable-katja" - "--disable-urpmi" - "--disable-yum" - "--disable-zypp" - ]; + "--disable-introspection" + "--disable-offline-update" + "--localstatedir=/var" + "--sysconfdir=/etc" + "--with-dbus-sys=$(out)/etc/dbus-1/system.d" + "--with-systemdsystemunitdir=$(out)/lib/systemd/system/" + ] + ++ optional (!enableBashCompletion) "--disable-bash-completion" + ++ optional (!enableCommandNotFound) "--disable-command-not-found"; enableParallelBuilding = true; - preInstall = '' - # Don't install anything to e.g. $out/var/cache: - for dir in src data; do - substituteInPlace $dir/Makefile \ - --replace " install-data-hook" "" \ - --replace " install-databaseDATA" "" - done - ''; + installFlags = [ + "sysconfdir=\${out}/etc" + "localstatedir=\${TMPDIR}" + ]; - meta = with stdenv.lib; { + meta = { description = "System to facilitate installing and updating packages"; longDescription = '' PackageKit is a system designed to make installing and updating software diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b056fa69990..37d0b23f45a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2877,7 +2877,9 @@ in p7zip = callPackage ../tools/archivers/p7zip { }; - packagekit = callPackage ../tools/package-management/packagekit { }; + packagekit = callPackage ../tools/package-management/packagekit { + nix = nixUnstable; + }; pal = callPackage ../tools/misc/pal { }; From 4d4746e43610f3a37223a66b9a48087962883266 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 16 Jun 2016 19:19:12 +0000 Subject: [PATCH 020/508] gnome3.18: use packagekit bindings for gnome-software - init gnome-software for gnome3 at 3.18.3 - list gnome-software as an "optional package" for gnome3 - enable packagekit service when gnome3 is enabled --- .../services/x11/desktop-managers/gnome3.nix | 1 + pkgs/desktops/gnome-3/3.18/default.nix | 4 ++- .../3.18/misc/gnome-software/default.nix | 31 +++++++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index 27ec65c3d8e..051c99dcb9f 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -121,6 +121,7 @@ in { services.upower.enable = config.powerManagement.enable; services.dbus.packages = mkIf config.services.printing.enable [ pkgs.system-config-printer ]; services.colord.enable = mkDefault true; + services.packagekit.enable = mkDefault true; hardware.bluetooth.enable = mkDefault true; fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell_fonts ]; diff --git a/pkgs/desktops/gnome-3/3.18/default.nix b/pkgs/desktops/gnome-3/3.18/default.nix index d0a113ff0a4..2990ad82a84 100644 --- a/pkgs/desktops/gnome-3/3.18/default.nix +++ b/pkgs/desktops/gnome-3/3.18/default.nix @@ -35,7 +35,7 @@ let gnome-clocks gnome-music gnome-tweak-tool gnome-photos nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs gnome-maps gnome-characters gnome-calendar accerciser gnome-nettool - gnome-getting-started-docs + gnome-getting-started-docs gnome-software ]; gamesPackages = with gnome3; [ swell-foop lightsoff iagno @@ -390,6 +390,8 @@ let gnome-video-effects = callPackage ./misc/gnome-video-effects { }; + gnome-software = callPackage ./misc/gnome-software { }; + }; in self; # pkgsFun diff --git a/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix new file mode 100644 index 00000000000..424f6a4f541 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnome3, wrapGAppsHook, packagekit +, appstream-glib, libsoup, polkit, attr, acl, libyaml, isocodes }: + +stdenv.mkDerivation rec { + name = "gnome-software-${version}"; + version = "3.18.3"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-software/3.18/${name}.tar.xz"; + sha256 = "0ywvjmn0cwr4kv2l6ic80ac7js7hpsp3g127cj7h256iaqgsaxnc"; + }; + + nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ]; + buildInputs = [ gnome3.gtk packagekit appstream-glib libsoup + gnome3.gsettings_desktop_schemas gnome3.gnome_desktop + polkit attr acl libyaml ]; + propogatedBuildInputs = [ isocodes ]; + + postInstall = '' + mkdir -p $out/share/xml/ + ln -s ${isocodes}/share/xml/iso-codes $out/share/xml/iso-codes + ''; + + meta = with stdenv.lib; { + homepage = https://www.freedesktop.org/software/PackageKit/; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + description = "GNOME Software lets you install and update applications and system extensions."; + }; +} From 2b1a00cf017ec0daf95644f167cea3a5723d319d Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 16 Jun 2016 19:19:21 +0000 Subject: [PATCH 021/508] gnome-packagekit: init at 3.18.0 - provides useful tools for searching package - included in gnome3 as an optional package --- pkgs/desktops/gnome-3/3.18/default.nix | 14 +++++----- .../3.18/misc/gnome-packagekit/default.nix | 26 +++++++++++++++++++ 2 files changed, 34 insertions(+), 6 deletions(-) create mode 100644 pkgs/desktops/gnome-3/3.18/misc/gnome-packagekit/default.nix diff --git a/pkgs/desktops/gnome-3/3.18/default.nix b/pkgs/desktops/gnome-3/3.18/default.nix index 2990ad82a84..78a892ebe3f 100644 --- a/pkgs/desktops/gnome-3/3.18/default.nix +++ b/pkgs/desktops/gnome-3/3.18/default.nix @@ -3,7 +3,7 @@ let pkgsFun = overrides: - let + let self = self_ // overrides; self_ = with self; { @@ -35,7 +35,7 @@ let gnome-clocks gnome-music gnome-tweak-tool gnome-photos nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs gnome-maps gnome-characters gnome-calendar accerciser gnome-nettool - gnome-getting-started-docs gnome-software + gnome-getting-started-docs gnome-software gnome-packagekit ]; gamesPackages = with gnome3; [ swell-foop lightsoff iagno @@ -79,7 +79,7 @@ let dconf = callPackage ./core/dconf { }; dconf-editor = callPackage ./core/dconf-editor { }; - empathy = callPackage ./core/empathy { + empathy = callPackage ./core/empathy { webkitgtk = webkitgtk24x; clutter-gst = pkgs.clutter-gst; }; @@ -360,13 +360,13 @@ let california = callPackage ./misc/california { }; - geary = callPackage ./misc/geary { + geary = callPackage ./misc/geary { webkitgtk = webkitgtk24x; }; gfbgraph = callPackage ./misc/gfbgraph { }; - gitg = callPackage ./misc/gitg { + gitg = callPackage ./misc/gitg { webkitgtk = webkitgtk24x; }; @@ -383,7 +383,7 @@ let gpaste = callPackage ./misc/gpaste { }; pidgin-im-gnome-shell-extension = callPackage ./misc/pidgin { }; - + gtkhtml = callPackage ./misc/gtkhtml { }; pomodoro = callPackage ./misc/pomodoro { }; @@ -392,6 +392,8 @@ let gnome-software = callPackage ./misc/gnome-software { }; + gnome-packagekit = callPackage ./misc/gnome-packagekit { }; + }; in self; # pkgsFun diff --git a/pkgs/desktops/gnome-3/3.18/misc/gnome-packagekit/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gnome-packagekit/default.nix new file mode 100644 index 00000000000..99cf939fb50 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.18/misc/gnome-packagekit/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnome3, libxslt, packagekit +, fontconfig, libcanberra_gtk3, libnotify, wrapGAppsHook, dbus_glib, dbus_libs }: + +stdenv.mkDerivation rec { + name = "gnome-packagekit-${version}"; + version = "3.18.0"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-packagekit/3.18/${name}.tar.xz"; + sha256 = "0a7ww807b77yjf6l8s2ycpxx813lyncwaxq227jckphazpq65a50"; + }; + + NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0"; + + nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ]; + buildInputs = [ libxslt gnome3.gtk packagekit fontconfig + libcanberra_gtk3 libnotify dbus_glib dbus_libs ]; + + meta = with stdenv.lib; { + homepage = https://www.freedesktop.org/software/PackageKit/; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + description = "Tools for installing software on the GNOME desktop using PackageKit"; + }; +} From 10fb8469899cc2b075affa3afd0ae8e797ba9c15 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 16 Jun 2016 19:19:40 +0000 Subject: [PATCH 022/508] packagekit: add myself as maintainer --- pkgs/tools/package-management/packagekit/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/package-management/packagekit/default.nix b/pkgs/tools/package-management/packagekit/default.nix index a56d3f6aebc..dbac7be10d7 100644 --- a/pkgs/tools/package-management/packagekit/default.nix +++ b/pkgs/tools/package-management/packagekit/default.nix @@ -63,6 +63,6 @@ stdenv.mkDerivation rec { homepage = http://www.packagekit.org/; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; + maintainers = with maintainers; [ nckx matthewbauer ]; }; } From e7cd45b6e6c034693bc4aac173a01dbc7c7db64c Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 16 Jun 2016 19:19:49 +0000 Subject: [PATCH 023/508] gnome3.20: add gnome-packagekit, gnome-software Previously the two were just in gnome-3.18. This adds them as optionalPackages in gnome3.20. --- .../3.20/core/gnome-software/default.nix | 27 +++++++++++++++++++ .../gnome-3/3.20/core/gnome-software/src.nix | 10 +++++++ pkgs/desktops/gnome-3/3.20/default.nix | 12 ++++++--- .../3.20/misc/gnome-packagekit/default.nix | 20 ++++++++++++++ .../3.20/misc/gnome-packagekit/src.nix | 10 +++++++ 5 files changed, 75 insertions(+), 4 deletions(-) create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-software/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/src.nix diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix new file mode 100644 index 00000000000..e05a28fcd8d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnome3, wrapGAppsHook, packagekit +, appstream-glib, libsoup, polkit, attr, acl, libyaml, isocodes, gtkspell3 +, json_glib }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ]; + buildInputs = [ gnome3.gtk packagekit appstream-glib libsoup + gnome3.gsettings_desktop_schemas gnome3.gnome_desktop + gtkspell3 json_glib + polkit attr acl libyaml ]; + propogatedBuildInputs = [ isocodes ]; + + postInstall = '' + mkdir -p $out/share/xml/ + ln -s ${isocodes}/share/xml/iso-codes $out/share/xml/iso-codes + ''; + + meta = with stdenv.lib; { + homepage = https://www.freedesktop.org/software/PackageKit/; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + description = "GNOME Software lets you install and update applications and system extensions."; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-software/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-software/src.nix new file mode 100644 index 00000000000..4d377903cc1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-software/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-software-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-software/3.20/gnome-software-3.20.0.tar.xz; + sha256 = "0w0bp29fm13a235gq8vylihzjfxx20ri46w4w2syaw0cixxihbix"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/default.nix b/pkgs/desktops/gnome-3/3.20/default.nix index 4e00db3962e..317b9fc13ce 100644 --- a/pkgs/desktops/gnome-3/3.20/default.nix +++ b/pkgs/desktops/gnome-3/3.20/default.nix @@ -3,7 +3,7 @@ let pkgsFun = overrides: - let + let self = self_ // overrides; self_ = with self; { @@ -35,7 +35,7 @@ let gnome-clocks gnome-music gnome-tweak-tool gnome-photos nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs gnome-maps gnome-characters gnome-calendar accerciser gnome-nettool - gnome-getting-started-docs + gnome-getting-started-docs gnome-packagekit gnome-software ]; gamesPackages = with gnome3; [ swell-foop lightsoff iagno @@ -149,6 +149,8 @@ let gnome_settings_daemon = callPackage ./core/gnome-settings-daemon { }; + gnome-software = callPackage ./core/gnome-software { }; + gnome-system-log = callPackage ./core/gnome-system-log { }; gnome-system-monitor = callPackage ./core/gnome-system-monitor { }; @@ -359,13 +361,13 @@ let california = callPackage ./misc/california { }; - geary = callPackage ./misc/geary { + geary = callPackage ./misc/geary { webkitgtk = webkitgtk24x; }; gfbgraph = callPackage ./misc/gfbgraph { }; - gitg = callPackage ./misc/gitg { + gitg = callPackage ./misc/gitg { webkitgtk = webkitgtk24x; }; @@ -391,6 +393,8 @@ let gnome-video-effects = callPackage ./misc/gnome-video-effects { }; + gnome-packagekit = callPackage ./misc/gnome-packagekit { }; + }; in self; # pkgsFun diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/default.nix new file mode 100644 index 00000000000..ee3dd60e59a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnome3, libxslt, packagekit +, fontconfig, libcanberra_gtk3, libnotify, wrapGAppsHook, dbus_glib, dbus_libs }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0"; + + nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ]; + buildInputs = [ libxslt gnome3.gtk packagekit fontconfig + libcanberra_gtk3 libnotify dbus_glib dbus_libs ]; + + meta = with stdenv.lib; { + homepage = https://www.freedesktop.org/software/PackageKit/; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + description = "Tools for installing software on the GNOME desktop using PackageKit"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/src.nix new file mode 100644 index 00000000000..71de360f24f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-packagekit/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-packagekit-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-packagekit/3.20/gnome-packagekit-3.20.0.tar.xz; + sha256 = "0wf5r0qrdlalbr73fpfaapq61vlya3nwygsv4wm2bxaf56v5sjmq"; + }; +} From eba3f92ef912b5b50ad40e20474fafa04c6e5ca7 Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Tue, 5 Jul 2016 19:17:14 -0700 Subject: [PATCH 024/508] pulseaudio: set DISPLAY --- nixos/modules/config/pulseaudio.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix index a964e04531c..6984e85603f 100644 --- a/nixos/modules/config/pulseaudio.nix +++ b/nixos/modules/config/pulseaudio.nix @@ -161,6 +161,7 @@ in { ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no"; Restart = "on-failure"; }; + environment = { DISPLAY = ":${toString config.services.xserver.display}"; }; }; sockets.pulseaudio = { From 874df3fe7006c64d494ca7c3860d6a2ce3ecf73c Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Tue, 5 Jul 2016 19:17:40 -0700 Subject: [PATCH 025/508] cgminer: respect xserver.display variable --- nixos/modules/services/misc/cgminer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/cgminer.nix b/nixos/modules/services/misc/cgminer.nix index 868dc87f723..5f97cc03414 100644 --- a/nixos/modules/services/misc/cgminer.nix +++ b/nixos/modules/services/misc/cgminer.nix @@ -126,7 +126,7 @@ in environment = { LD_LIBRARY_PATH = ''/run/opengl-driver/lib:/run/opengl-driver-32/lib''; - DISPLAY = ":0"; + DISPLAY = ":${toString config.services.xserver.display}"; GPU_MAX_ALLOC_PERCENT = "100"; GPU_USE_SYNC_OBJECTS = "1"; }; From 54fa0cfe4eef7e54e23380704af70ee7b65473ce Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Tue, 5 Jul 2016 19:18:00 -0700 Subject: [PATCH 026/508] redshift: respect xserver.display variable --- nixos/modules/services/x11/redshift.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix index 8f1e317e52b..63ffa29c199 100644 --- a/nixos/modules/services/x11/redshift.nix +++ b/nixos/modules/services/x11/redshift.nix @@ -108,7 +108,7 @@ in { RestartSec = 3; Restart = "always"; }; - environment = { DISPLAY = ":0"; }; + environment = { DISPLAY = ":${toString config.services.xserver.display}"; }; }; }; From 49879fa96b91d64e3c1a77ffe9665c65df24e332 Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Tue, 5 Jul 2016 19:18:21 -0700 Subject: [PATCH 027/508] unclutter: respect xserver.display variable --- nixos/modules/services/x11/unclutter.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nixos/modules/services/x11/unclutter.nix b/nixos/modules/services/x11/unclutter.nix index 3260fdb3d54..ebc195d108d 100644 --- a/nixos/modules/services/x11/unclutter.nix +++ b/nixos/modules/services/x11/unclutter.nix @@ -39,12 +39,6 @@ in { default = 1; }; - displayName = mkOption { - description = "Name of the X11 display"; - type = types.str; - default = ":0"; - }; - excluded = mkOption { description = "Names of windows where unclutter should not apply"; type = types.listOf types.str; @@ -67,7 +61,7 @@ in { serviceConfig.ExecStart = '' ${cfg.package}/bin/unclutter \ -idle ${toString cfg.timeout} \ - -display ${cfg.displayName} \ + -display :${toString config.services.xserver.display} \ -jitter ${toString (cfg.threeshold - 1)} \ ${optionalString cfg.keystroke "-keystroke"} \ ${concatMapStrings (x: " -"+x) cfg.extraOptions} \ From 2b7458144fadf07f7e31f89a227e22a4a8c9a6d9 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Thu, 7 Jul 2016 12:09:18 +0200 Subject: [PATCH 028/508] universal-ctags: init at 2016-07-06 --- .../tools/misc/universal-ctags/default.nix | 33 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/development/tools/misc/universal-ctags/default.nix diff --git a/pkgs/development/tools/misc/universal-ctags/default.nix b/pkgs/development/tools/misc/universal-ctags/default.nix new file mode 100644 index 00000000000..9adaa368997 --- /dev/null +++ b/pkgs/development/tools/misc/universal-ctags/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl }: + +stdenv.mkDerivation rec { + name = "universal-ctags-${version}"; + version = "2016-07-06"; + + src = fetchFromGitHub { + owner = "universal-ctags"; + repo = "ctags"; + rev = "44a325a9db23063b231f6f041af9aaf19320d9b9"; + sha256 = "11vq901h121ckqgw52k9x7way3q38b7jd08vr1n2sjz7kxh0zdd0"; + }; + + buildInputs = [ autoreconfHook pkgconfig ]; + + autoreconfPhase = '' + ./autogen.sh --tmpdir + ''; + + postConfigure = '' + sed -i 's|/usr/bin/env perl|${perl}/bin/perl|' misc/optlib2c + ''; + + meta = with stdenv.lib; { + description = "A maintained ctags implementation"; + homepage = "https://ctags.io/"; + license = licenses.gpl2Plus; + platforms = platforms.unix; + # universal-ctags is preferred over emacs's ctags + priority = 1; + maintainers = [ maintainers.mimadrid ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 716eca125f1..cf1174f1163 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6641,6 +6641,8 @@ in uncrustify = callPackage ../development/tools/misc/uncrustify { }; + universal-ctags = callPackage ../development/tools/misc/universal-ctags { }; + vagrant = callPackage ../development/tools/vagrant { ruby = ruby_2_2; }; From 6c11d9dd55b7dab91fe54ab17f739df74f9b4b2c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 3 Jul 2016 03:29:21 +0300 Subject: [PATCH 029/508] kbd service: add system-wise console resources --- nixos/modules/config/i18n.nix | 9 +++++++++ nixos/modules/tasks/kbd.nix | 15 ++++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix index b20fac6ad3e..2dc0df85e5f 100644 --- a/nixos/modules/config/i18n.nix +++ b/nixos/modules/config/i18n.nix @@ -41,6 +41,15 @@ in ''; }; + consolePackages = mkOption { + type = types.listOf types.package; + default = []; + description = '' + List of additional packages that provide console fonts, keymaps and + other resources. + ''; + }; + consoleFont = mkOption { type = types.str; default = "Lat2-Terminus16"; diff --git a/nixos/modules/tasks/kbd.nix b/nixos/modules/tasks/kbd.nix index c1087ce4783..dd89804d43a 100644 --- a/nixos/modules/tasks/kbd.nix +++ b/nixos/modules/tasks/kbd.nix @@ -13,6 +13,12 @@ let ${colors} ''; + kbdEnv = pkgs.buildEnv { + name = "kbd-env"; + paths = [ pkgs.kbd ] ++ config.i18n.consolePackages; + pathsToLink = [ "/share/consolefonts" "/share/consoletrans" "/share/keymaps" "/share/unimaps" ]; + }; + setVconsole = !config.boot.isContainer; in @@ -53,10 +59,9 @@ in # Let systemd-vconsole-setup.service do the work of setting up the # virtual consoles. - environment.etc = [ { - target = "vconsole.conf"; - source = vconsoleConf; - } ]; + environment.etc."vconsole.conf".source = vconsoleConf; + # Provide kbd with additional packages. + environment.etc."kbd".source = "${kbdEnv}/share"; # This is identical to the systemd-vconsole-setup.service unit # shipped with systemd, except that it uses /dev/tty1 instead of @@ -66,7 +71,7 @@ in { wantedBy = [ "multi-user.target" ]; before = [ "display-manager.service" ]; after = [ "systemd-udev-settle.service" ]; - restartTriggers = [ vconsoleConf ]; + restartTriggers = [ vconsoleConf kbdEnv ]; }; }) ]; From c89843b604129de19a97643af4aef0f410fce3cf Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 1 Jul 2016 03:51:24 +0300 Subject: [PATCH 030/508] kbd: split keymaps into kbdKeymaps --- nixos/modules/config/i18n.nix | 2 +- pkgs/os-specific/linux/kbd/default.nix | 18 +------------ pkgs/os-specific/linux/kbd/keymaps.nix | 35 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 4 files changed, 39 insertions(+), 18 deletions(-) create mode 100644 pkgs/os-specific/linux/kbd/keymaps.nix diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix index 2dc0df85e5f..e341931aacc 100644 --- a/nixos/modules/config/i18n.nix +++ b/nixos/modules/config/i18n.nix @@ -43,7 +43,7 @@ in consolePackages = mkOption { type = types.listOf types.package; - default = []; + default = with pkgs.kbdKeymaps; [ dvp neo ]; description = '' List of additional packages that provide console fonts, keymaps and other resources. diff --git a/pkgs/os-specific/linux/kbd/default.nix b/pkgs/os-specific/linux/kbd/default.nix index 39da6d2a557..a3f21b51b06 100644 --- a/pkgs/os-specific/linux/kbd/default.nix +++ b/pkgs/os-specific/linux/kbd/default.nix @@ -9,18 +9,6 @@ stdenv.mkDerivation rec { sha256 = "0ppv953gn2zylcagr4z6zg5y2x93dxrml29plypg6xgbq3hrv2bs"; }; - /* Get the dvorak programmer keymap (present in X but not in kbd) */ - dvpSrc = fetchurl { - url = "http://kaufmann.no/downloads/linux/dvp-1_2_1.map.gz"; - sha256 = "0e859211cfe16a18a3b9cbf2ca3e280a23a79b4e40b60d8d01d0fde7336b6d50"; - }; - - neoSrc = fetchurl { - name = "neo.map"; - url = "https://svn.neo-layout.org/linux/console/neo.map?r=2455"; - sha256 = "1wlgp09wq84hml60hi4ls6d4zna7vhycyg40iipyh1279i91hsx7"; - }; - configureFlags = [ "--enable-optional-progs" "--enable-libkeymap" @@ -31,13 +19,9 @@ stdenv.mkDerivation rec { postPatch = '' - mkdir -p data/keymaps/i386/neo - cat "$neoSrc" > data/keymaps/i386/neo/neo.map + # Add Neo keymap subdirectory sed -i -e 's,^KEYMAPSUBDIRS *= *,&i386/neo ,' data/Makefile.am - # Add the dvp keyboard in the dvorak folder - ${gzip}/bin/gzip -c -d ${dvpSrc} > data/keymaps/i386/dvorak/dvp.map - # Fix the path to gzip/bzip2. substituteInPlace src/libkeymap/findfile.c \ --replace gzip ${gzip}/bin/gzip \ diff --git a/pkgs/os-specific/linux/kbd/keymaps.nix b/pkgs/os-specific/linux/kbd/keymaps.nix new file mode 100644 index 00000000000..ecb7045ed27 --- /dev/null +++ b/pkgs/os-specific/linux/kbd/keymaps.nix @@ -0,0 +1,35 @@ +{ stdenv, lib, fetchurl, gzip }: + +{ + dvp = stdenv.mkDerivation rec { + name = "dvp-${version}"; + version = "1.2.1"; + + src = fetchurl { + url = "http://kaufmann.no/downloads/linux/dvp-${lib.replaceStrings ["."] ["_"] version}.map.gz"; + sha256 = "0e859211cfe16a18a3b9cbf2ca3e280a23a79b4e40b60d8d01d0fde7336b6d50"; + }; + + nativeBuildInputs = [ gzip ]; + + buildCommand = '' + mkdir -p $out/share/keymaps/i386/dvorak + gzip -c -d $src > $out/share/keymaps/i386/dvorak/dvp.map + ''; + }; + + neo = stdenv.mkDerivation rec { + name = "neo-${version}"; + version = "2476"; + + src = fetchurl { + name = "neo.map"; + url = "https://svn.neo-layout.org/linux/console/neo.map?r=${version}"; + sha256 = "19mfrd31vzpsjiwc7pshxm0b0sz5dd17xrz6k079cy4im1vf0r4g"; + }; + + buildCommand = '' + install -D $src $out/share/keymaps/i386/neo/neo.map + ''; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b2cbe0fd03f..3394dde88a4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10723,6 +10723,8 @@ in kbd = callPackage ../os-specific/linux/kbd { }; + kbdKeymaps = callPackage ../os-specific/linux/kbd/keymaps.nix { }; + kbdlight = callPackage ../os-specific/linux/kbdlight { }; kmscon = callPackage ../os-specific/linux/kmscon { }; From 1ac6f1fe259346ea1d058436ab80c8c47703e101 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 7 Jul 2016 02:50:30 +0300 Subject: [PATCH 031/508] systemd: update fork revision --- pkgs/os-specific/linux/systemd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 0ba6c431c9f..640e3db2a55 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -16,8 +16,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "NixOS"; repo = "systemd"; - rev = "4ccee551f2ba8383c8b9bd06590a3cd1dfdf690f"; - sha256 = "1i4my5z7f8g5bykv1vxyw1az66s087lfqrck79kdm4hgvb4lsk6y"; + rev = "81d5aaac06b43fd72f5ab02734a17cbfb55d1f5b"; + sha256 = "1ig7jwmvaa1r4qlngjpnvvvvxhmzbxr171d257q4ryf87l93g1an"; }; patches = [ ./hwdb-location.diff ]; From 8bbfba48c47f22e6e91becc6fcd90a8f48940ec9 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 7 Jul 2016 02:51:03 +0300 Subject: [PATCH 032/508] systemd: move hwdb patch to the fork itself --- pkgs/os-specific/linux/systemd/default.nix | 2 -- .../linux/systemd/hwdb-location.diff | 19 ------------------- 2 files changed, 21 deletions(-) delete mode 100644 pkgs/os-specific/linux/systemd/hwdb-location.diff diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 640e3db2a55..e3a49e68dd3 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -20,8 +20,6 @@ stdenv.mkDerivation rec { sha256 = "1ig7jwmvaa1r4qlngjpnvvvvxhmzbxr171d257q4ryf87l93g1an"; }; - patches = [ ./hwdb-location.diff ]; - /* gave up for now! outputs = [ "out" "libudev" "doc" ]; # maybe: "dev" # note: there are many references to ${systemd}/... diff --git a/pkgs/os-specific/linux/systemd/hwdb-location.diff b/pkgs/os-specific/linux/systemd/hwdb-location.diff deleted file mode 100644 index 31e7a027f50..00000000000 --- a/pkgs/os-specific/linux/systemd/hwdb-location.diff +++ /dev/null @@ -1,19 +0,0 @@ -diff --git a/src/libsystemd/sd-hwdb/sd-hwdb.c b/src/libsystemd/sd-hwdb/sd-hwdb.c -index 06c9831..e74825c 100644 ---- a/src/libsystemd/sd-hwdb/sd-hwdb.c -+++ b/src/libsystemd/sd-hwdb/sd-hwdb.c -@@ -268,13 +268,8 @@ static int trie_search_f(sd_hwdb *hwdb, const char *search) { - } - - static const char hwdb_bin_paths[] = -- "/etc/systemd/hwdb/hwdb.bin\0" - "/etc/udev/hwdb.bin\0" -- "/usr/lib/systemd/hwdb/hwdb.bin\0" --#ifdef HAVE_SPLIT_USR -- "/lib/systemd/hwdb/hwdb.bin\0" --#endif -- UDEVLIBEXECDIR "/hwdb.bin\0"; -+ ; - - _public_ int sd_hwdb_new(sd_hwdb **ret) { - _cleanup_hwdb_unref_ sd_hwdb *hwdb = NULL; From 00e67f0df000268a0bd5cefb81f4c32068a33420 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 7 Jul 2016 02:51:20 +0300 Subject: [PATCH 033/508] systemd: use plymouth from system path --- pkgs/os-specific/linux/systemd/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index e3a49e68dd3..05cef1ffd50 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -97,7 +97,8 @@ stdenv.mkDerivation rec { --replace /bin/echo ${coreutils}/bin/echo \ --replace /bin/cat ${coreutils}/bin/cat \ --replace /sbin/sulogin ${utillinux.bin}/sbin/sulogin \ - --replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck + --replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck \ + --replace /bin/plymouth /run/current-system/sw/bin/plymouth # To avoid dependency done substituteInPlace src/journal/catalog.c \ From da97ba359e5aac17c2a3eab5fd787b169d72dd05 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 8 Jul 2016 18:32:17 +0300 Subject: [PATCH 034/508] busybox: set default keymap path --- pkgs/os-specific/linux/busybox/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix index fa6591701a6..b04f7855fef 100644 --- a/pkgs/os-specific/linux/busybox/default.nix +++ b/pkgs/os-specific/linux/busybox/default.nix @@ -56,6 +56,9 @@ stdenv.mkDerivation rec { CONFIG_FEATURE_MOUNT_CIFS n CONFIG_FEATURE_MOUNT_HELPERS y + # Set paths for console fonts. + CONFIG_DEFAULT_SETFONT_DIR "/etc/kbd" + ${extraConfig} $extraCrossConfig EOF From 5622226d5b3043d5a6239b4c4f28e64fdbbaaba2 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 3 Jul 2016 03:28:29 +0300 Subject: [PATCH 035/508] kbd service: drop a comment now when we do restart vconsole setup --- nixos/modules/tasks/kbd.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/tasks/kbd.nix b/nixos/modules/tasks/kbd.nix index 02721bb3bea..c1087ce4783 100644 --- a/nixos/modules/tasks/kbd.nix +++ b/nixos/modules/tasks/kbd.nix @@ -52,8 +52,7 @@ in environment.systemPackages = [ pkgs.kbd ]; # Let systemd-vconsole-setup.service do the work of setting up the - # virtual consoles. FIXME: trigger a restart of - # systemd-vconsole-setup.service if /etc/vconsole.conf changes. + # virtual consoles. environment.etc = [ { target = "vconsole.conf"; source = vconsoleConf; From 803b1eedd65337e18c54d413f4bbbcbcba772e53 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 3 Jul 2016 03:29:21 +0300 Subject: [PATCH 036/508] kbd service: add system-wise console resources --- nixos/modules/config/i18n.nix | 9 +++++++++ nixos/modules/tasks/kbd.nix | 15 ++++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix index b20fac6ad3e..2dc0df85e5f 100644 --- a/nixos/modules/config/i18n.nix +++ b/nixos/modules/config/i18n.nix @@ -41,6 +41,15 @@ in ''; }; + consolePackages = mkOption { + type = types.listOf types.package; + default = []; + description = '' + List of additional packages that provide console fonts, keymaps and + other resources. + ''; + }; + consoleFont = mkOption { type = types.str; default = "Lat2-Terminus16"; diff --git a/nixos/modules/tasks/kbd.nix b/nixos/modules/tasks/kbd.nix index c1087ce4783..dd89804d43a 100644 --- a/nixos/modules/tasks/kbd.nix +++ b/nixos/modules/tasks/kbd.nix @@ -13,6 +13,12 @@ let ${colors} ''; + kbdEnv = pkgs.buildEnv { + name = "kbd-env"; + paths = [ pkgs.kbd ] ++ config.i18n.consolePackages; + pathsToLink = [ "/share/consolefonts" "/share/consoletrans" "/share/keymaps" "/share/unimaps" ]; + }; + setVconsole = !config.boot.isContainer; in @@ -53,10 +59,9 @@ in # Let systemd-vconsole-setup.service do the work of setting up the # virtual consoles. - environment.etc = [ { - target = "vconsole.conf"; - source = vconsoleConf; - } ]; + environment.etc."vconsole.conf".source = vconsoleConf; + # Provide kbd with additional packages. + environment.etc."kbd".source = "${kbdEnv}/share"; # This is identical to the systemd-vconsole-setup.service unit # shipped with systemd, except that it uses /dev/tty1 instead of @@ -66,7 +71,7 @@ in { wantedBy = [ "multi-user.target" ]; before = [ "display-manager.service" ]; after = [ "systemd-udev-settle.service" ]; - restartTriggers = [ vconsoleConf ]; + restartTriggers = [ vconsoleConf kbdEnv ]; }; }) ]; From 9e48baa716f17385b4850377f11e16c33d75cac1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 8 Jul 2016 20:01:42 +0300 Subject: [PATCH 037/508] kbd service: add support for early loading of fonts and keymaps --- nixos/modules/tasks/kbd.nix | 100 +++++++++++++++++++++++++++--------- 1 file changed, 75 insertions(+), 25 deletions(-) diff --git a/nixos/modules/tasks/kbd.nix b/nixos/modules/tasks/kbd.nix index dd89804d43a..5a49b09d635 100644 --- a/nixos/modules/tasks/kbd.nix +++ b/nixos/modules/tasks/kbd.nix @@ -5,20 +5,33 @@ with lib; let makeColor = n: value: "COLOR_${toString n}=${value}"; + makeColorCS = + let positions = [ "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "A" "B" "C" "D" "E" "F" ]; + in n: value: "\033]P${elemAt position n}${value}"; colors = concatImapStringsSep "\n" makeColor config.i18n.consoleColors; - vconsoleConf = pkgs.writeText "vconsole.conf" '' - KEYMAP=${config.i18n.consoleKeyMap} - FONT=${config.i18n.consoleFont} - ${colors} - ''; - kbdEnv = pkgs.buildEnv { name = "kbd-env"; paths = [ pkgs.kbd ] ++ config.i18n.consolePackages; pathsToLink = [ "/share/consolefonts" "/share/consoletrans" "/share/keymaps" "/share/unimaps" ]; }; + isUnicode = hasSuffix "UTF-8" (toUpper config.i18n.defaultLocale); + + optimizedKeymap = pkgs.runCommand "keymap" { + nativeBuildInputs = [ pkgs.kbd ]; + } '' + cd ${kbdEnv}/share/keymaps + loadkeys -b ${optionalString isUnicode "-u"} "${config.i18n.consoleKeyMap}" > $out + ''; + + # Sadly, systemd-vconsole-setup doesn't support binary keymaps. + vconsoleConf = pkgs.writeText "vconsole.conf" '' + KEYMAP=${config.i18n.consoleKeyMap} + FONT=${config.i18n.consoleFont} + ${colors} + ''; + setVconsole = !config.boot.isContainer; in @@ -44,36 +57,73 @@ in ''; }; + boot.earlyVconsoleSetup = mkOption { + default = false; + type = types.bool; + description = '' + Enable setting font and keymap as early as possible (in initrd). + ''; + }; + }; ###### implementation config = mkMerge [ - (mkIf (!setVconsole) { + (mkIf (!setVconsole || (setVconsole && config.boot.earlyVconsoleSetup)) { systemd.services."systemd-vconsole-setup".enable = false; }) - (mkIf setVconsole { - environment.systemPackages = [ pkgs.kbd ]; + (mkIf setVconsole (mkMerge [ + { environment.systemPackages = [ pkgs.kbd ]; - # Let systemd-vconsole-setup.service do the work of setting up the - # virtual consoles. - environment.etc."vconsole.conf".source = vconsoleConf; - # Provide kbd with additional packages. - environment.etc."kbd".source = "${kbdEnv}/share"; + # Let systemd-vconsole-setup.service do the work of setting up the + # virtual consoles. + environment.etc."vconsole.conf".source = vconsoleConf; + } - # This is identical to the systemd-vconsole-setup.service unit - # shipped with systemd, except that it uses /dev/tty1 instead of - # /dev/tty0 to prevent putting the X server in non-raw mode, and - # it has a restart trigger. - systemd.services."systemd-vconsole-setup" = - { wantedBy = [ "multi-user.target" ]; - before = [ "display-manager.service" ]; - after = [ "systemd-udev-settle.service" ]; - restartTriggers = [ vconsoleConf kbdEnv ]; - }; - }) + (mkIf (!config.boot.earlyVconsoleSetup) { + # This is identical to the systemd-vconsole-setup.service unit + # shipped with systemd, except that it uses /dev/tty1 instead of + # /dev/tty0 to prevent putting the X server in non-raw mode, and + # it has a restart trigger. + systemd.services."systemd-vconsole-setup" = + { wantedBy = [ "sysinit.target" ]; + before = [ "display-manager.service" ]; + after = [ "systemd-udev-settle.service" ]; + restartTriggers = [ vconsoleConf ]; + }; + }) + + (mkIf config.boot.earlyVconsoleSetup { + boot.initrd.extraUtilsCommands = '' + mkdir -p $out/share/consolefonts + ${if substring 0 1 config.i18n.consoleFont == "/" then '' + font="${config.i18n.consoleFont}" + '' else '' + font="$(echo ${kbdEnv}/share/consolefonts/${config.i18n.consoleFont}.*)" + ''} + if [[ $font == *.gz ]]; then + gzip -cd $font > $out/share/consolefonts/font.psf + else + cp -L $font $out/share/consolefonts/font.psf + fi + ''; + + boot.initrd.preLVMCommands = mkBefore '' + kbd_mode ${if isUnicode then "-u" else "-a"} -C /dev/console + printf "\033%%${if isUnicode then "G" else "@"}" >> /dev/console + loadkmap < ${optimizedKeymap} + + setfont -C /dev/console $extraUtils/share/consolefonts/font.psf + + ${concatImapStringsSep "\n" (n: color: '' + printf "${makeColorCS n color}" >> /dev/console + '') config.i18n.consoleColors} + ''; + }) + ])) ]; } From ff3e7d2b4bebca772d22c7d75bc91204c0cf6316 Mon Sep 17 00:00:00 2001 From: Cireo Date: Thu, 7 Jul 2016 13:35:08 -0700 Subject: [PATCH 038/508] patchShebangs: strip trailing whitespace Prior to this commit, trailing whitespace would be introduced when modifying '#!' lines with no arguments. For example (whitespace added): /nix/store/.../foo: interpreter directive changed from "/bin/bash" to "/nix/store/...-bash-4.3-p42/bin/bash " /nix/store/.../bar: interpreter directive changed from "/bin/baz wef" to "/nix/store/...-baz wef " We add a sed command to strip trailing whitespace, so the above commands would drop the two spaces after "bash", or the one space after "baz wef". abbradar: fixed commit title Closes #16785. --- pkgs/build-support/setup-hooks/patch-shebangs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/patch-shebangs.sh b/pkgs/build-support/setup-hooks/patch-shebangs.sh index 38660718d0e..f3ecfdd96e8 100644 --- a/pkgs/build-support/setup-hooks/patch-shebangs.sh +++ b/pkgs/build-support/setup-hooks/patch-shebangs.sh @@ -46,7 +46,8 @@ patchShebangs() { args="$arg0 $args" fi - newInterpreterLine="$newPath $args" + # Strip trailing whitespace introduced when no arguments are present + newInterpreterLine=$(echo "$newPath $args" | sed 's/[[:space:]]*$//') if [ -n "$oldPath" -a "${oldPath:0:${#NIX_STORE}}" != "$NIX_STORE" ]; then if [ -n "$newPath" -a "$newPath" != "$oldPath" ]; then From d43bde5f2ba0c26f62449e14ccd847d507a31711 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 9 Jul 2016 03:05:11 +0300 Subject: [PATCH 039/508] patchShebangs: quote variable assignment --- pkgs/build-support/setup-hooks/patch-shebangs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/patch-shebangs.sh b/pkgs/build-support/setup-hooks/patch-shebangs.sh index f3ecfdd96e8..4317a5f4dad 100644 --- a/pkgs/build-support/setup-hooks/patch-shebangs.sh +++ b/pkgs/build-support/setup-hooks/patch-shebangs.sh @@ -47,7 +47,7 @@ patchShebangs() { fi # Strip trailing whitespace introduced when no arguments are present - newInterpreterLine=$(echo "$newPath $args" | sed 's/[[:space:]]*$//') + newInterpreterLine="$(echo "$newPath $args" | sed 's/[[:space:]]*$//')" if [ -n "$oldPath" -a "${oldPath:0:${#NIX_STORE}}" != "$NIX_STORE" ]; then if [ -n "$newPath" -a "$newPath" != "$oldPath" ]; then From 8745e479091f21975d5777df9a8013d8e7d02cfd Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sat, 9 Jul 2016 05:13:52 +0200 Subject: [PATCH 040/508] mutt: 1.6.0 -> 1.6.2 --- .../networking/mailreaders/mutt/default.nix | 86 +- .../mailreaders/mutt/sidebar-compose.patch | 40 - .../mutt/sidebar-delimnullwide.patch | 38 - .../mailreaders/mutt/sidebar-dotpathsep.patch | 98 - .../mailreaders/mutt/sidebar-new.patch | 97 - .../mailreaders/mutt/sidebar-newonly.patch | 198 - .../mailreaders/mutt/sidebar-utf8.patch | 132 - .../networking/mailreaders/mutt/sidebar.patch | 4657 ++++++++++++++--- .../mailreaders/mutt/trash-folder.patch | 316 -- .../networking/mailreaders/mutt/trash.patch | 797 +++ 10 files changed, 4652 insertions(+), 1807 deletions(-) delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/trash-folder.patch create mode 100644 pkgs/applications/networking/mailreaders/mutt/trash.patch diff --git a/pkgs/applications/networking/mailreaders/mutt/default.nix b/pkgs/applications/networking/mailreaders/mutt/default.nix index 1964faf2f5c..31ead22e1fd 100644 --- a/pkgs/applications/networking/mailreaders/mutt/default.nix +++ b/pkgs/applications/networking/mailreaders/mutt/default.nix @@ -1,43 +1,51 @@ { stdenv, fetchurl, ncurses, which, perl, autoreconfHook -, sslSupport ? true -, imapSupport ? true -, headerCache ? true -, saslSupport ? true -, gpgmeSupport ? true , gdbm ? null , openssl ? null , cyrus_sasl ? null , gpgme ? null -, withSidebar ? false +, aclocal ? null +, headerCache ? true +, sslSupport ? true +, saslSupport ? true +, gpgmeSupport ? true +, imapSupport ? true +, withSidebar ? false +, withTrash ? false }: -assert headerCache -> gdbm != null; -assert sslSupport -> openssl != null; -assert saslSupport -> cyrus_sasl != null; -assert gpgmeSupport -> gpgme != null; +assert headerCache -> gdbm != null; +assert sslSupport -> openssl != null; +assert saslSupport -> cyrus_sasl != null; +assert gpgmeSupport -> gpgme != null; + +with stdenv.lib; -let - version = "1.6.0"; -in stdenv.mkDerivation rec { - name = "mutt${stdenv.lib.optionalString withSidebar "-with-sidebar"}-${version}"; + name = "mutt-${version}"; + version = "1.6.2"; src = fetchurl { - url = "http://ftp.mutt.org/pub/mutt/mutt-${version}.tar.gz"; - sha256 = "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9"; + url = "http://ftp.mutt.org/pub/mutt/${name}.tar.gz"; + sha256 = "13hxmji7v9m2agmvzrs7gzx8s3c9jiwrv7pbkr7z1kc6ckq2xl65"; }; - buildInputs = with stdenv.lib; + buildInputs = [ ncurses which perl ] - ++ optional headerCache gdbm - ++ optional sslSupport openssl - ++ optional saslSupport cyrus_sasl - ++ optional gpgmeSupport gpgme; - - nativeBuildInputs = stdenv.lib.optional withSidebar autoreconfHook; + ++ optional headerCache gdbm + ++ optional sslSupport openssl + ++ optional saslSupport cyrus_sasl + ++ optional gpgmeSupport gpgme + ++ optional withSidebar autoreconfHook; configureFlags = [ - "--with-mailpath=" "--enable-smtp" + (enableFeature headerCache "hcache") + (enableFeature gpgmeSupport "gpgme") + (enableFeature imapSupport "imap") + (enableFeature withSidebar "sidebar") + "--enable-smtp" + "--enable-pop" + "--enable-imap" + "--with-mailpath=" # Look in $PATH at runtime, instead of hardcoding /usr/bin/sendmail "ac_cv_path_SENDMAIL=sendmail" @@ -45,36 +53,22 @@ stdenv.mkDerivation rec { # This allows calls with "-d N", that output debug info into ~/.muttdebug* "--enable-debug" - "--enable-pop" "--enable-imap" - # The next allows building mutt without having anything setgid # set by the installer, and removing the need for the group 'mail' # I set the value 'mailbox' because it is a default in the configure script "--with-homespool=mailbox" - (if headerCache then "--enable-hcache" else "--disable-hcache") - (if sslSupport then "--with-ssl" else "--without-ssl") - (if imapSupport then "--enable-imap" else "--disable-imap") - (if saslSupport then "--with-sasl" else "--without-sasl") - (if gpgmeSupport then "--enable-gpgme" else "--disable-gpgme") - ]; + ] ++ optional sslSupport "--with-ssl" + ++ optional saslSupport "--with-sasl"; - # Adding the sidebar - patches = stdenv.lib.optional withSidebar [ - ./trash-folder.patch - ./sidebar.patch - ./sidebar-dotpathsep.patch - ./sidebar-utf8.patch - ./sidebar-newonly.patch - ./sidebar-delimnullwide.patch - ./sidebar-compose.patch - ./sidebar-new.patch - ]; + patches = + optional withTrash ./trash.patch ++ + optional withSidebar ./sidebar.patch; - meta = with stdenv.lib; { + meta = { description = "A small but very powerful text-based mail client"; homepage = http://www.mutt.org; - license = stdenv.lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ the-kenny ]; + maintainers = with maintainers; [ the-kenny rnhmjoj ]; }; } diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch deleted file mode 100644 index 90d815b841d..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch +++ /dev/null @@ -1,40 +0,0 @@ -From: Evgeni Golov -Date: Fri, 14 Mar 2014 08:54:47 +0100 -Subject: sidebar-compose - -draw_sidebar sets SidebarWidth to 0 when sidebar_visible is false. -However, if you start mutt in compose mode, draw_sidebar won't be -called until the next redraw and your header lines will be off by -the width of the sidebar, even when you did not want a sidebar at -all. - -Can be tested with: - HOME=/ LC_ALL=C mutt -e 'unset sidebar_visible' -s test recipient - -Closes: #502627 - -Gbp-Pq: Topic mutt-patched ---- - compose.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/compose.c b/compose.c -index b63695f..0fa6df2 100644 ---- a/compose.c -+++ b/compose.c -@@ -32,6 +32,7 @@ - #include "mailbox.h" - #include "sort.h" - #include "charset.h" -+#include "sidebar.h" - - #ifdef MIXMASTER - #include "remailer.h" -@@ -248,6 +249,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr) - - static void draw_envelope (HEADER *msg, char *fcc) - { -+ draw_sidebar (MENU_COMPOSE); - draw_envelope_addr (HDR_FROM, msg->env->from); - draw_envelope_addr (HDR_TO, msg->env->to); - draw_envelope_addr (HDR_CC, msg->env->cc); diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch deleted file mode 100644 index 11d2ced5a0c..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch +++ /dev/null @@ -1,38 +0,0 @@ -From: Evgeni Golov -Date: Wed, 5 Mar 2014 17:46:07 +0100 -Subject: sidebar-delimnullwide - -SidebarDelim can be NULL and strlen(NULL) is a bad idea, as it will segfault. -Wrap it with NONULL(). - -While at it, change strlen to mbstowcs for better utf8 support. - -Closes: #696145, #663883 - -Gbp-Pq: Topic mutt-patched ---- - sidebar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/sidebar.c b/sidebar.c -index 51a25ca..c3ea338 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -88,7 +88,7 @@ char *make_sidebar_entry(char *box, int size, int new, int flagged) - int box_len, box_bytes; - int int_len; - int right_offset = 0; -- int delim_len = strlen(SidebarDelim); -+ int delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0); - static char *entry; - - right_width = left_width = 0; -@@ -178,7 +178,7 @@ int draw_sidebar(int menu) { - #ifndef USE_SLANG_CURSES - attr_t attrs; - #endif -- short delim_len = strlen(SidebarDelim); -+ short delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0); - short color_pair; - - static bool initialized = false; diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch deleted file mode 100644 index 315fa1649bc..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch +++ /dev/null @@ -1,98 +0,0 @@ -From: Fabian Groffen -Date: Tue, 4 Mar 2014 21:12:15 +0100 -Subject: sidebar-dotpathsep - -Make path separators for sidebar folders configurable. - -When using IMAP, a '.' is often used as path separator, hence make the -path separators configurable through sidebar_delim_chars variable. -It defaults to "/." to work for both mboxes as well as IMAP folders. It -can be set to only "/" or "." or whichever character desired as needed. - -Gbp-Pq: Topic mutt-patched ---- - globals.h | 1 + - init.h | 8 ++++++++ - sidebar.c | 31 ++++++++++++++++++++++++------- - 3 files changed, 33 insertions(+), 7 deletions(-) - -diff --git a/globals.h b/globals.h -index 004c795..602f932 100644 ---- a/globals.h -+++ b/globals.h -@@ -119,6 +119,7 @@ WHERE char *SendCharset; - WHERE char *Sendmail; - WHERE char *Shell; - WHERE char *SidebarDelim; -+WHERE char *SidebarDelimChars INITVAL (NULL); - WHERE char *Signature; - WHERE char *SimpleSearch; - #if USE_SMTP -diff --git a/init.h b/init.h -index c664e5f..166671b 100644 ---- a/init.h -+++ b/init.h -@@ -2051,6 +2051,14 @@ struct option_t MuttVars[] = { - ** .pp - ** The width of the sidebar. - */ -+ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." }, -+ /* -+ ** .pp -+ ** This contains the list of characters which you would like to treat -+ ** as folder separators for displaying paths in the sidebar. If -+ ** you're not using IMAP folders, you probably prefer setting this to "/" -+ ** alone. -+ */ - { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0}, - /* - ** .pp -diff --git a/sidebar.c b/sidebar.c -index 6098c2a..4356ffc 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -249,20 +249,37 @@ int draw_sidebar(int menu) { - // calculate depth of current folder and generate its display name with indented spaces - int sidebar_folder_depth = 0; - char *sidebar_folder_name; -- sidebar_folder_name = basename(tmp->path); -+ int i; -+ sidebar_folder_name = tmp->path; -+ /* disregard a trailing separator, so strlen() - 2 -+ * https://bugs.gentoo.org/show_bug.cgi?id=373197#c16 */ -+ for (i = strlen(sidebar_folder_name) - 2; i >= 0; i--) { -+ if (SidebarDelimChars && -+ strchr(SidebarDelimChars, sidebar_folder_name[i])) -+ { -+ sidebar_folder_name += i + 1; -+ break; -+ } -+ } - if ( maildir_is_prefix ) { - char *tmp_folder_name; -- int i; -+ int lastsep = 0; - tmp_folder_name = tmp->path + strlen(Maildir); -- for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) { -- if (tmp_folder_name[i] == '/') sidebar_folder_depth++; -- } -+ for (i = 0; i < strlen(tmp_folder_name) - 1; i++) { -+ if (SidebarDelimChars && -+ strchr(SidebarDelimChars, tmp_folder_name[i])) -+ { -+ sidebar_folder_depth++; -+ lastsep = i + 1; -+ } -+ } - if (sidebar_folder_depth > 0) { -- sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1); -+ tmp_folder_name += lastsep; /* basename */ -+ sidebar_folder_name = malloc(strlen(tmp_folder_name) + sidebar_folder_depth + 1); - for (i=0; i < sidebar_folder_depth; i++) - sidebar_folder_name[i]=' '; - sidebar_folder_name[i]=0; -- strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth); -+ strncat(sidebar_folder_name, tmp_folder_name, strlen(tmp_folder_name) + sidebar_folder_depth); - } - } - printw( "%.*s", SidebarWidth - delim_len + 1, diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch deleted file mode 100644 index fb265346361..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch +++ /dev/null @@ -1,97 +0,0 @@ -From 355399bde98203af59d20821f9e840fc056bd383 Mon Sep 17 00:00:00 2001 -From: Julius Haertl -Date: Tue, 9 Sep 2014 22:31:49 +0200 -Subject: Patch for sidebar iteration functionality - -sidebar-new will move the selected folder to the next with new messages. -If the end is reached, it will start at the top. - -Useful macros would be: - - macro index a "" - macro pager a "" ---- - OPS | 1 + - curs_main.c | 1 + - functions.h | 2 ++ - pager.c | 1 + - sidebar.c | 10 ++++++++++ - 5 files changed, 15 insertions(+) - -diff --git a/OPS b/OPS -index 1ed9c96..3ffb82a 100644 ---- a/OPS -+++ b/OPS -@@ -187,3 +187,4 @@ OP_SIDEBAR_PREV "go to previous mailbox" - OP_SIDEBAR_OPEN "open hilighted mailbox" - OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail" - OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail" -+OP_SIDEBAR_NEW "iterate though mailboxes with new mail" -diff --git a/curs_main.c b/curs_main.c -index acb106d..2e35f90 100644 ---- a/curs_main.c -+++ b/curs_main.c -@@ -2328,6 +2328,7 @@ int mutt_index_menu (void) - case OP_SIDEBAR_PREV: - case OP_SIDEBAR_NEXT_NEW: - case OP_SIDEBAR_PREV_NEW: -+ case OP_SIDEBAR_NEW: - scroll_sidebar(op, menu->menu); - break; - default: -diff --git a/functions.h b/functions.h -index 363b4d5..1485080 100644 ---- a/functions.h -+++ b/functions.h -@@ -176,6 +176,7 @@ const struct binding_t OpMain[] = { /* map: index */ - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, - { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, - { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, -+ { "sidebar-new", OP_SIDEBAR_NEW, NULL }, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -@@ -287,6 +288,7 @@ const struct binding_t OpPager[] = { /* map: pager */ - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, - { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, - { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, -+ { "sidebar-new", OP_SIDEBAR_NEW, NULL }, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -diff --git a/pager.c b/pager.c -index 8d64fe1..696e55c 100644 ---- a/pager.c -+++ b/pager.c -@@ -2791,6 +2791,7 @@ search_next: - case OP_SIDEBAR_PREV: - case OP_SIDEBAR_NEXT_NEW: - case OP_SIDEBAR_PREV_NEW: -+ case OP_SIDEBAR_NEW: - scroll_sidebar(ch, MENU_PAGER); - break; - -diff --git a/sidebar.c b/sidebar.c -index c3ea338..eb8ecd2 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -429,6 +429,16 @@ void scroll_sidebar(int op, int menu) - CurBuffy = CurBuffy->next; - } - break; -+ case OP_SIDEBAR_NEW: -+ if ( (tmp = exist_next_new()) == NULL) -+ tmp = TopBuffy; -+ if ( tmp->msg_unread == 0 ) { -+ CurBuffy = tmp; -+ tmp = exist_next_new(); -+ } -+ if ( tmp != NULL ) -+ CurBuffy = tmp; -+ break; - default: - return; - } --- -2.6.0.rc0.2.g7662973.dirty - diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch deleted file mode 100644 index d206848026b..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch +++ /dev/null @@ -1,198 +0,0 @@ -From: Steve Kemp -Date: Tue, 4 Mar 2014 22:07:06 +0100 -Subject: sidebar-newonly - -patches written by Steve Kemp, it adds two new functionalities to the sidebar, -so only the mailbox with new messages will be shown (and/or) selected -See Debian bug http://bugs.debian.org/532510 - -Gbp-Pq: Topic mutt-patched ---- - OPS | 2 ++ - curs_main.c | 2 ++ - functions.h | 4 ++++ - init.h | 5 +++++ - mutt.h | 2 ++ - pager.c | 2 ++ - sidebar.c | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 7 files changed, 70 insertions(+), 2 deletions(-) - -diff --git a/OPS b/OPS -index b036db9..1ed9c96 100644 ---- a/OPS -+++ b/OPS -@@ -185,3 +185,5 @@ OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page" - OP_SIDEBAR_NEXT "go down to next mailbox" - OP_SIDEBAR_PREV "go to previous mailbox" - OP_SIDEBAR_OPEN "open hilighted mailbox" -+OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail" -+OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail" -diff --git a/curs_main.c b/curs_main.c -index ea530a6..acb106d 100644 ---- a/curs_main.c -+++ b/curs_main.c -@@ -2326,6 +2326,8 @@ int mutt_index_menu (void) - case OP_SIDEBAR_SCROLL_DOWN: - case OP_SIDEBAR_NEXT: - case OP_SIDEBAR_PREV: -+ case OP_SIDEBAR_NEXT_NEW: -+ case OP_SIDEBAR_PREV_NEW: - scroll_sidebar(op, menu->menu); - break; - default: -diff --git a/functions.h b/functions.h -index ef8937a..363b4d5 100644 ---- a/functions.h -+++ b/functions.h -@@ -174,6 +174,8 @@ const struct binding_t OpMain[] = { /* map: index */ - { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, - { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, -+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -@@ -283,6 +285,8 @@ const struct binding_t OpPager[] = { /* map: pager */ - { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, - { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, - { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL}, -+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL}, - { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, - { NULL, 0, NULL } - }; -diff --git a/init.h b/init.h -index 166671b..a5d4238 100644 ---- a/init.h -+++ b/init.h -@@ -2059,6 +2059,11 @@ struct option_t MuttVars[] = { - ** you're not using IMAP folders, you probably prefer setting this to "/" - ** alone. - */ -+ {"sidebar_newmail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 }, -+ /* -+ ** .pp -+ ** Show only new mail in the sidebar. -+ */ - { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0}, - /* - ** .pp -diff --git a/mutt.h b/mutt.h -index 5f25406..d73e514 100644 ---- a/mutt.h -+++ b/mutt.h -@@ -529,6 +529,8 @@ enum - OPTDONTHANDLEPGPKEYS, /* (pseudo) used to extract PGP keys */ - OPTUNBUFFEREDINPUT, /* (pseudo) don't use key buffer */ - -+ OPTSIDEBARNEWMAILONLY, -+ - OPTMAX - }; - -diff --git a/pager.c b/pager.c -index 5cfcb75..8d64fe1 100644 ---- a/pager.c -+++ b/pager.c -@@ -2789,6 +2789,8 @@ search_next: - case OP_SIDEBAR_SCROLL_DOWN: - case OP_SIDEBAR_NEXT: - case OP_SIDEBAR_PREV: -+ case OP_SIDEBAR_NEXT_NEW: -+ case OP_SIDEBAR_PREV_NEW: - scroll_sidebar(ch, MENU_PAGER); - break; - -diff --git a/sidebar.c b/sidebar.c -index 8f58f85..51a25ca 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -269,8 +269,21 @@ int draw_sidebar(int menu) { - SETCOLOR(MT_COLOR_NEW); - else if ( tmp->msg_flagged > 0 ) - SETCOLOR(MT_COLOR_FLAGGED); -- else -- SETCOLOR(MT_COLOR_NORMAL); -+ else { -+ /* make sure the path is either: -+ 1. Containing new mail. -+ 2. The inbox. -+ 3. The current box. -+ */ -+ if ((option (OPTSIDEBARNEWMAILONLY)) && -+ ( (tmp->msg_unread <= 0) && -+ ( tmp != Incoming ) && -+ Context && -+ ( strcmp( tmp->path, Context->path ) != 0 ) ) ) -+ continue; -+ else -+ SETCOLOR(MT_COLOR_NORMAL); -+ } - - move( lines, 0 ); - if ( Context && !strcmp( tmp->path, Context->path ) ) { -@@ -336,6 +349,29 @@ int draw_sidebar(int menu) { - return 0; - } - -+BUFFY * exist_next_new() -+{ -+ BUFFY *tmp = CurBuffy; -+ if(tmp == NULL) return NULL; -+ while (tmp->next != NULL) -+ { -+ tmp = tmp->next; -+ if(tmp->msg_unread) return tmp; -+ } -+ return NULL; -+} -+ -+BUFFY * exist_prev_new() -+{ -+ BUFFY *tmp = CurBuffy; -+ if(tmp == NULL) return NULL; -+ while (tmp->prev != NULL) -+ { -+ tmp = tmp->prev; -+ if(tmp->msg_unread) return tmp; -+ } -+ return NULL; -+} - - void set_buffystats(CONTEXT* Context) - { -@@ -352,18 +388,33 @@ void set_buffystats(CONTEXT* Context) - - void scroll_sidebar(int op, int menu) - { -+ BUFFY *tmp; - if(!SidebarWidth) return; - if(!CurBuffy) return; - - switch (op) { - case OP_SIDEBAR_NEXT: -+ if (!option (OPTSIDEBARNEWMAILONLY)) { - if ( CurBuffy->next == NULL ) return; - CurBuffy = CurBuffy->next; - break; -+ } -+ case OP_SIDEBAR_NEXT_NEW: -+ if ( (tmp = exist_next_new()) == NULL) -+ return; -+ else CurBuffy = tmp; -+ break; - case OP_SIDEBAR_PREV: -+ if (!option (OPTSIDEBARNEWMAILONLY)) { - if ( CurBuffy->prev == NULL ) return; - CurBuffy = CurBuffy->prev; - break; -+ } -+ case OP_SIDEBAR_PREV_NEW: -+ if ( (tmp = exist_prev_new()) == NULL) -+ return; -+ else CurBuffy = tmp; -+ break; - case OP_SIDEBAR_SCROLL_UP: - CurBuffy = TopBuffy; - if ( CurBuffy != Incoming ) { diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch deleted file mode 100644 index d67e43c24b6..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch +++ /dev/null @@ -1,132 +0,0 @@ -From: Antonio Radici -Date: Tue, 4 Mar 2014 15:39:14 +0100 -Subject: sidebar-utf8 - -This patch fixes a problem with utf-8 strings and the sidebar, -it rewrites entirely make_sidebar_entry so it also fixes some -segfaults due to misallocations and overflows. - -See: - http://bugs.debian.org/584581 - http://bugs.debian.org/603287 - -Gbp-Pq: Topic mutt-patched ---- - sidebar.c | 97 +++++++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 67 insertions(+), 30 deletions(-) - -diff --git a/sidebar.c b/sidebar.c -index 4356ffc..8f58f85 100644 ---- a/sidebar.c -+++ b/sidebar.c -@@ -30,6 +30,7 @@ - #include - #include "keymap.h" - #include -+#include - - /*BUFFY *CurBuffy = 0;*/ - static BUFFY *TopBuffy = 0; -@@ -82,36 +83,72 @@ void calc_boundaries (int menu) - - char *make_sidebar_entry(char *box, int size, int new, int flagged) - { -- static char *entry = 0; -- char *c; -- int i = 0; -- int delim_len = strlen(SidebarDelim); -- -- c = realloc(entry, SidebarWidth - delim_len + 2); -- if ( c ) entry = c; -- entry[SidebarWidth - delim_len + 1] = 0; -- for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' ); -- i = strlen(box); -- strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) ); -- -- if (size == -1) -- sprintf(entry + SidebarWidth - delim_len - 3, "?"); -- else if ( new ) { -- if (flagged > 0) { -- sprintf( -- entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged), -- "% d(%d)[%d]", size, new, flagged); -- } else { -- sprintf( -- entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new), -- "% d(%d)", size, new); -- } -- } else if (flagged > 0) { -- sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged); -- } else { -- sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size); -- } -- return entry; -+ char int_store[20]; // up to 64 bits integers -+ int right_width, left_width; -+ int box_len, box_bytes; -+ int int_len; -+ int right_offset = 0; -+ int delim_len = strlen(SidebarDelim); -+ static char *entry; -+ -+ right_width = left_width = 0; -+ box_len = box_bytes = 0; -+ -+ // allocate an entry big enough to contain SidebarWidth wide chars -+ entry = malloc((SidebarWidth*4)+1); // TODO: error check -+ -+ // determine the right space (i.e.: how big are the numbers that we want to print) -+ if ( size > 0 ) { -+ int_len = snprintf(int_store, sizeof(int_store), "%d", size); -+ right_width += int_len; -+ } else { -+ right_width = 1; // to represent 0 -+ } -+ if ( new > 0 ) { -+ int_len = snprintf(int_store, sizeof(int_store), "%d", new); -+ right_width += int_len + 2; // 2 is for () -+ } -+ if ( flagged > 0 ) { -+ int_len = snprintf(int_store, sizeof(int_store), "%d", flagged); -+ right_width += int_len + 2; // 2 is for [] -+ } -+ -+ // determine how much space we have for *box and its padding (if any) -+ left_width = SidebarWidth - right_width - 1 - delim_len; // 1 is for the space -+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width); -+ // right side overflow case -+ if ( left_width <= 0 ) { -+ snprintf(entry, SidebarWidth*4, "%-*.*s ...", SidebarWidth-4-delim_len, SidebarWidth-4-delim_len, box); -+ return entry; -+ } -+ right_width -= delim_len; -+ -+ // to support utf-8 chars we need to add enough space padding in case there -+ // are less chars than bytes in *box -+ box_len = mbstowcs(NULL, box, 0); -+ box_bytes = strlen(box); -+ // debug -+ //fprintf(stdout, "box_len: %d box_bytes: %d (diff: %d)\n", box_len, box_bytes, (box_bytes-box_len)); -+ // if there is less string than the space we allow, then we will add the -+ // spaces -+ if ( box_len != -1 && box_len < left_width ) { -+ left_width += (box_bytes - box_len); -+ } -+ // otherwise sprintf will truncate the string for us (therefore, no else case) -+ -+ // print the sidebar entry (without new and flagged messages, at the moment) -+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width); -+ right_offset = snprintf(entry, SidebarWidth*4, "%-*.*s %d", left_width, left_width, box, size); -+ -+ // then pad new and flagged messages if any -+ if ( new > 0 ) { -+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "(%d)", new); -+ } -+ if ( flagged > 0 ) { -+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "[%d]", flagged); -+ } -+ -+ return entry; - } - - void set_curbuffy(char buf[LONG_STRING]) diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch index bac1b4ab83b..218de7a0c46 100644 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch +++ b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch @@ -1,306 +1,373 @@ -From: Antonio Radici -Date: Tue, 4 Mar 2014 15:21:10 +0100 -Subject: sidebar - -When enabled, mutt will show a list of mailboxes with (new) message counts in a -separate column on the left side of the screen. - -As this feature is still considered to be unstable, this patch is only applied -in the "mutt-patched" package. - -* Configuration variables: - - sidebar_delim (string, default "|") - - This specifies the delimiter between the sidebar (if visible) and - other screens. - - sidebar_visible (boolean, default no) - - This specifies whether or not to show sidebar (left-side list of folders). - - sidebar_width (integer, default 0) -- - The width of the sidebar. - -* Patch source: - - http://www.lunar-linux.org/index.php?page=mutt-sidebar - - http://lunar-linux.org/~tchan/mutt/patch-1.5.19.sidebar.20090522.txt - -* Changes made: - - 2008-08-02 myon: Refreshed patch using quilt push -f to remove hunks we do - not need (Makefile.in). - - - 2014-03-04 evgeni: refresh sidebar patch with the version from OpenBSD - Source: - ftp://ftp.openbsd.org/pub/OpenBSD/distfiles/mutt/sidebar-1.5.22.diff1.gz - -Signed-off-by: Matteo F. Vescovi -Signed-off-by: Evgeni Golov - -Gbp-Pq: Topic mutt-patched ---- - Makefile.am | 1 + - OPS | 5 + - buffy.c | 124 +++++++++++++++++++++ - buffy.h | 4 + - color.c | 2 + - compose.c | 26 ++--- - curs_main.c | 30 +++++- - flags.c | 3 + - functions.h | 10 ++ - globals.h | 4 + - imap/command.c | 7 ++ - imap/imap.c | 2 +- - init.h | 21 ++++ - mailbox.h | 1 + - mbox.c | 2 + - menu.c | 20 ++-- - mh.c | 22 ++++ - mutt.h | 4 + - mutt_curses.h | 3 + - muttlib.c | 48 +++++++++ - mx.c | 15 +++ - mx.h | 1 + - pager.c | 30 ++++-- - sidebar.c | 333 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - sidebar.h | 36 +++++++ - 25 files changed, 720 insertions(+), 34 deletions(-) - create mode 100644 sidebar.c - create mode 100644 sidebar.h - -diff --git a/Makefile.am b/Makefile.am -index 5dfeff6..cf1ac98 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -33,6 +33,7 @@ mutt_SOURCES = \ - rfc822.c rfc1524.c rfc2047.c rfc2231.c rfc3676.c \ - score.c send.c sendlib.c signal.c sort.c \ - status.c system.c thread.c charset.c history.c lib.c \ -+ sidebar.c \ - muttlib.c editmsg.c mbyte.c mutt_idna.c \ - url.c ascii.c crypt-mod.c crypt-mod.h safe_asprintf.c +diff -urN mutt-1.6.1/buffy.c mutt-1.6.1-sidebar/buffy.c +--- mutt-1.6.1/buffy.c 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-sidebar/buffy.c 2016-06-12 18:43:03.951502935 +0100 +@@ -27,6 +27,10 @@ -diff --git a/OPS b/OPS -index 02cea8e..b036db9 100644 ---- a/OPS -+++ b/OPS -@@ -180,3 +180,8 @@ OP_WHAT_KEY "display the keycode for a key press" - OP_MAIN_SHOW_LIMIT "show currently active limit pattern" - OP_MAIN_COLLAPSE_THREAD "collapse/uncollapse current thread" - OP_MAIN_COLLAPSE_ALL "collapse/uncollapse all threads" -+OP_SIDEBAR_SCROLL_UP "scroll the mailbox pane up 1 page" -+OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page" -+OP_SIDEBAR_NEXT "go down to next mailbox" -+OP_SIDEBAR_PREV "go to previous mailbox" -+OP_SIDEBAR_OPEN "open hilighted mailbox" -diff --git a/buffy.c b/buffy.c -index 12a16d1..90ca6db 100644 ---- a/buffy.c -+++ b/buffy.c -@@ -161,6 +161,49 @@ void mutt_buffy_cleanup (const char *buf, struct stat *st) - } - } + #include "mutt_curses.h" -+static int buffy_compare_name(const void *a, const void *b) { -+ const BUFFY *b1 = * (BUFFY * const *) a; -+ const BUFFY *b2 = * (BUFFY * const *) b; ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + -+ return mutt_strcoll(b1->path, b2->path); -+} -+ -+static BUFFY *buffy_sort(BUFFY *b) -+{ -+ BUFFY *tmp = b; -+ int buffycount = 0; -+ BUFFY **ary; -+ int i; -+ -+ if (!option(OPTSIDEBARSORT)) -+ return b; -+ -+ for (; tmp != NULL; tmp = tmp->next) -+ buffycount++; -+ -+ ary = (BUFFY **) safe_calloc(buffycount, sizeof (*ary)); -+ -+ tmp = b; -+ for (i = 0; tmp != NULL; tmp = tmp->next, i++) { -+ ary[i] = tmp; -+ } -+ -+ qsort(ary, buffycount, sizeof(*ary), buffy_compare_name); -+ -+ for (i = 0; i < buffycount - 1; i++) { -+ ary[i]->next = ary[i+1]; -+ } -+ ary[buffycount - 1]->next = NULL; -+ for (i = 1; i < buffycount; i++) { -+ ary[i]->prev = ary[i-1]; -+ } -+ ary[0]->prev = NULL; -+ -+ tmp = ary[0]; -+ free(ary); -+ return tmp; -+} -+ - BUFFY *mutt_find_mailbox (const char *path) + #ifdef USE_IMAP + #include "imap.h" + #endif +@@ -196,9 +200,17 @@ + static BUFFY *buffy_new (const char *path) { - BUFFY *tmp = NULL; -@@ -282,6 +325,7 @@ int mutt_parse_mailboxes (BUFFER *path, BUFFER *s, unsigned long data, BUFFER *e - else - (*tmp)->size = 0; + BUFFY* buffy; ++#ifdef USE_SIDEBAR ++ char rp[PATH_MAX] = ""; ++ char *r = NULL; ++#endif + + buffy = (BUFFY *) safe_calloc (1, sizeof (BUFFY)); + strfcpy (buffy->path, path, sizeof (buffy->path)); ++#ifdef USE_SIDEBAR ++ r = realpath (path, rp); ++ strfcpy (buffy->realpath, r ? rp : path, sizeof (buffy->realpath)); ++#endif + buffy->next = NULL; + buffy->magic = 0; + +@@ -215,7 +227,10 @@ + BUFFY **tmp,*tmp1; + char buf[_POSIX_PATH_MAX]; + struct stat sb; +- char f1[PATH_MAX], f2[PATH_MAX]; ++ char f1[PATH_MAX]; ++#ifndef USE_SIDEBAR ++ char f2[PATH_MAX]; ++#endif + char *p, *q; + + while (MoreArgs (s)) +@@ -228,6 +243,9 @@ + for (tmp = &Incoming; *tmp;) + { + tmp1=(*tmp)->next; ++#ifdef USE_SIDEBAR ++ mutt_sb_notify_mailbox (*tmp, 0); ++#endif + buffy_free (tmp); + *tmp=tmp1; + } +@@ -243,8 +261,13 @@ + p = realpath (buf, f1); + for (tmp = &Incoming; *tmp; tmp = &((*tmp)->next)) + { ++#ifdef USE_SIDEBAR ++ q = (*tmp)->realpath; ++ if (mutt_strcmp (p ? p : buf, q) == 0) ++#else + q = realpath ((*tmp)->path, f2); + if (mutt_strcmp (p ? p : buf, q ? q : (*tmp)->path) == 0) ++#endif + { + dprint(3,(debugfile,"mailbox '%s' already registered as '%s'\n", buf, (*tmp)->path)); + break; +@@ -256,14 +279,21 @@ + if(*tmp) + { + tmp1=(*tmp)->next; ++#ifdef USE_SIDEBAR ++ mutt_sb_notify_mailbox (*tmp, 0); ++#endif + buffy_free (tmp); + *tmp=tmp1; + } + continue; + } + +- if (!*tmp) ++ if (!*tmp) { + *tmp = buffy_new (buf); ++#ifdef USE_SIDEBAR ++ mutt_sb_notify_mailbox (*tmp, 1); ++#endif ++ } + + (*tmp)->new = 0; + (*tmp)->notified = 1; +@@ -306,6 +336,13 @@ + return 0; } -+ Incoming = buffy_sort(Incoming); - return 0; - } -@@ -357,6 +401,69 @@ static int buffy_maildir_hasnew (BUFFY* mailbox) ++#ifdef USE_SIDEBAR ++ if (option (OPTSIDEBAR) && mailbox->msg_unread > 0) { ++ mailbox->new = 1; ++ return 1; ++ } ++#endif ++ + if ((dirp = opendir (path)) == NULL) + { + mailbox->magic = 0; +@@ -357,6 +394,93 @@ return 0; } + -+/* update message counts for the sidebar */ -+void buffy_maildir_update (BUFFY* mailbox) ++#ifdef USE_SIDEBAR ++/** ++ * buffy_maildir_update_dir - Update counts for one directory ++ * @mailbox: BUFFY representing a maildir mailbox ++ * @dir: Which directory to search ++ * ++ * Look through one directory of a maildir mailbox. The directory could ++ * be either "new" or "cur". ++ * ++ * Count how many new, or flagged, messages there are. ++ */ ++static void ++buffy_maildir_update_dir (BUFFY *mailbox, const char *dir) +{ -+ char path[_POSIX_PATH_MAX]; -+ DIR *dirp; -+ struct dirent *de; -+ char *p; ++ char path[_POSIX_PATH_MAX] = ""; ++ DIR *dirp = NULL; ++ struct dirent *de = NULL; ++ char *p = NULL; ++ int read; + -+ mailbox->msgcount = 0; -+ mailbox->msg_unread = 0; -+ mailbox->msg_flagged = 0; ++ snprintf (path, sizeof (path), "%s/%s", mailbox->path, dir); + -+ snprintf (path, sizeof (path), "%s/new", mailbox->path); -+ -+ if ((dirp = opendir (path)) == NULL) -+ { ++ dirp = opendir (path); ++ if (!dirp) ++ { + mailbox->magic = 0; + return; -+ } -+ ++ } ++ + while ((de = readdir (dirp)) != NULL) + { + if (*de->d_name == '.') + continue; + -+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) { -+ mailbox->new = 1; -+ mailbox->msgcount++; ++ /* Matches maildir_parse_flags logic */ ++ read = 0; ++ mailbox->msg_count++; ++ p = strstr (de->d_name, ":2,"); ++ if (p) ++ { ++ p += 3; ++ if (strchr (p, 'S')) ++ read = 1; ++ if (strchr (p, 'F')) ++ mailbox->msg_flagged++; ++ } ++ if (!read) { + mailbox->msg_unread++; + } + } + + closedir (dirp); -+ snprintf (path, sizeof (path), "%s/cur", mailbox->path); -+ -+ if ((dirp = opendir (path)) == NULL) -+ { -+ mailbox->magic = 0; -+ return; -+ } -+ -+ while ((de = readdir (dirp)) != NULL) -+ { -+ if (*de->d_name == '.') -+ continue; -+ -+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) { -+ mailbox->msgcount++; -+ if ((p = strstr (de->d_name, ":2,"))) { -+ if (!strchr (p + 3, 'T')) { -+ if (!strchr (p + 3, 'S')) -+ mailbox->msg_unread++; -+ if (strchr(p + 3, 'F')) -+ mailbox->msg_flagged++; -+ } -+ } -+ } -+ } -+ -+ closedir (dirp); +} ++ ++/** ++ * buffy_maildir_update - Update messages counts for a maildir mailbox ++ * @mailbox: BUFFY representing a maildir mailbox ++ * ++ * Open a mailbox directories and update our record of how many new, or ++ * flagged, messages there are. ++ */ ++void ++buffy_maildir_update (BUFFY *mailbox) ++{ ++ if (!option (OPTSIDEBAR)) ++ return; ++ ++ mailbox->msg_count = 0; ++ mailbox->msg_unread = 0; ++ mailbox->msg_flagged = 0; ++ ++ buffy_maildir_update_dir (mailbox, "new"); ++ if (mailbox->msg_count) { ++ mailbox->new = 1; ++ } ++ buffy_maildir_update_dir (mailbox, "cur"); ++ ++ mailbox->sb_last_checked = time (NULL); ++ ++ /* make sure the updates are actually put on screen */ ++ if (SidebarWidth) ++ mutt_sb_draw(); ++} ++ ++#endif + /* returns 1 if mailbox has new mail */ static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb) { -@@ -388,6 +495,20 @@ static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb) +@@ -368,7 +491,11 @@ + else + statcheck = sb->st_mtime > sb->st_atime + || (mailbox->newly_created && sb->st_ctime == sb->st_mtime && sb->st_ctime == sb->st_atime); ++#ifdef USE_SIDEBAR ++ if ((!option (OPTSIDEBAR) && statcheck) || (option (OPTSIDEBAR) && mailbox->msg_unread > 0)) ++#else + if (statcheck) ++#endif + { + if (!option(OPTMAILCHECKRECENT) || sb->st_mtime > mailbox->last_visited) + { +@@ -388,6 +515,42 @@ return rc; } -+/* update message counts for the sidebar */ -+void buffy_mbox_update (BUFFY* mailbox) ++#ifdef USE_SIDEBAR ++/** ++ * buffy_mbox_update - Update messages counts for an mbox mailbox ++ * @mailbox: BUFFY representing an mbox mailbox ++ * @sb: stat(2) infomation about the mailbox file ++ * ++ * Open a mbox file and update our record of how many new, or flagged, ++ * messages there are. If the mailbox hasn't changed since the last call, ++ * the function does nothing. ++ */ ++void ++buffy_mbox_update (BUFFY *mailbox, struct stat *sb) +{ + CONTEXT *ctx = NULL; + -+ ctx = mx_open_mailbox(mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL); -+ if(ctx) ++ if (!option (OPTSIDEBAR)) ++ return; ++ if ((mailbox->sb_last_checked > sb->st_mtime) && (mailbox->msg_count != 0)) ++ return; /* no check necessary */ ++ ++ ctx = mx_open_mailbox (mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL); ++ if (ctx) + { -+ mailbox->msgcount = ctx->msgcount; -+ mailbox->msg_unread = ctx->unread; -+ mx_close_mailbox(ctx, 0); ++ mailbox->msg_count = ctx->msgcount; ++ mailbox->msg_unread = ctx->unread; ++ mailbox->msg_flagged = ctx->flagged; ++ mailbox->sb_last_checked = time (NULL); ++ mx_close_mailbox (ctx, 0); + } ++ ++ /* make sure the updates are actually put on screen */ ++ if (SidebarWidth) ++ mutt_sb_draw(); +} ++#endif + int mutt_buffy_check (int force) { BUFFY *tmp; -@@ -461,16 +582,19 @@ int mutt_buffy_check (int force) +@@ -461,16 +623,25 @@ { case M_MBOX: case M_MMDF: -+ buffy_mbox_update (tmp); ++#ifdef USE_SIDEBAR ++ buffy_mbox_update (tmp, &sb); ++#endif if (buffy_mbox_hasnew (tmp, &sb) > 0) BuffyCount++; break; case M_MAILDIR: ++#ifdef USE_SIDEBAR + buffy_maildir_update (tmp); ++#endif if (buffy_maildir_hasnew (tmp) > 0) BuffyCount++; break; case M_MH: -+ mh_buffy_update (tmp->path, &tmp->msgcount, &tmp->msg_unread, &tmp->msg_flagged); ++#ifdef USE_SIDEBAR ++ mh_buffy_update (tmp); ++#endif mh_buffy(tmp); if (tmp->new) BuffyCount++; -diff --git a/buffy.h b/buffy.h -index f9fc55a..672d178 100644 ---- a/buffy.h -+++ b/buffy.h -@@ -25,7 +25,11 @@ typedef struct buffy_t +diff -urN mutt-1.6.1/buffy.h mutt-1.6.1-sidebar/buffy.h +--- mutt-1.6.1/buffy.h 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-sidebar/buffy.h 2016-06-12 18:43:03.951502935 +0100 +@@ -16,6 +16,9 @@ + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + ++#ifndef _BUFFY_H ++#define _BUFFY_H ++ + /*parameter to mutt_parse_mailboxes*/ + #define M_MAILBOXES 1 + #define M_UNMAILBOXES 2 +@@ -23,13 +26,28 @@ + typedef struct buffy_t + { char path[_POSIX_PATH_MAX]; ++#ifdef USE_SIDEBAR ++ char realpath[_POSIX_PATH_MAX]; ++#endif off_t size; struct buffy_t *next; ++#ifdef USE_SIDEBAR + struct buffy_t *prev; ++#endif short new; /* mailbox has new mail */ -+ int msgcount; /* total number of messages */ ++#ifdef USE_SIDEBAR ++ int msg_count; /* total number of messages */ + int msg_unread; /* number of unread messages */ + int msg_flagged; /* number of flagged messages */ ++ short is_hidden; /* is hidden from the sidebar */ ++#endif short notified; /* user has been notified */ short magic; /* mailbox type */ short newly_created; /* mbox or mmdf just popped into existence */ -diff --git a/color.c b/color.c -index 64a46dc..d6f9198 100644 ---- a/color.c -+++ b/color.c -@@ -94,6 +94,8 @@ static const struct mapping_t Fields[] = + time_t last_visited; /* time of last exit from this mailbox */ ++#ifdef USE_SIDEBAR ++ time_t sb_last_checked; /* time of last buffy check from sidebar */ ++#endif + } + BUFFY; + +@@ -49,3 +67,5 @@ + void mutt_buffy_setnotified (const char *path); + + void mh_buffy (BUFFY *); ++ ++#endif /* _BUFFY_H */ +diff -urN mutt-1.6.1/color.c mutt-1.6.1-sidebar/color.c +--- mutt-1.6.1/color.c 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-sidebar/color.c 2016-06-12 18:43:03.951502935 +0100 +@@ -94,6 +94,14 @@ { "underline", MT_COLOR_UNDERLINE }, { "index", MT_COLOR_INDEX }, { "prompt", MT_COLOR_PROMPT }, -+ { "sidebar_new", MT_COLOR_NEW }, ++#ifdef USE_SIDEBAR ++ { "sidebar_divider", MT_COLOR_DIVIDER }, + { "sidebar_flagged", MT_COLOR_FLAGGED }, ++ { "sidebar_highlight",MT_COLOR_HIGHLIGHT }, ++ { "sidebar_indicator",MT_COLOR_SB_INDICATOR }, ++ { "sidebar_new", MT_COLOR_NEW }, ++ { "sidebar_spoolfile",MT_COLOR_SB_SPOOLFILE }, ++#endif { NULL, 0 } }; -diff --git a/compose.c b/compose.c -index 9d87060..b63695f 100644 ---- a/compose.c -+++ b/compose.c -@@ -72,7 +72,7 @@ enum +@@ -146,6 +154,9 @@ + ColorDefs[MT_COLOR_INDICATOR] = A_REVERSE; + ColorDefs[MT_COLOR_SEARCH] = A_REVERSE; + ColorDefs[MT_COLOR_MARKERS] = A_REVERSE; ++#ifdef USE_SIDEBAR ++ ColorDefs[MT_COLOR_HIGHLIGHT] = A_UNDERLINE; ++#endif + /* special meaning: toggle the relevant attribute */ + ColorDefs[MT_COLOR_BOLD] = 0; + ColorDefs[MT_COLOR_UNDERLINE] = 0; +diff -urN mutt-1.6.1/compose.c mutt-1.6.1-sidebar/compose.c +--- mutt-1.6.1/compose.c 2016-06-12 18:43:00.398447528 +0100 ++++ mutt-1.6.1-sidebar/compose.c 2016-06-12 18:43:03.952502951 +0100 +@@ -32,6 +32,9 @@ + #include "mailbox.h" + #include "sort.h" + #include "charset.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + + #ifdef MIXMASTER + #include "remailer.h" +@@ -72,7 +75,7 @@ #define HDR_XOFFSET 10 #define TITLE_FMT "%10s" /* Used for Prompts, which are ASCII */ @@ -309,16 +376,16 @@ index 9d87060..b63695f 100644 static const char * const Prompts[] = { -@@ -110,7 +110,7 @@ static void snd_entry (char *b, size_t blen, MUTTMENU *menu, int num) +@@ -110,7 +113,7 @@ static void redraw_crypt_lines (HEADER *msg) { - mvaddstr (HDR_CRYPT, 0, "Security: "); -+ mvaddstr (HDR_CRYPT, SidebarWidth, "Security: "); ++ mvprintw (HDR_CRYPT, SidebarWidth, TITLE_FMT, "Security: "); if ((WithCrypto & (APPLICATION_PGP | APPLICATION_SMIME)) == 0) { -@@ -145,7 +145,7 @@ static void redraw_crypt_lines (HEADER *msg) +@@ -145,16 +148,16 @@ addstr (_(" (OppEnc mode)")); clrtoeol (); @@ -327,7 +394,18 @@ index 9d87060..b63695f 100644 clrtoeol (); if ((WithCrypto & APPLICATION_PGP) -@@ -162,7 +162,7 @@ static void redraw_crypt_lines (HEADER *msg) + && (msg->security & APPLICATION_PGP) && (msg->security & SIGN)) +- printw ("%s%s", _(" sign as: "), PgpSignAs ? PgpSignAs : _("")); ++ printw (TITLE_FMT "%s", _("sign as: "), PgpSignAs ? PgpSignAs : _("")); + + if ((WithCrypto & APPLICATION_SMIME) + && (msg->security & APPLICATION_SMIME) && (msg->security & SIGN)) { +- printw ("%s%s", _(" sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); ++ printw (TITLE_FMT "%s", _("sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); + } + + if ((WithCrypto & APPLICATION_SMIME) +@@ -162,7 +165,7 @@ && (msg->security & ENCRYPT) && SmimeCryptAlg && *SmimeCryptAlg) { @@ -336,16 +414,17 @@ index 9d87060..b63695f 100644 NONULL(SmimeCryptAlg)); } } -@@ -175,7 +175,7 @@ static void redraw_mix_line (LIST *chain) +@@ -175,7 +178,8 @@ int c; char *t; - mvaddstr (HDR_MIX, 0, " Mix: "); -+ mvaddstr (HDR_MIX, SidebarWidth, " Mix: "); ++ /* L10N: "Mix" refers to the MixMaster chain for anonymous email */ ++ mvprintw (HDR_MIX, SidebarWidth, TITLE_FMT, _("Mix: ")); if (!chain) { -@@ -190,7 +190,7 @@ static void redraw_mix_line (LIST *chain) +@@ -190,7 +194,7 @@ if (t && t[0] == '0' && t[1] == '\0') t = ""; @@ -354,7 +433,7 @@ index 9d87060..b63695f 100644 break; addstr (NONULL(t)); -@@ -242,7 +242,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr) +@@ -242,20 +246,23 @@ buf[0] = 0; rfc822_write_address (buf, sizeof (buf), addr, 1); @@ -363,7 +442,12 @@ index 9d87060..b63695f 100644 mutt_paddstr (W, buf); } -@@ -252,10 +252,10 @@ static void draw_envelope (HEADER *msg, char *fcc) + static void draw_envelope (HEADER *msg, char *fcc) + { ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif + draw_envelope_addr (HDR_FROM, msg->env->from); draw_envelope_addr (HDR_TO, msg->env->to); draw_envelope_addr (HDR_CC, msg->env->cc); draw_envelope_addr (HDR_BCC, msg->env->bcc); @@ -376,7 +460,7 @@ index 9d87060..b63695f 100644 mutt_paddstr (W, fcc); if (WithCrypto) -@@ -266,7 +266,7 @@ static void draw_envelope (HEADER *msg, char *fcc) +@@ -266,7 +273,7 @@ #endif SETCOLOR (MT_COLOR_STATUS); @@ -385,16 +469,25 @@ index 9d87060..b63695f 100644 clrtoeol (); NORMAL_COLOR; -@@ -302,7 +302,7 @@ static int edit_address_list (int line, ADDRESS **addr) +@@ -302,7 +309,7 @@ /* redraw the expanded list so the user can see the result */ buf[0] = 0; rfc822_write_address (buf, sizeof (buf), *addr, 1); - move (line, HDR_XOFFSET); -+ move (line, HDR_XOFFSET+SidebarWidth); ++ move (line, HDR_XOFFSET + SidebarWidth); mutt_paddstr (W, buf); return 0; -@@ -562,7 +562,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */ +@@ -515,7 +522,7 @@ + menu->tag = mutt_tag_attach; + menu->data = idx; + menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_COMPOSE, ComposeHelp); +- ++ + while (loop) + { + switch (op = mutt_menuLoop (menu)) +@@ -564,7 +571,7 @@ if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) == 0) { mutt_str_replace (&msg->env->subject, buf); @@ -403,7 +496,7 @@ index 9d87060..b63695f 100644 if (msg->env->subject) mutt_paddstr (W, msg->env->subject); else -@@ -580,7 +580,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */ +@@ -582,7 +589,7 @@ { strfcpy (fcc, buf, fcclen); mutt_pretty_mailbox (fcc, fcclen); @@ -412,57 +505,118 @@ index 9d87060..b63695f 100644 mutt_paddstr (W, fcc); fccSet = 1; } -diff --git a/curs_main.c b/curs_main.c -index 9d718ee..ea530a6 100644 ---- a/curs_main.c -+++ b/curs_main.c -@@ -26,7 +26,9 @@ +diff -urN mutt-1.6.1/configure.ac mutt-1.6.1-sidebar/configure.ac +--- mutt-1.6.1/configure.ac 2016-06-12 18:43:00.398447528 +0100 ++++ mutt-1.6.1-sidebar/configure.ac 2016-06-12 18:43:03.952502951 +0100 +@@ -175,6 +175,14 @@ + SMIMEAUX_TARGET="smime_keys" + fi + ++AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar support]), ++[ if test x$enableval = xyes ; then ++ AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.]) ++ OPS="$OPS \$(srcdir)/OPS.SIDEBAR" ++ MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS sidebar.o" ++ fi ++]) ++ + AC_ARG_WITH(mixmaster, AS_HELP_STRING([--with-mixmaster@<:@=PATH@:>@],[Include Mixmaster support]), + [if test "$withval" != no + then +diff -urN mutt-1.6.1/copy.c mutt-1.6.1-sidebar/copy.c +--- mutt-1.6.1/copy.c 2016-06-12 18:43:00.398447528 +0100 ++++ mutt-1.6.1-sidebar/copy.c 2016-06-12 18:43:03.952502951 +0100 +@@ -288,7 +288,8 @@ + if (flags & (CH_DECODE|CH_PREFIX)) + { + if (mutt_write_one_header (out, 0, headers[x], +- flags & CH_PREFIX ? prefix : 0, mutt_term_width (Wrap), flags) == -1) ++ flags & CH_PREFIX ? prefix : 0, ++ mutt_term_width (Wrap), flags) == -1) + { + error = TRUE; + break; +diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-sidebar/curs_main.c +--- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100 ++++ mutt-1.6.1-sidebar/curs_main.c 2016-06-12 18:43:03.953502966 +0100 +@@ -26,8 +26,13 @@ #include "mailbox.h" #include "mapping.h" #include "sort.h" +#include "buffy.h" #include "mx.h" -+#include "sidebar.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif ++ #ifdef USE_POP #include "pop.h" -@@ -596,8 +598,12 @@ int mutt_index_menu (void) + #endif +@@ -595,21 +600,39 @@ menu->redraw |= REDRAW_STATUS; if (do_buffy_notify) { - if (mutt_buffy_notify () && option (OPTBEEPNEW)) - beep (); -+ if (mutt_buffy_notify ()) ++ if (mutt_buffy_notify()) + { -+ menu->redraw |= REDRAW_FULL; ++ menu->redraw |= REDRAW_STATUS; + if (option (OPTBEEPNEW)) -+ beep (); ++ beep(); + } } else do_buffy_notify = 1; -@@ -609,6 +615,7 @@ int mutt_index_menu (void) + } + ++#ifdef USE_SIDEBAR ++ if (option (OPTSIDEBAR)) ++ menu->redraw |= REDRAW_SIDEBAR; ++#endif ++ + if (op != -1) + mutt_curs_set (0); + if (menu->redraw & REDRAW_FULL) { menu_redraw_full (menu); -+ draw_sidebar(menu->menu); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif mutt_show_error (); } ++#ifdef USE_SIDEBAR ++ else if (menu->redraw & REDRAW_SIDEBAR) { ++ mutt_sb_draw(); ++ menu->redraw &= ~REDRAW_SIDEBAR; ++ } ++#endif -@@ -631,9 +638,12 @@ int mutt_index_menu (void) + if (menu->menu == MENU_MAIN) + { +@@ -630,9 +653,20 @@ if (menu->redraw & REDRAW_STATUS) { -+ DrawFullLine = 1; ++#ifdef USE_SIDEBAR ++ /* Temporarily lie about the sidebar width */ ++ short sw = SidebarWidth; ++ SidebarWidth = 0; ++#endif menu_status_line (buf, sizeof (buf), menu, NONULL (Status)); -+ DrawFullLine = 0; ++#ifdef USE_SIDEBAR ++ SidebarWidth = sw; /* Restore the sidebar width */ ++#endif move (option (OPTSTATUSONTOP) ? 0 : LINES-2, 0); SETCOLOR (MT_COLOR_STATUS); -+ set_buffystats(Context); ++#ifdef USE_SIDEBAR ++ mutt_sb_set_buffystats (Context); ++#endif mutt_paddstr (COLS, buf); NORMAL_COLOR; menu->redraw &= ~REDRAW_STATUS; -@@ -653,7 +663,7 @@ int mutt_index_menu (void) +@@ -652,7 +686,7 @@ menu->oldcurrent = -1; if (option (OPTARROWCURSOR)) @@ -471,229 +625,1948 @@ index 9d718ee..ea530a6 100644 else if (option (OPTBRAILLEFRIENDLY)) move (menu->current - menu->top + menu->offset, 0); else -@@ -1154,6 +1164,7 @@ int mutt_index_menu (void) +@@ -1091,6 +1125,9 @@ + break; + + CHECK_MSGCOUNT; ++#ifdef USE_SIDEBAR ++ CHECK_VISIBLE; ++#endif + CHECK_READONLY; + { + int oldvcount = Context->vcount; +@@ -1150,6 +1187,9 @@ menu->redraw = REDRAW_FULL; break; ++#ifdef USE_SIDEBAR + case OP_SIDEBAR_OPEN: ++#endif case OP_MAIN_CHANGE_FOLDER: case OP_MAIN_NEXT_UNREAD_MAILBOX: -@@ -1185,7 +1196,11 @@ int mutt_index_menu (void) +@@ -1181,6 +1221,14 @@ { mutt_buffy (buf, sizeof (buf)); -- if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) -+ if ( op == OP_SIDEBAR_OPEN ) { -+ if(!CurBuffy) -+ break; -+ strncpy( buf, CurBuffy->path, sizeof(buf) ); -+ } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) ++#ifdef USE_SIDEBAR ++ if (op == OP_SIDEBAR_OPEN) { ++ const char *path = mutt_sb_get_highlight(); ++ if (!path) ++ break; ++ strncpy (buf, path, sizeof (buf)); ++ } else ++#endif + if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) { if (menu->menu == MENU_PAGER) - { -@@ -1203,6 +1218,7 @@ int mutt_index_menu (void) +@@ -1199,6 +1247,9 @@ } mutt_expand_path (buf, sizeof (buf)); -+ set_curbuffy(buf); ++#ifdef USE_SIDEBAR ++ mutt_sb_set_open_buffy (buf); ++#endif if (mx_get_magic (buf) <= 0) { mutt_error (_("%s is not a mailbox."), buf); -@@ -2306,6 +2322,12 @@ int mutt_index_menu (void) +@@ -2310,6 +2361,21 @@ mutt_what_key(); break; -+ case OP_SIDEBAR_SCROLL_UP: -+ case OP_SIDEBAR_SCROLL_DOWN: ++#ifdef USE_SIDEBAR + case OP_SIDEBAR_NEXT: ++ case OP_SIDEBAR_NEXT_NEW: ++ case OP_SIDEBAR_PAGE_DOWN: ++ case OP_SIDEBAR_PAGE_UP: + case OP_SIDEBAR_PREV: -+ scroll_sidebar(op, menu->menu); ++ case OP_SIDEBAR_PREV_NEW: ++ mutt_sb_change_mailbox (op); + break; ++ ++ case OP_SIDEBAR_TOGGLE_VISIBLE: ++ toggle_option (OPTSIDEBAR); ++ menu->redraw = REDRAW_FULL; ++ break; ++#endif default: if (menu->menu == MENU_MAIN) km_error_key (MENU_MAIN); -diff --git a/flags.c b/flags.c -index 133fa35..48fb287 100644 ---- a/flags.c -+++ b/flags.c -@@ -22,8 +22,10 @@ +diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-sidebar/doc/manual.xml.head +--- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100 ++++ mutt-1.6.1-sidebar/doc/manual.xml.head 2016-06-12 18:43:03.955502998 +0100 +@@ -405,6 +405,623 @@ + + + ++ ++ Sidebar ++ ++ The Sidebar shows a list of all your mailboxes. The list can be ++ turned on and off, it can be themed and the list style can be ++ configured. ++ ++ ++ This part of the manual is suitable for beginners. ++ If you already know Mutt you could skip ahead to the main ++ Sidebar guide. ++ If you just want to get started, you could use the sample ++ Sidebar muttrc. ++ ++ ++ This version of Sidebar is based on Terry Chan's ++ 2015-11-11 release. ++ It contains many ++ new features, ++ lots of ++ bugfixes ++ and a generous helping of ++ new documentation which you are already reading. ++ ++ ++ To check if Mutt supports Sidebar, look for the string ++ +USE_SIDEBAR in the mutt version. ++ ++ ++mutt -v ++ ++ ++ Let's turn on the Sidebar: ++ ++ set sidebar_visible ++ ++ You will see something like this. ++ A list of mailboxes on the left. ++ A list of emails, from the selected mailbox, on the right. ++ ++ ++Fruit [1] 3/8| 1 + Jan 24 Rhys Lee (192) Yew ++Animals [1] 2/6| 2 + Feb 11 Grace Hall (167) Ilama ++Cars 4| 3 Feb 23 Aimee Scott (450) Nectarine ++Seas 1/7| 4 ! Feb 28 Summer Jackson (264) Lemon ++ | 5 Mar 07 Callum Harrison (464) Raspberry ++ | 6 N + Mar 24 Samuel Harris (353) Tangerine ++ | 7 N + Sep 05 Sofia Graham (335) Cherry ++ | 8 N Sep 16 Ewan Brown (105) Ugli ++ | ++ | ++ ++ ++ This user has four mailboxes: Fruit, ++ Cars, Animals and ++ Seas. ++ ++ ++ The current, open, mailbox is Fruit. We can ++ also see information about the other mailboxes. For example: ++ The Animals mailbox contains, 1 flagged email, 2 ++ new emails out of a total of 6 emails. ++ ++ ++ Navigation ++ ++ The Sidebar adds some new functions ++ to Mutt. ++ ++ ++ The user pressed the c key to ++ <change-folder> to the ++ Animals mailbox. The Sidebar automatically ++ updated the indicator to match. ++ ++ ++Fruit [1] 3/8| 1 Jan 03 Tia Gibson (362) Caiman ++Animals [1] 2/6| 2 + Jan 22 Rhys Lee ( 48) Dolphin ++Cars 4| 3 ! Aug 16 Ewan Brown (333) Hummingbird ++Seas 1/7| 4 Sep 25 Grace Hall ( 27) Capybara ++ | 5 N + Nov 12 Evelyn Rogers (453) Tapir ++ | 6 N + Nov 16 Callum Harrison (498) Hedgehog ++ | ++ | ++ | ++ | ++ ++ ++ Let's map some functions: ++ ++ ++bind index,pager \CP sidebar-prev # Ctrl-Shift-P - Previous Mailbox ++bind index,pager \CN sidebar-next # Ctrl-Shift-N - Next Mailbox ++bind index,pager \CO sidebar-open # Ctrl-Shift-O - Open Highlighted Mailbox ++ ++ ++ Press Ctrl-Shift-N (Next mailbox) twice will ++ move the Sidebar highlight to ++ down to the Seas mailbox. ++ ++ ++Fruit [1] 3/8| 1 Jan 03 Tia Gibson (362) Caiman ++Animals [1] 2/6| 2 + Jan 22 Rhys Lee ( 48) Dolphin ++Cars 4| 3 ! Aug 16 Ewan Brown (333) Hummingbird ++Seas 1/7| 4 Sep 25 Grace Hall ( 27) Capybara ++ | 5 N + Nov 12 Evelyn Rogers (453) Tapir ++ | 6 N + Nov 16 Callum Harrison (498) Hedgehog ++ | ++ | ++ | ++ | ++ ++ ++ Functions <sidebar-next> and ++ <sidebar-prev> move the Sidebar ++ highlight. ++ They do not change the open ++ mailbox. ++ ++ ++ Press Ctrl-Shift-O ++ (<sidebar-open>) ++ to open the highlighted mailbox. ++ ++ ++Fruit [1] 3/8| 1 ! Mar 07 Finley Jones (139) Molucca Sea ++Animals [1] 2/6| 2 + Mar 24 Summer Jackson ( 25) Arafura Sea ++Cars 4| 3 + Feb 28 Imogen Baker (193) Pechora Sea ++Seas 1/7| 4 N + Feb 23 Isla Hussain (348) Balearic Sea ++ | ++ | ++ | ++ | ++ | ++ | ++ ++ ++ ++ Features ++ ++ The Sidebar shows a list of mailboxes in a panel. ++ ++ ++ Everything about the Sidebar can be configured. ++ ++ ++ <link linkend="intro-sidebar-basics">State of the Sidebar</link> ++ Visibility ++ Width ++ ++ ++ <link linkend="intro-sidebar-limit">Which mailboxes are displayed</link> ++ Display all ++ Limit to mailboxes with new mail ++ Whitelist mailboxes to display always ++ ++ ++ <link linkend="sidebar-sort">The order in which mailboxes are displayed</link> ++ ++ Unsorted (order of mailboxes commands) ++ Sorted alphabetically ++ Sorted by number of new mails ++ ++ ++ <link linkend="intro-sidebar-colors">Color</link> ++ Sidebar indicators and divider ++ Mailboxes depending on their type ++ Mailboxes depending on their contents ++ ++ ++ <link linkend="sidebar-functions">Key bindings</link> ++ Hide/Unhide the Sidebar ++ Select previous/next mailbox ++ Select previous/next mailbox with new mail ++ Page up/down through a list of mailboxes ++ ++ ++ Misc ++ Formatting string for mailbox ++ Wraparound searching ++ Flexible mailbox abbreviations ++ Support for Unicode mailbox names (utf-8) ++ ++ ++ ++ Display ++ ++ Everything about the Sidebar can be configured. ++ ++ ++ For a quick reference: ++ Sidebar variables to set ++ Sidebar colors to apply ++ Sidebar sort methods ++ ++ ++ Sidebar Basics ++ ++ The most important variable is $sidebar_visible. ++ You can set this in your muttrc, or bind a key to the ++ function <sidebar-toggle-visible>. ++ ++ ++set sidebar_visible # Make the Sidebar visible by default ++bind index,pager B sidebar-toggle-visible # Use 'B' to switch the Sidebar on and off ++ ++ ++ Next, decide how wide you want the Sidebar to be. 25 ++ characters might be enough for the mailbox name and some numbers. ++ Remember, you can hide/show the Sidebar at the press of button. ++ ++ ++ Finally, you might want to change the divider character. ++ By default, Sidebar draws an ASCII line between it and the Index panel ++ If your terminal supports it, you can use a Unicode line-drawing character. ++ ++ ++set sidebar_width = 25 # Plenty of space ++set sidebar_divider_char = '│' # Pretty line-drawing character ++ ++ ++ ++ Sidebar Format String ++ ++ $sidebar_format allows you to customize the Sidebar display. ++ For an introduction, read format strings ++ including the section about conditionals. ++ ++ ++ The default value is %B%?F? [%F]?%* %?N?%N/?%S ++ ++ ++ Which breaks down as: ++ %B - Mailbox name ++ %?F? [%F]? - If flagged emails [%F], otherwise nothing ++ %* - Pad with spaces ++ %?N?%N/? - If new emails %N/, otherwise nothing ++ %S - Total number of emails ++ ++ ++ sidebar_format ++ ++ ++ ++ Format ++ Notes ++ Description ++ ++ ++ ++ ++ %B ++ ++ Name of the mailbox ++ ++ ++ %S ++ * ++ Size of mailbox (total number of messages) ++ ++ ++ %N ++ * ++ Number of New messages in the mailbox ++ ++ ++ %F ++ * ++ Number of Flagged messages in the mailbox ++ ++ ++ %! ++ ++ ++ !: one flagged message; ++ !!: two flagged messages; ++ n!: n flagged messages (for n > 2). ++ Otherwise prints nothing. ++ ++ ++ ++ %d ++ * ‡ ++ Number of deleted messages ++ ++ ++ %L ++ * ‡ ++ Number of messages after limiting ++ ++ ++ %t ++ * ‡ ++ Number of tagged messages ++ ++ ++ %>X ++ ++ Right justify the rest of the string and pad with X ++ ++ ++ %|X ++ ++ Pad to the end of the line with ++ X ++ ++ ++ %*X ++ ++ Soft-fill with character Xas pad ++ ++ ++ ++
++ ++ * = Can be optionally printed if nonzero ++ ++ ++ ‡ = Only applicable to the current folder ++ ++ ++ Here are some examples. ++ They show the number of (F)lagged, (N)ew and (S)ize. ++ ++ ++ sidebar_format ++ ++ ++ ++ Format ++ Example ++ ++ ++ ++ ++ %B%?F? [%F]?%* %?N?%N/?%S ++ mailbox [F] N/S ++ ++ ++ %B%* %F:%N:%S ++ mailbox F:N:S ++ ++ ++ %B %?N?(%N)?%* %S ++ mailbox (N) S ++ ++ ++ %B%* ?F?%F/?%N ++ mailbox F/S ++ ++ ++ ++
++
++ ++ Abbreviating Mailbox Names ++ ++ $sidebar_delim_chars tells Sidebar ++ how to split up mailbox paths. For local directories ++ use /; for IMAP folders use . ++ ++ ++ Example 1 ++ ++ This example works well if your mailboxes have unique names ++ after the last separator. ++ ++ ++ Add some mailboxes of diffent depths. ++ ++ ++set folder="~/mail" ++mailboxes =fruit/apple =fruit/banana =fruit/cherry ++mailboxes =water/sea/sicily =water/sea/archipelago =water/sea/sibuyan ++mailboxes =water/ocean/atlantic =water/ocean/pacific =water/ocean/arctic ++ ++ ++ Shorten the names: ++ ++ ++set sidebar_short_path # Shorten mailbox names ++set sidebar_delim_chars="/" # Delete everything up to the last / character ++ ++ ++ The screenshot below shows what the Sidebar would look like ++ before and after shortening. ++ ++ ++|fruit/apple |apple ++|fruit/banana |banana ++|fruit/cherry |cherry ++|water/sea/sicily |sicily ++|water/sea/archipelago |archipelago ++|water/sea/sibuyan |sibuyan ++|water/ocean/atlantic |atlantic ++|water/ocean/pacific |pacific ++|water/ocean/arctic |arctic ++ ++ ++ ++ Example 2 ++ ++ This example works well if you have lots of mailboxes which are arranged ++ in a tree. ++ ++ ++ Add some mailboxes of diffent depths. ++ ++ ++set folder="~/mail" ++mailboxes =fruit ++mailboxes =fruit/apple =fruit/banana =fruit/cherry ++mailboxes =water ++mailboxes =water/sea ++mailboxes =water/sea/sicily =water/sea/archipelago =water/sea/sibuyan ++mailboxes =water/ocean ++mailboxes =water/ocean/atlantic =water/ocean/pacific =water/ocean/arctic ++ ++ ++ Shorten the names: ++ ++ ++set sidebar_short_path # Shorten mailbox names ++set sidebar_delim_chars="/" # Delete everything up to the last / character ++set sidebar_folder_indent # Indent folders whose names we've shortened ++set sidebar_indent_string=" " # Indent with two spaces ++ ++ ++ The screenshot below shows what the Sidebar would look like ++ before and after shortening. ++ ++ ++|fruit |fruit ++|fruit/apple | apple ++|fruit/banana | banana ++|fruit/cherry | cherry ++|water |water ++|water/sea | sea ++|water/sea/sicily | sicily ++|water/sea/archipelago | archipelago ++|water/sea/sibuyan | sibuyan ++|water/ocean | ocean ++|water/ocean/atlantic | atlantic ++|water/ocean/pacific | pacific ++|water/ocean/arctic | arctic ++ ++ ++ Sometimes, it will be necessary to add mailboxes, that you ++ don't use, to fill in part of the tree. This will trade ++ vertical space for horizonal space (but it looks good). ++ ++ ++ ++ ++ Limiting the Number of Mailboxes ++ ++ If you have a lot of mailboxes, sometimes it can be useful to hide ++ the ones you aren't using. $sidebar_new_mail_only ++ tells Sidebar to only show mailboxes that contain new, or flagged, email. ++ ++ ++ If you want some mailboxes to be always visible, then use the ++ sidebar_whitelist command. It takes a list of ++ mailboxes as parameters. ++ ++ ++set sidebar_new_mail_only # Only mailboxes with new/flagged email ++sidebar_whitelist fruit fruit/apple # Always display these two mailboxes ++ ++ ++
++ ++ Colors ++ ++ Here is a sample color scheme: ++ ++ ++color sidebar_indicator default color17 # Dark blue background ++color sidebar_highlight white color238 # Grey background ++color sidebar_spoolfile yellow default # Yellow ++color sidebar_new green default # Green ++color sidebar_flagged red default # Red ++color sidebar_divider color8 default # Dark grey ++ ++ ++ There is a priority order when coloring Sidebar mailboxes. ++ e.g. If a mailbox has new mail it will have the ++ sidebar_new color, even if it also contains ++ flagged mails. ++ ++ ++ Sidebar Color Priority ++ ++ ++ ++ Priority ++ Color ++ Description ++ ++ ++ ++ ++ Highest ++ sidebar_indicator ++ Mailbox is open ++ ++ ++ ++ sidebar_highlight ++ Mailbox is highlighed ++ ++ ++ ++ sidebar_spoolfile ++ Mailbox is the spoolfile (receives incoming mail) ++ ++ ++ ++ sidebar_new ++ Mailbox contains new mail ++ ++ ++ ++ sidebar_flagged ++ Mailbox contains flagged mail ++ ++ ++ Lowest ++ (None) ++ Mailbox does not match above ++ ++ ++ ++
++
++ ++ Bug-fixes ++ ++ If you haven't used Sidebar before, you can ignore this section. ++ ++ ++ These bugs have been fixed since the previous Sidebar release: 2015-11-11. ++ ++ ++ Fix bug when starting in compose mode ++ Fix bug with empty sidebar_divider_char string ++ Fix bug with header wrapping ++ Correctly handle utf8 character sequences ++ Fix a bug in mh_buffy_update ++ Fix refresh -- time overflowed short ++ Protect against empty format strings ++ Limit Sidebar width to COLS ++ Handle unmailboxes * safely ++ Refresh Sidebar after timeout ++ ++ ++ ++ Config Changes ++ ++ If you haven't used Sidebar before, you can ignore this section. ++ ++ ++ Some of the Sidebar config has been changed to make its meaning clearer. ++ These changes have been made since the previous Sidebar release: 2015-11-11. ++ ++ ++ Config Changes ++ ++ ++ ++ Old Name ++ New Name ++ ++ ++ ++ ++ $sidebar_delim ++ $sidebar_divider_char ++ ++ ++ $sidebar_folderindent ++ $sidebar_folder_indent ++ ++ ++ $sidebar_indentstr ++ $sidebar_indent_string ++ ++ ++ $sidebar_newmail_only ++ $sidebar_new_mail_only ++ ++ ++ $sidebar_refresh ++ $sidebar_refresh_time ++ ++ ++ $sidebar_shortpath ++ $sidebar_short_path ++ ++ ++ $sidebar_sort ++ $sidebar_sort_method ++ ++ ++ <sidebar-scroll-down> ++ <sidebar-page-down> ++ ++ ++ <sidebar-scroll-up> ++ <sidebar-page-up> ++ ++ ++ ++
++
++
++ + + Help + +@@ -6773,6 +7390,17 @@ + + + ++Mutt will set the COLUMNS environment variable to ++the width of the pager. Some programs make use of this environment ++variable automatically. Others provide a command line argument that ++can use this to set the output width: ++ ++ ++ ++text/html; lynx -dump -width ${COLUMNS:-80} %s; copiousoutput ++ ++ ++ + Note that when using the built-in pager, only + entries with this flag will be considered a handler for a MIME type + — all other entries will be ignored. +@@ -7467,6 +8095,16 @@ + + + ++ ++Mutt Patches ++ ++Mutt may also be patched to support smaller features. ++These patches should add a free-form string to the end Mutt's version string. ++Running mutt -v might show: ++patch-1.6.1.sidebar.20160502 ++ ++ ++ + + URL Syntax + +@@ -8081,6 +8719,469 @@ + + + ++ ++ Sidebar Patch ++ Overview of mailboxes ++ ++ ++ Patch ++ ++ ++ To check if Mutt supports Sidebar, look for ++ +USE_SIDEBAR in the mutt version. ++ See: . ++ ++ ++ ++ Dependencies: ++ mutt-1.6.1 ++ ++ ++ This patch is part of the NeoMutt Project. ++ ++ ++ ++ Introduction ++ ++ ++ The Sidebar shows a list of all your mailboxes. The list can be ++ turned on and off, it can be themed and the list style can be ++ configured. ++ ++ ++ ++ This part of the manual is a reference guide. ++ If you want a simple introduction with examples see the ++ Sidebar Howto. ++ If you just want to get started, you could use the sample ++ Sidebar muttrc. ++ ++ ++ ++ This version of Sidebar is based on Terry Chan's ++ 2015-11-11 release. ++ It contains many ++ new features, ++ lots of ++ bugfixes. ++ ++ ++ ++ ++ Variables ++ ++ ++ Sidebar Variables ++ ++ ++ ++ Name ++ Type ++ Default ++ ++ ++ ++ ++ sidebar_delim_chars ++ string ++ /. ++ ++ ++ sidebar_divider_char ++ string ++ | ++ ++ ++ sidebar_folder_indent ++ boolean ++ no ++ ++ ++ sidebar_format ++ string ++ %B%?F? [%F]?%* %?N?%N/?%S ++ ++ ++ sidebar_indent_string ++ string ++    (two spaces) ++ ++ ++ sidebar_new_mail_only ++ boolean ++ no ++ ++ ++ sidebar_next_new_wrap ++ boolean ++ no ++ ++ ++ sidebar_refresh_time ++ number ++ 60 ++ ++ ++ sidebar_short_path ++ boolean ++ no ++ ++ ++ sidebar_sort_method ++ enum ++ SORT_ORDER ++ ++ ++ sidebar_visible ++ boolean ++ no ++ ++ ++ sidebar_whitelist ++ list ++ (empty) ++ ++ ++ sidebar_width ++ number ++ 20 ++ ++ ++ ++
++
++ ++ ++ Functions ++ ++ ++ Sidebar adds the following functions to Mutt. ++ By default, none of them are bound to keys. ++ ++ ++ ++ Sidebar Functions ++ ++ ++ ++ Menus ++ Function ++ Description ++ ++ ++ ++ ++ index,pager ++ <sidebar-next> ++ Move the highlight to next mailbox ++ ++ ++ index,pager ++ <sidebar-next-new> ++ Move the highlight to next mailbox with new mail ++ ++ ++ index,pager ++ <sidebar-open> ++ Open highlighted mailbox ++ ++ ++ index,pager ++ <sidebar-page-down> ++ Scroll the Sidebar down 1 page ++ ++ ++ index,pager ++ <sidebar-page-up> ++ Scroll the Sidebar up 1 page ++ ++ ++ index,pager ++ <sidebar-prev> ++ Move the highlight to previous mailbox ++ ++ ++ index,pager ++ <sidebar-prev-new> ++ Move the highlight to previous mailbox with new mail ++ ++ ++ index,pager ++ <sidebar-toggle-visible> ++ Make the Sidebar (in)visible ++ ++ ++ ++
++
++ ++ ++ Commands ++ ++ sidebar_whitelist ++ ++ mailbox ++ ++ ++ mailbox ++ ++ ++ ++ ++ ++ Colors ++ ++ ++ Sidebar Colors ++ ++ ++ ++ Name ++ Default Color ++ Description ++ ++ ++ ++ ++ sidebar_divider ++ default ++ The dividing line between the Sidebar and the Index/Pager panels ++ ++ ++ sidebar_flagged ++ default ++ Mailboxes containing flagged mail ++ ++ ++ sidebar_highlight ++ underline ++ Cursor to select a mailbox ++ ++ ++ sidebar_indicator ++ mutt indicator ++ The mailbox open in the Index panel ++ ++ ++ sidebar_new ++ default ++ Mailboxes containing new mail ++ ++ ++ sidebar_spoolfile ++ default ++ Mailbox that receives incoming mail ++ ++ ++ ++
++ ++ If the sidebar_indicator color isn't set, then the default Mutt ++ indicator color will be used (the color used in the index panel). ++
++ ++ ++ Sort ++ ++ ++ Sidebar Sort ++ ++ ++ ++ Sort ++ Description ++ ++ ++ ++ ++ alpha ++ Alphabetically by path ++ ++ ++ count ++ Total number of messages ++ ++ ++ flagged ++ Number of flagged messages ++ ++ ++ name ++ Alphabetically by path ++ ++ ++ new ++ Number of new messages ++ ++ ++ path ++ Alphabetically by path ++ ++ ++ unsorted ++ Do not resort the paths ++ ++ ++ ++
++
++ ++ ++ Muttrc ++ ++# This is a complete list of sidebar-related configuration. ++ ++# -------------------------------------------------------------------------- ++# VARIABLES - shown with their default values ++# -------------------------------------------------------------------------- ++ ++# Should the Sidebar be shown? ++set sidebar_visible = no ++ ++# How wide should the Sidebar be in screen columns? ++# Note: Some characters, e.g. Chinese, take up two columns each. ++set sidebar_width = 20 ++ ++# Should the mailbox paths be abbreviated? ++set sidebar_short_path = no ++ ++# When abbreviating mailbox path names, use any of these characters as path ++# separators. Only the part after the last separators will be shown. ++# For file folders '/' is good. For IMAP folders, often '.' is useful. ++set sidebar_delim_chars = '/.' ++ ++# If the mailbox path is abbreviated, should it be indented? ++set sidebar_folder_indent = no ++ ++# Indent mailbox paths with this string. ++set sidebar_indent_string = ' ' ++ ++# Make the Sidebar only display mailboxes that contain new, or flagged, ++# mail. ++set sidebar_new_mail_only = no ++ ++# Any mailboxes that are whitelisted will always be visible, even if the ++# sidebar_new_mail_only option is enabled. ++sidebar_whitelist '/home/user/mailbox1' ++sidebar_whitelist '/home/user/mailbox2' ++ ++# When searching for mailboxes containing new mail, should the search wrap ++# around when it reaches the end of the list? ++set sidebar_next_new_wrap = no ++ ++# The character to use as the divider between the Sidebar and the other Mutt ++# panels. ++# Note: Only the first character of this string is used. ++set sidebar_divider_char = '|' ++ ++# Display the Sidebar mailboxes using this format string. ++set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S' ++ ++# Sidebar will not refresh its list of mailboxes any more frequently than ++# this number of seconds. This will help reduce disk/network traffic. ++set sidebar_refresh_time = 60 ++ ++# Sort the mailboxes in the Sidebar using this method: ++# count - total number of messages ++# flagged - number of flagged messages ++# new - number of new messages ++# path - mailbox path ++# unsorted - do not sort the mailboxes ++set sidebar_sort_method = 'unsorted' ++ ++# -------------------------------------------------------------------------- ++# FUNCTIONS - shown with an example mapping ++# -------------------------------------------------------------------------- ++ ++# Move the highlight to the previous mailbox ++bind index,pager \Cp sidebar-prev ++ ++# Move the highlight to the next mailbox ++bind index,pager \Cn sidebar-next ++ ++# Open the highlighted mailbox ++bind index,pager \Co sidebar-open ++ ++# Move the highlight to the previous page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager <F3> sidebar-page-up ++ ++# Move the highlight to the next page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager <F4> sidebar-page-down ++ ++# Move the highlight to the previous mailbox containing new, or flagged, ++# mail. ++bind index,pager <F5> sidebar-prev-new ++ ++# Move the highlight to the next mailbox containing new, or flagged, mail. ++bind index,pager <F6> sidebar-next-new ++ ++# Toggle the visibility of the Sidebar. ++bind index,pager B sidebar-toggle-visible ++ ++# -------------------------------------------------------------------------- ++# COLORS - some unpleasant examples are given ++# -------------------------------------------------------------------------- ++# Note: All color operations are of the form: ++# color OBJECT FOREGROUND BACKGROUND ++ ++# Color of the current, open, mailbox ++# Note: This is a general Mutt option which colors all selected items. ++color indicator cyan black ++ ++# Color of the highlighted, but not open, mailbox. ++color sidebar_highlight black color8 ++ ++# Color of the divider separating the Sidebar from Mutt panels ++color sidebar_divider color8 black ++ ++# Color to give mailboxes containing flagged mail ++color sidebar_flagged red black ++ ++# Color to give mailboxes containing new mail ++color sidebar_new green black ++ ++# -------------------------------------------------------------------------- ++ ++# vim: syntax=muttrc ++ ++ ++ ++ ++ See Also ++ ++ ++ Regular Expressions ++ Patterns ++ Color command ++ notmuch patch ++ ++ ++ ++ ++ Known Bugs ++ Unsorted isn't ++ ++ ++ ++ Credits ++ ++ Justin Hibbits jrh29@po.cwru.edu ++ Thomer M. Gil mutt@thomer.com ++ David Sterba dsterba@suse.cz ++ Evgeni Golov evgeni@debian.org ++ Fabian Groffen grobian@gentoo.org ++ Jason DeTiberus jdetiber@redhat.com ++ Stefan Assmann sassmann@kpanic.de ++ Steve Kemp steve@steve.org.uk ++ Terry Chan tchan@lunar-linux.org ++ Tyler Earnest tylere@rne.st ++ Richard Russon rich@flatcap.org ++ ++ ++
++ + + + +@@ -9237,6 +10338,17 @@ + + + ++sidebar_whitelist ++ ++item ++ ++ ++command ++ ++ ++ ++ ++ + source + + filename +diff -urN mutt-1.6.1/doc/mutt.css mutt-1.6.1-sidebar/doc/mutt.css +--- mutt-1.6.1/doc/mutt.css 2016-06-12 18:43:00.402447590 +0100 ++++ mutt-1.6.1-sidebar/doc/mutt.css 2016-06-12 18:43:03.811500752 +0100 +@@ -9,17 +9,24 @@ + div.table-contents table th, div.informaltable table th { + font-family:sans-serif; + background:#d0d0d0; +- font-weight:normal; ++ font-weight:bold; + vertical-align:top; + } +-div.cmdsynopsis { border-left:1px solid #707070; padding-left:5px; } ++div.cmdsynopsis { border-left:1px solid #707070; padding-left: 1em; } + li div.cmdsynopsis { border-left:none; padding-left:0px; } +-pre.screen, div.note { background:#f0f0f0; border:1px solid #c0c0c0; padding:5px; margin-left:2%; margin-right:2%; } ++li p { margin: 0; } ++pre.screen, div.note { border:1px solid #c0c0c0; margin-left:2%; margin-right:2%; } ++pre.screen { color: #ffffff; background:#000000; padding: 0.5em; } ++div.note { background:#ffff80; padding: 0.5em; } + div.example p.title { margin-left:2%; } + div.note h3 { font-size:small; font-style:italic; font-variant: small-caps; } + div.note h3:after { content: ":" } + div.note { margin-bottom: 5px; } +-.command { font-family: monospace; font-weight: normal; } ++div.literallayout, .command { font-family: monospace; font-weight: normal; } + .command strong { font-weight: normal; } + tr { vertical-align: top; } +-.comment { color:#707070; } ++.comment { color:#00c000; } ++code.literal { background: #f0f0f0; color: #000000; } ++span.indicator { background: #000060; color: #ffffff; } ++span.highlight { background: #404040; color: #ffffff; } ++span.reverse { background: #ffffff; color: #000000; } +diff -urN mutt-1.6.1/doc/muttrc.sidebar mutt-1.6.1-sidebar/doc/muttrc.sidebar +--- mutt-1.6.1/doc/muttrc.sidebar 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/doc/muttrc.sidebar 2016-06-12 18:43:03.812500768 +0100 +@@ -0,0 +1,116 @@ ++# This is a complete list of sidebar-related configuration. ++ ++# -------------------------------------------------------------------------- ++# VARIABLES - shown with their default values ++# -------------------------------------------------------------------------- ++ ++# Should the Sidebar be shown? ++set sidebar_visible = no ++ ++# How wide should the Sidebar be in screen columns? ++# Note: Some characters, e.g. Chinese, take up two columns each. ++set sidebar_width = 20 ++ ++# Should the mailbox paths be abbreviated? ++set sidebar_short_path = no ++ ++# When abbreviating mailbox path names, use any of these characters as path ++# separators. Only the part after the last separators will be shown. ++# For file folders '/' is good. For IMAP folders, often '.' is useful. ++set sidebar_delim_chars = '/.' ++ ++# If the mailbox path is abbreviated, should it be indented? ++set sidebar_folder_indent = no ++ ++# Indent mailbox paths with this string. ++set sidebar_indent_string = ' ' ++ ++# Make the Sidebar only display mailboxes that contain new, or flagged, ++# mail. ++set sidebar_new_mail_only = no ++ ++# Any mailboxes that are whitelisted will always be visible, even if the ++# sidebar_new_mail_only option is enabled. ++sidebar_whitelist '/home/user/mailbox1' ++sidebar_whitelist '/home/user/mailbox2' ++ ++# When searching for mailboxes containing new mail, should the search wrap ++# around when it reaches the end of the list? ++set sidebar_next_new_wrap = no ++ ++# The character to use as the divider between the Sidebar and the other Mutt ++# panels. ++# Note: Only the first character of this string is used. ++set sidebar_divider_char = '|' ++ ++# Display the Sidebar mailboxes using this format string. ++set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S' ++ ++# Sidebar will not refresh its list of mailboxes any more frequently than ++# this number of seconds. This will help reduce disk/network traffic. ++set sidebar_refresh_time = 60 ++ ++# Sort the mailboxes in the Sidebar using this method: ++# count - total number of messages ++# flagged - number of flagged messages ++# new - number of new messages ++# path - mailbox path ++# unsorted - do not sort the mailboxes ++set sidebar_sort_method = 'unsorted' ++ ++# -------------------------------------------------------------------------- ++# FUNCTIONS - shown with an example mapping ++# -------------------------------------------------------------------------- ++ ++# Move the highlight to the previous mailbox ++bind index,pager \Cp sidebar-prev ++ ++# Move the highlight to the next mailbox ++bind index,pager \Cn sidebar-next ++ ++# Open the highlighted mailbox ++bind index,pager \Co sidebar-open ++ ++# Move the highlight to the previous page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager sidebar-page-up ++ ++# Move the highlight to the next page ++# This is useful if you have a LOT of mailboxes. ++bind index,pager sidebar-page-down ++ ++# Move the highlight to the previous mailbox containing new, or flagged, ++# mail. ++bind index,pager sidebar-prev-new ++ ++# Move the highlight to the next mailbox containing new, or flagged, mail. ++bind index,pager sidebar-next-new ++ ++# Toggle the visibility of the Sidebar. ++bind index,pager B sidebar-toggle-visible ++ ++# -------------------------------------------------------------------------- ++# COLORS - some unpleasant examples are given ++# -------------------------------------------------------------------------- ++# Note: All color operations are of the form: ++# color OBJECT FOREGROUND BACKGROUND ++ ++# Color of the current, open, mailbox ++# Note: This is a general Mutt option which colors all selected items. ++color indicator cyan black ++ ++# Color of the highlighted, but not open, mailbox. ++color sidebar_highlight black color8 ++ ++# Color of the divider separating the Sidebar from Mutt panels ++color sidebar_divider color8 black ++ ++# Color to give mailboxes containing flagged mail ++color sidebar_flagged red black ++ ++# Color to give mailboxes containing new mail ++color sidebar_new green black ++ ++# -------------------------------------------------------------------------- ++ ++# vim: syntax=muttrc +diff -urN mutt-1.6.1/doc/vimrc.sidebar mutt-1.6.1-sidebar/doc/vimrc.sidebar +--- mutt-1.6.1/doc/vimrc.sidebar 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/doc/vimrc.sidebar 2016-06-12 18:43:03.813500783 +0100 +@@ -0,0 +1,35 @@ ++" Vim syntax file for the mutt sidebar patch ++ ++syntax keyword muttrcVarBool skipwhite contained sidebar_folder_indent nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_new_mail_only nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_next_new_wrap nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_short_path nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarBool skipwhite contained sidebar_visible nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++ ++syntax keyword muttrcVarNum skipwhite contained sidebar_refresh_time nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++syntax keyword muttrcVarNum skipwhite contained sidebar_width nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr ++ ++syntax keyword muttrcVarStr contained skipwhite sidebar_divider_char nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_delim_chars nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_format nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_indent_string nextgroup=muttrcVarEqualsIdxFmt ++syntax keyword muttrcVarStr contained skipwhite sidebar_sort_method nextgroup=muttrcVarEqualsIdxFmt ++ ++syntax keyword muttrcCommand sidebar_whitelist ++ ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++syntax match muttrcFunction contained "\" ++ ++syntax keyword muttrcColorField contained sidebar_divider ++syntax keyword muttrcColorField contained sidebar_flagged ++syntax keyword muttrcColorField contained sidebar_highlight ++syntax keyword muttrcColorField contained sidebar_indicator ++syntax keyword muttrcColorField contained sidebar_new ++ ++" vim: syntax=vim +diff -urN mutt-1.6.1/filter.c mutt-1.6.1-sidebar/filter.c +--- mutt-1.6.1/filter.c 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/filter.c 2016-06-12 18:43:03.835501127 +0100 +@@ -21,6 +21,7 @@ + #endif #include "mutt.h" - #include "mutt_curses.h" -+#include "mutt_menu.h" ++#include "mutt_curses.h" + + #include + #include +@@ -34,6 +35,7 @@ + int fdin, int fdout, int fderr) + { + int pin[2], pout[2], perr[2], thepid; ++ char columns[11]; + + if (in) + { +@@ -117,6 +119,9 @@ + close (fderr); + } + ++ snprintf (columns, sizeof (columns), "%d", COLS - SidebarWidth); ++ setenv ("COLUMNS", columns, 1); ++ + execl (EXECSHELL, "sh", "-c", cmd, NULL); + _exit (127); + } +diff -urN mutt-1.6.1/flags.c mutt-1.6.1-sidebar/flags.c +--- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/flags.c 2016-06-12 18:43:03.956503013 +0100 +@@ -25,6 +25,10 @@ #include "sort.h" #include "mx.h" -+#include "sidebar.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif ++ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) { -@@ -290,6 +292,7 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) + int changed = h->changed; +@@ -263,6 +267,9 @@ */ if (h->searched && (changed != h->changed || deleted != ctx->deleted || tagged != ctx->tagged || flagged != ctx->flagged)) h->searched = 0; -+ draw_sidebar(0); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif } void mutt_tag_set_flag (int flag, int bf) -diff --git a/functions.h b/functions.h -index 26171a0..ef8937a 100644 ---- a/functions.h -+++ b/functions.h -@@ -170,6 +170,11 @@ const struct binding_t OpMain[] = { /* map: index */ +diff -urN mutt-1.6.1/functions.h mutt-1.6.1-sidebar/functions.h +--- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/functions.h 2016-06-12 18:43:03.956503013 +0100 +@@ -168,6 +168,16 @@ + { "decrypt-copy", OP_DECRYPT_COPY, NULL }, { "decrypt-save", OP_DECRYPT_SAVE, NULL }, ++#ifdef USE_SIDEBAR ++ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, ++ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL }, ++ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, ++ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL }, ++ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL }, ++ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, ++ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL }, ++ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL }, ++#endif -+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL }, -+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, -+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, -+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, { NULL, 0, NULL } }; - -@@ -274,6 +279,11 @@ const struct binding_t OpPager[] = { /* map: pager */ +@@ -272,6 +282,17 @@ { "what-key", OP_WHAT_KEY, NULL }, -+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL }, -+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL }, -+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, -+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, ++#ifdef USE_SIDEBAR ++ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, ++ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL }, ++ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, ++ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL }, ++ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL }, ++ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, ++ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL }, ++ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL }, ++#endif ++ { NULL, 0, NULL } }; -diff --git a/globals.h b/globals.h -index 282fde3..004c795 100644 ---- a/globals.h -+++ b/globals.h -@@ -118,6 +118,7 @@ WHERE short SearchContext; +diff -urN mutt-1.6.1/globals.h mutt-1.6.1-sidebar/globals.h +--- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-sidebar/globals.h 2016-06-12 18:43:03.956503013 +0100 +@@ -118,6 +118,12 @@ WHERE char *SendCharset; WHERE char *Sendmail; WHERE char *Shell; -+WHERE char *SidebarDelim; ++#ifdef USE_SIDEBAR ++WHERE char *SidebarDelimChars; ++WHERE char *SidebarDividerChar; ++WHERE char *SidebarFormat; ++WHERE char *SidebarIndentString; ++#endif WHERE char *Signature; WHERE char *SimpleSearch; #if USE_SMTP -@@ -214,6 +215,9 @@ WHERE short ScoreThresholdDelete; +@@ -214,6 +220,14 @@ WHERE short ScoreThresholdRead; WHERE short ScoreThresholdFlag; -+WHERE struct buffy_t *CurBuffy INITVAL(0); -+WHERE short DrawFullLine INITVAL(0); ++/* This isn't excluded from the build because it's too entwined in the code. ++ * For now. */ +WHERE short SidebarWidth; ++#ifdef USE_SIDEBAR ++WHERE short SidebarRefreshTime; ++WHERE LIST *SidebarWhitelist INITVAL(0); ++#endif ++ #ifdef USE_IMAP WHERE short ImapKeepalive; WHERE short ImapPipelineDepth; -diff --git a/imap/command.c b/imap/command.c -index 32f8417..d68e3ab 100644 ---- a/imap/command.c -+++ b/imap/command.c -@@ -1012,6 +1012,13 @@ static void cmd_parse_status (IMAP_DATA* idata, char* s) +diff -urN mutt-1.6.1/imap/command.c mutt-1.6.1-sidebar/imap/command.c +--- mutt-1.6.1/imap/command.c 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-sidebar/imap/command.c 2016-06-12 18:43:03.839501189 +0100 +@@ -1016,6 +1016,14 @@ opened */ status->uidnext = oldun; -+ /* Added to make the sidebar show the correct numbers */ -+ if (status->messages) -+ { -+ inc->msgcount = status->messages; -+ inc->msg_unread = status->unseen; -+ } ++#ifdef USE_SIDEBAR ++ /* Make the sidebar show the correct numbers */ ++ if (status->messages) { ++ inc->msg_count = status->messages; ++ inc->msg_unread = status->unseen; ++ } ++#endif + FREE (&value); return; } -diff --git a/imap/imap.c b/imap/imap.c -index f476873..af3ac3d 100644 ---- a/imap/imap.c -+++ b/imap/imap.c -@@ -1529,7 +1529,7 @@ int imap_buffy_check (int force) +diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-sidebar/imap/imap.c +--- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-sidebar/imap/imap.c 2016-06-12 18:43:03.958503044 +0100 +@@ -1535,7 +1535,11 @@ - imap_munge_mbox_name (munged, sizeof (munged), name); + imap_munge_mbox_name (idata, munged, sizeof (munged), name); snprintf (command, sizeof (command), -- "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged); ++#ifdef USE_SIDEBAR + "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT MESSAGES)", munged); ++#else + "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged); ++#endif if (imap_exec (idata, command, IMAP_CMD_QUEUE) < 0) { -diff --git a/init.h b/init.h -index 35224c1..c664e5f 100644 ---- a/init.h -+++ b/init.h -@@ -2030,6 +2030,27 @@ struct option_t MuttVars[] = { - ** not used. - ** (PGP only) +diff -urN mutt-1.6.1/init.c mutt-1.6.1-sidebar/init.c +--- mutt-1.6.1/init.c 2016-06-12 18:43:00.406447652 +0100 ++++ mutt-1.6.1-sidebar/init.c 2016-06-12 18:43:03.959503060 +0100 +@@ -2173,6 +2173,9 @@ + case DT_SORT_AUX: + map = SortAuxMethods; + break; ++ case DT_SORT_SIDEBAR: ++ map = SortSidebarMethods; ++ break; + default: + map = SortMethods; + break; +diff -urN mutt-1.6.1/init.h mutt-1.6.1-sidebar/init.h +--- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-sidebar/init.h 2016-06-12 18:43:03.960503075 +0100 +@@ -42,11 +42,12 @@ + #define DTYPE(x) ((x) & DT_MASK) + + /* subtypes */ +-#define DT_SUBTYPE_MASK 0xf0 ++#define DT_SUBTYPE_MASK 0xff0 + #define DT_SORT_ALIAS 0x10 + #define DT_SORT_BROWSER 0x20 + #define DT_SORT_KEYS 0x40 + #define DT_SORT_AUX 0x80 ++#define DT_SORT_SIDEBAR 0x100 + + /* flags to parse_set() */ + #define M_SET_INV (1<<0) /* default is to invert all vars */ +@@ -2665,6 +2666,147 @@ + ** Command to use when spawning a subshell. By default, the user's login + ** shell from \fC/etc/passwd\fP is used. */ -+ {"sidebar_delim", DT_STR, R_BOTH, UL &SidebarDelim, "|"}, ++#ifdef USE_SIDEBAR ++ { "sidebar_divider_char", DT_STR, R_BOTH, UL &SidebarDividerChar, UL "|" }, + /* + ** .pp -+ ** This specifies the delimiter between the sidebar (if visible) and -+ ** other screens. ++ ** This specifies the characters to be drawn between the sidebar (when ++ ** visible) and the other Mutt panels. ASCII and Unicode line-drawing ++ ** characters are supported. ++ */ ++ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." }, ++ /* ++ ** .pp ++ ** This contains the list of characters which you would like to treat ++ ** as folder separators for displaying paths in the sidebar. ++ ** .pp ++ ** Local mail is often arranged in directories: `dir1/dir2/mailbox'. ++ ** .ts ++ ** set sidebar_delim_chars='/' ++ ** .te ++ ** .pp ++ ** IMAP mailboxes are often named: `folder1.folder2.mailbox'. ++ ** .ts ++ ** set sidebar_delim_chars='.' ++ ** .te ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_indent_string. ++ */ ++ { "sidebar_folder_indent", DT_BOOL, R_BOTH, OPTSIDEBARFOLDERINDENT, 0 }, ++ /* ++ ** .pp ++ ** Set this to indent mailboxes in the sidebar. ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_indent_string, $$sidebar_delim_chars. ++ */ ++ { "sidebar_format", DT_STR, R_NONE, UL &SidebarFormat, UL "%B%?F? [%F]?%* %?N?%N/?%S" }, ++ /* ++ ** .pp ++ ** This variable allows you to customize the sidebar display. This string is ++ ** similar to $$index_format, but has its own set of \fCprintf(3)\fP-like ++ ** sequences: ++ ** .dl ++ ** .dt %B .dd Name of the mailbox ++ ** .dt %S .dd * Size of mailbox (total number of messages) ++ ** .dt %N .dd * Number of New messages in the mailbox ++ ** .dt %F .dd * Number of Flagged messages in the mailbox ++ ** .dt %! .dd ``!'' : one flagged message; ++ ** ``!!'' : two flagged messages; ++ ** ``n!'' : n flagged messages (for n > 2). ++ ** Otherwise prints nothing. ++ ** .dt %d .dd * @ Number of deleted messages ++ ** .dt %L .dd * @ Number of messages after limiting ++ ** .dt %t .dd * @ Number of tagged messages ++ ** .dt %>X .dd right justify the rest of the string and pad with ``X'' ++ ** .dt %|X .dd pad to the end of the line with ``X'' ++ ** .dt %*X .dd soft-fill with character ``X'' as pad ++ ** .de ++ ** .pp ++ ** * = Can be optionally printed if nonzero ++ ** @ = Only applicable to the current folder ++ */ ++ { "sidebar_indent_string", DT_STR, R_BOTH, UL &SidebarIndentString, UL " " }, ++ /* ++ ** .pp ++ ** This specifies the string that is used to indent mailboxes in the sidebar. ++ ** It defaults to two spaces. ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_delim_chars. ++ */ ++ { "sidebar_new_mail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 }, ++ /* ++ ** .pp ++ ** When set, the sidebar will only display mailboxes containing new, or ++ ** flagged, mail. ++ ** .pp ++ ** \fBSee also:\fP $sidebar_whitelist. ++ */ ++ { "sidebar_next_new_wrap", DT_BOOL, R_BOTH, UL OPTSIDEBARNEXTNEWWRAP, 0 }, ++ /* ++ ** .pp ++ ** When set, the \fC\fP command will not stop and the end of ++ ** the list of mailboxes, but wrap around to the beginning. The ++ ** \fC\fP command is similarly affected, wrapping around to ++ ** the end of the list. ++ */ ++ { "sidebar_refresh_time", DT_NUM, R_BOTH, UL &SidebarRefreshTime, 60 }, ++ /* ++ ** .pp ++ ** Set sidebar_refresh_time to the minimum number of seconds between refreshes. ++ ** This will reduce network traffic. ++ ** .pp ++ ** \fBNote:\fP Set to 0 to disable refreshing. ++ */ ++ { "sidebar_short_path", DT_BOOL, R_BOTH, OPTSIDEBARSHORTPATH, 0 }, ++ /* ++ ** .pp ++ ** By default the sidebar will show the mailbox's path, relative to the ++ ** $$folder variable. Setting \fCsidebar_shortpath=yes\fP will shorten the ++ ** names relative to the previous name. Here's an example: ++ ** .dl ++ ** .dt \fBshortpath=no\fP .dd \fBshortpath=yes\fP .dd \fBshortpath=yes, folderindent=yes, indentstr=".."\fP ++ ** .dt \fCfruit\fP .dd \fCfruit\fP .dd \fCfruit\fP ++ ** .dt \fCfruit.apple\fP .dd \fCapple\fP .dd \fC..apple\fP ++ ** .dt \fCfruit.banana\fP .dd \fCbanana\fP .dd \fC..banana\fP ++ ** .dt \fCfruit.cherry\fP .dd \fCcherry\fP .dd \fC..cherry\fP ++ ** .de ++ ** .pp ++ ** \fBSee also:\fP $$sidebar_delim_chars, $$sidebar_folder_indent, $$sidebar_indent_string. ++ */ ++ { "sidebar_sort_method", DT_SORT|DT_SORT_SIDEBAR, R_NONE, UL &SidebarSortMethod, SORT_ORDER }, ++ /* ++ ** .pp ++ ** Specifies how to sort entries in the file browser. By default, the ++ ** entries are sorted alphabetically. Valid values: ++ ** .il ++ ** .dd alpha (alphabetically) ++ ** .dd count (all message count) ++ ** .dd date ++ ** .dd desc (description) ++ ** .dd new (new message count) ++ ** .dd size ++ ** .dd unsorted ++ ** .ie ++ ** .pp ++ ** You may optionally use the ``reverse-'' prefix to specify reverse sorting ++ ** order (example: ``\fCset sort_browser=reverse-date\fP''). + */ + { "sidebar_visible", DT_BOOL, R_BOTH, OPTSIDEBAR, 0 }, + /* + ** .pp -+ ** This specifies whether or not to show sidebar (left-side list of folders). -+ */ -+ { "sidebar_sort", DT_BOOL, R_BOTH, OPTSIDEBARSORT, 0 }, -+ /* ++ ** This specifies whether or not to show sidebar. The sidebar shows a list of ++ ** all your mailboxes. + ** .pp -+ ** This specifies whether or not to sort the sidebar alphabetically. ++ ** \fBSee also:\fP $$sidebar_format, $$sidebar_width + */ + { "sidebar_width", DT_NUM, R_BOTH, UL &SidebarWidth, 0 }, + /* + ** .pp -+ ** The width of the sidebar. ++ ** This controls the width of the sidebar. It is measured in screen columns. ++ ** For example: sidebar_width=20 could display 20 ASCII characters, or 10 ++ ** Chinese characters. + */ - { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0}, ++#endif + { "sig_dashes", DT_BOOL, R_NONE, OPTSIGDASHES, 1 }, /* ** .pp -diff --git a/mailbox.h b/mailbox.h -index 2b2c9a1..000503d 100644 ---- a/mailbox.h -+++ b/mailbox.h -@@ -27,6 +27,7 @@ +@@ -3652,6 +3794,19 @@ + { NULL, 0 } + }; + ++const struct mapping_t SortSidebarMethods[] = { ++ { "alpha", SORT_PATH }, ++ { "count", SORT_COUNT }, ++ { "desc", SORT_DESC }, ++ { "flagged", SORT_FLAGGED }, ++ { "mailbox-order", SORT_ORDER }, ++ { "name", SORT_PATH }, ++ { "new", SORT_COUNT_NEW }, ++ { "path", SORT_PATH }, ++ { "unsorted", SORT_ORDER }, ++ { NULL, 0 } ++}; ++ + + /* functions used to parse commands in a rc file */ + +@@ -3741,6 +3896,9 @@ + { "send-hook", mutt_parse_hook, M_SENDHOOK }, + { "send2-hook", mutt_parse_hook, M_SEND2HOOK }, + { "set", parse_set, 0 }, ++#ifdef USE_SIDEBAR ++ { "sidebar_whitelist",parse_list, UL &SidebarWhitelist }, ++#endif + { "source", parse_source, 0 }, + { "spam", parse_spam_list, M_SPAM }, + { "nospam", parse_spam_list, M_NOSPAM }, +diff -urN mutt-1.6.1/keymap.c mutt-1.6.1-sidebar/keymap.c +--- mutt-1.6.1/keymap.c 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-sidebar/keymap.c 2016-06-12 18:43:03.960503075 +0100 +@@ -453,6 +453,9 @@ + } + #endif + ++ /* update sidebar stats */ ++ mutt_buffy_check(0); ++ + timeout (i * 1000); + tmp = mutt_getch(); + timeout (-1); +diff -urN mutt-1.6.1/mailbox.h mutt-1.6.1-sidebar/mailbox.h +--- mutt-1.6.1/mailbox.h 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-sidebar/mailbox.h 2016-06-12 18:43:03.960503075 +0100 +@@ -27,6 +27,9 @@ #define M_NEWFOLDER (1<<4) /* create a new folder - same as M_APPEND, but uses * safe_fopen() for mbox-style folders. */ ++#ifdef USE_SIDEBAR +#define M_PEEK (1<<5) /* revert atime back after taking a look (if applicable) */ ++#endif /* mx_open_new_message() */ #define M_ADD_FROM (1<<0) /* add a From_ line */ -diff --git a/mbox.c b/mbox.c -index 6d3b6bd..fa82eb3 100644 ---- a/mbox.c -+++ b/mbox.c -@@ -104,6 +104,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx) +diff -urN mutt-1.6.1/main.c mutt-1.6.1-sidebar/main.c +--- mutt-1.6.1/main.c 2016-06-12 18:43:00.409447699 +0100 ++++ mutt-1.6.1-sidebar/main.c 2016-06-12 18:43:03.961503091 +0100 +@@ -31,6 +31,9 @@ + #include "url.h" + #include "mutt_crypt.h" + #include "mutt_idna.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + + #ifdef USE_SASL + #include "mutt_sasl.h" +@@ -485,6 +488,12 @@ + "-USE_HCACHE " + #endif + ++#ifdef USE_SIDEBAR ++ "+USE_SIDEBAR " ++#else ++ "-USE_SIDEBAR " ++#endif ++ + ); + + #ifdef ISPELL +@@ -557,7 +566,11 @@ + + int main (int argc, char **argv) + { ++#ifdef USE_SIDEBAR ++ char folder[PATH_MAX] = ""; ++#else + char folder[_POSIX_PATH_MAX] = ""; ++#endif + char *subject = NULL; + char *includeFile = NULL; + char *draftFile = NULL; +@@ -828,6 +841,9 @@ + clear (); + mutt_error = mutt_curses_error; + mutt_message = mutt_curses_message; ++#ifdef USE_SIDEBAR ++ mutt_sb_init(); ++#endif + } + + /* Create the Maildir directory if it doesn't exist. */ +@@ -1184,6 +1200,15 @@ + strfcpy (folder, NONULL(Spoolfile), sizeof (folder)); + mutt_expand_path (folder, sizeof (folder)); + ++#ifdef USE_SIDEBAR ++ { ++ char tmpfolder[PATH_MAX] = ""; ++ strfcpy (tmpfolder, folder, sizeof (tmpfolder)); ++ if (!realpath (tmpfolder, folder)) ++ strfcpy (folder, tmpfolder, sizeof (tmpfolder)); ++ } ++#endif ++ + mutt_str_replace (&CurrentFolder, folder); + mutt_str_replace (&LastFolder, folder); + +@@ -1206,6 +1231,9 @@ + if((Context = mx_open_mailbox (folder, ((flags & M_RO) || option (OPTREADONLY)) ? M_READONLY : 0, NULL)) + || !explicit_folder) + { ++#ifdef USE_SIDEBAR ++ mutt_sb_set_open_buffy (folder); ++#endif + mutt_index_menu (); + if (Context) + FREE (&Context); +diff -urN mutt-1.6.1/Makefile.am mutt-1.6.1-sidebar/Makefile.am +--- mutt-1.6.1/Makefile.am 2016-06-12 18:43:00.389447388 +0100 ++++ mutt-1.6.1-sidebar/Makefile.am 2016-06-12 18:43:03.944502826 +0100 +@@ -56,7 +56,7 @@ + mutt_idna.c mutt_sasl.c mutt_socket.c mutt_ssl.c mutt_ssl_gnutls.c \ + mutt_tunnel.c pgp.c pgpinvoke.c pgpkey.c pgplib.c pgpmicalg.c \ + pgppacket.c pop.c pop_auth.c pop_lib.c remailer.c resize.c sha1.c \ +- smime.c smtp.c utf8.c wcwidth.c \ ++ sidebar.c smime.c smtp.c utf8.c wcwidth.c \ + bcache.h browser.h hcache.h mbyte.h mutt_idna.h remailer.h url.h + + EXTRA_DIST = COPYRIGHT GPL OPS OPS.PGP OPS.CRYPT OPS.SMIME TODO UPDATING \ +@@ -71,7 +71,7 @@ + mbyte.h lib.h extlib.c pgpewrap.c smime_keys.pl pgplib.h \ + README.SSL smime.h group.h \ + muttbug pgppacket.h depcomp ascii.h BEWARE PATCHES patchlist.sh \ +- ChangeLog mkchangelog.sh mutt_idna.h \ ++ ChangeLog mkchangelog.sh mutt_idna.h sidebar.h OPS.sidebar \ + snprintf.c regex.c crypt-gpgme.h hcachever.sh.in sys_socket.h \ + txt2c.c txt2c.sh version.sh check_sec.sh + +@@ -129,9 +129,9 @@ + keymap_defs.h: $(OPS) $(srcdir)/gen_defs + $(srcdir)/gen_defs $(OPS) > keymap_defs.h + +-keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs ++keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs + rm -f $@ +- $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.PGP \ ++ $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP \ + $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME \ + > keymap_alldefs.h + +diff -urN mutt-1.6.1/mbox.c mutt-1.6.1-sidebar/mbox.c +--- mutt-1.6.1/mbox.c 2016-06-12 18:43:00.409447699 +0100 ++++ mutt-1.6.1-sidebar/mbox.c 2016-06-12 18:43:03.961503091 +0100 +@@ -100,6 +100,9 @@ mutt_perror (ctx->path); return (-1); } ++#ifdef USE_SIDEBAR + ctx->atime = sb.st_atime; ++#endif ctx->mtime = sb.st_mtime; ctx->size = sb.st_size; -@@ -255,6 +256,7 @@ int mbox_parse_mailbox (CONTEXT *ctx) +@@ -251,6 +254,9 @@ ctx->size = sb.st_size; ctx->mtime = sb.st_mtime; ++#ifdef USE_SIDEBAR + ctx->atime = sb.st_atime; ++#endif #ifdef NFS_ATTRIBUTE_HACK if (sb.st_mtime > sb.st_atime) -diff --git a/menu.c b/menu.c -index 27b5f8e..bc3a02f 100644 ---- a/menu.c -+++ b/menu.c -@@ -24,6 +24,7 @@ +diff -urN mutt-1.6.1/menu.c mutt-1.6.1-sidebar/menu.c +--- mutt-1.6.1/menu.c 2016-06-12 18:43:00.409447699 +0100 ++++ mutt-1.6.1-sidebar/menu.c 2016-06-12 18:43:03.961503091 +0100 +@@ -24,6 +24,9 @@ #include "mutt_curses.h" #include "mutt_menu.h" #include "mbyte.h" ++#ifdef USE_SIDEBAR +#include "sidebar.h" ++#endif - extern size_t UngetCount; + char* SearchBuffers[MENU_MAX]; -@@ -186,7 +187,7 @@ static void menu_pad_string (char *s, size_t n) +@@ -184,7 +187,7 @@ { char *scratch = safe_strdup (s); int shift = option (OPTARROWCURSOR) ? 3 : 0; @@ -702,15 +2575,17 @@ index 27b5f8e..bc3a02f 100644 mutt_format_string (s, n, cols, cols, FMT_LEFT, ' ', scratch, mutt_strlen (scratch), 1); s[n - 1] = 0; -@@ -239,6 +240,7 @@ void menu_redraw_index (MUTTMENU *menu) +@@ -237,6 +240,9 @@ int do_color; int attr; -+ draw_sidebar(1); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif for (i = menu->top; i < menu->top + menu->pagelen; i++) { if (i < menu->max) -@@ -249,7 +251,7 @@ void menu_redraw_index (MUTTMENU *menu) +@@ -247,7 +253,7 @@ menu_pad_string (buf, sizeof (buf)); ATTRSET(attr); @@ -719,16 +2594,19 @@ index 27b5f8e..bc3a02f 100644 do_color = 1; if (i == menu->current) -@@ -272,7 +274,7 @@ void menu_redraw_index (MUTTMENU *menu) +@@ -270,7 +276,11 @@ else { NORMAL_COLOR; -- CLEARLINE(i - menu->top + menu->offset); ++#ifdef USE_SIDEBAR + CLEARLINE_WIN(i - menu->top + menu->offset); ++#else + CLEARLINE(i - menu->top + menu->offset); ++#endif } } NORMAL_COLOR; -@@ -289,7 +291,7 @@ void menu_redraw_motion (MUTTMENU *menu) +@@ -287,7 +297,7 @@ return; } @@ -737,7 +2615,7 @@ index 27b5f8e..bc3a02f 100644 ATTRSET(menu->color (menu->oldcurrent)); if (option (OPTARROWCURSOR)) -@@ -301,13 +303,13 @@ void menu_redraw_motion (MUTTMENU *menu) +@@ -299,13 +309,13 @@ { menu_make_entry (buf, sizeof (buf), menu, menu->oldcurrent); menu_pad_string (buf, sizeof (buf)); @@ -753,7 +2631,7 @@ index 27b5f8e..bc3a02f 100644 } else { -@@ -320,7 +322,7 @@ void menu_redraw_motion (MUTTMENU *menu) +@@ -318,7 +328,7 @@ menu_make_entry (buf, sizeof (buf), menu, menu->current); menu_pad_string (buf, sizeof (buf)); SETCOLOR(MT_COLOR_INDICATOR); @@ -762,7 +2640,7 @@ index 27b5f8e..bc3a02f 100644 print_enriched_string (menu->color(menu->current), (unsigned char *) buf, 0); } menu->redraw &= REDRAW_STATUS; -@@ -332,7 +334,7 @@ void menu_redraw_current (MUTTMENU *menu) +@@ -330,7 +340,7 @@ char buf[LONG_STRING]; int attr = menu->color (menu->current); @@ -771,7 +2649,7 @@ index 27b5f8e..bc3a02f 100644 menu_make_entry (buf, sizeof (buf), menu, menu->current); menu_pad_string (buf, sizeof (buf)); -@@ -881,7 +883,7 @@ int mutt_menuLoop (MUTTMENU *menu) +@@ -873,7 +883,7 @@ if (option (OPTARROWCURSOR)) @@ -780,160 +2658,207 @@ index 27b5f8e..bc3a02f 100644 else if (option (OPTBRAILLEFRIENDLY)) move (menu->current - menu->top + menu->offset, 0); else -diff --git a/mh.c b/mh.c -index 63e12d2..4a84a99 100644 ---- a/mh.c -+++ b/mh.c -@@ -295,6 +295,28 @@ void mh_buffy(BUFFY *b) +diff -urN mutt-1.6.1/mh.c mutt-1.6.1-sidebar/mh.c +--- mutt-1.6.1/mh.c 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mh.c 2016-06-12 18:43:03.962503107 +0100 +@@ -295,6 +295,48 @@ mhs_free_sequences (&mhs); } -+void mh_buffy_update (const char *path, int *msgcount, int *msg_unread, int *msg_flagged) ++#ifdef USE_SIDEBAR ++/** ++ * mh_buffy_update - Update messages counts for an mh mailbox ++ * @mailbox: BUFFY representing a maildir mailbox ++ * ++ * Read through an mh mailbox and count messages. Save the number of new, ++ * flagged messages and a timestamp for now. ++ */ ++void ++mh_buffy_update (BUFFY *mailbox) +{ + int i; + struct mh_sequences mhs; -+ memset (&mhs, 0, sizeof (mhs)); + -+ if (mh_read_sequences (&mhs, path) < 0) ++ if (!mailbox) + return; + -+ msgcount = 0; -+ msg_unread = 0; -+ msg_flagged = 0; ++ if (!option (OPTSIDEBAR)) ++ return; ++ ++ memset (&mhs, 0, sizeof (mhs)); ++ ++ if (mh_read_sequences (&mhs, mailbox->path) < 0) ++ return; ++ ++ mailbox->msg_count = 0; ++ mailbox->msg_unread = 0; ++ mailbox->msg_flagged = 0; ++ + for (i = 0; i <= mhs.max; i++) -+ msgcount++; -+ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN) { -+ msg_unread++; ++ { ++ mailbox->msg_count++; ++ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN) ++ mailbox->msg_unread++; ++ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED) ++ mailbox->msg_flagged++; + } -+ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED) -+ msg_flagged++; + mhs_free_sequences (&mhs); ++ mailbox->sb_last_checked = time (NULL); +} ++#endif + static int mh_mkstemp (CONTEXT * dest, FILE ** fp, char **tgt) { int fd; -diff --git a/mutt.h b/mutt.h -index 01d47de..5f25406 100644 ---- a/mutt.h -+++ b/mutt.h -@@ -435,6 +435,8 @@ enum - OPTSAVEEMPTY, - OPTSAVENAME, - OPTSCORE, -+ OPTSIDEBAR, -+ OPTSIDEBARSORT, - OPTSIGDASHES, - OPTSIGONTOP, - OPTSORTRE, -@@ -880,6 +882,7 @@ typedef struct _context - { - char *path; - FILE *fp; -+ time_t atime; - time_t mtime; - off_t size; - off_t vsize; -@@ -920,6 +923,7 @@ typedef struct _context - unsigned int quiet : 1; /* inhibit status messages? */ - unsigned int collapsed : 1; /* are all threads collapsed? */ - unsigned int closing : 1; /* mailbox is being closed */ -+ unsigned int peekonly : 1; /* just taking a glance, revert atime */ - - /* driver hooks */ - void *data; /* driver specific data */ -diff --git a/mutt_curses.h b/mutt_curses.h -index f8bc47c..ef9884e 100644 ---- a/mutt_curses.h -+++ b/mutt_curses.h -@@ -64,6 +64,7 @@ +diff -urN mutt-1.6.1/mutt_curses.h mutt-1.6.1-sidebar/mutt_curses.h +--- mutt-1.6.1/mutt_curses.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mutt_curses.h 2016-06-12 18:43:03.962503107 +0100 +@@ -64,6 +64,9 @@ #undef lines #endif /* lines */ -+#define CLEARLINE_WIN(x) move(x,SidebarWidth), clrtoeol() ++#ifdef USE_SIDEBAR ++#define CLEARLINE_WIN(x) move (x,SidebarWidth), clrtoeol() ++#endif #define CLEARLINE(x) move(x,0), clrtoeol() #define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x) #define BEEP() do { if (option (OPTBEEP)) beep(); } while (0) -@@ -121,6 +122,8 @@ enum +@@ -124,6 +127,14 @@ MT_COLOR_UNDERLINE, MT_COLOR_INDEX, MT_COLOR_PROMPT, -+ MT_COLOR_NEW, ++#ifdef USE_SIDEBAR ++ MT_COLOR_DIVIDER, + MT_COLOR_FLAGGED, ++ MT_COLOR_HIGHLIGHT, ++ MT_COLOR_NEW, ++ MT_COLOR_SB_INDICATOR, ++ MT_COLOR_SB_SPOOLFILE, ++#endif MT_COLOR_MAX }; -diff --git a/muttlib.c b/muttlib.c -index c1d565f..039e7c3 100644 ---- a/muttlib.c -+++ b/muttlib.c -@@ -1279,6 +1279,8 @@ void mutt_FormatString (char *dest, /* output buffer */ +@@ -163,12 +174,16 @@ + + static inline int mutt_term_width(short wrap) + { ++ int cols = COLS; ++#ifdef USE_SIDEBAR ++ cols -= SidebarWidth; ++#endif + if (wrap < 0) +- return COLS > -wrap ? COLS + wrap : COLS; ++ return cols > -wrap ? cols + wrap : cols; + else if (wrap) +- return wrap < COLS ? wrap : COLS; ++ return wrap < cols ? wrap : cols; + else +- return COLS; ++ return cols; + } + + extern int *ColorQuote; +diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-sidebar/mutt.h +--- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mutt.h 2016-06-12 18:43:03.962503107 +0100 +@@ -428,6 +428,13 @@ + OPTSAVEEMPTY, + OPTSAVENAME, + OPTSCORE, ++#ifdef USE_SIDEBAR ++ OPTSIDEBAR, ++ OPTSIDEBARFOLDERINDENT, ++ OPTSIDEBARNEWMAILONLY, ++ OPTSIDEBARNEXTNEWWRAP, ++ OPTSIDEBARSHORTPATH, ++#endif + OPTSIGDASHES, + OPTSIGONTOP, + OPTSORTRE, +@@ -872,6 +879,9 @@ + { + char *path; + FILE *fp; ++#ifdef USE_SIDEBAR ++ time_t atime; ++#endif + time_t mtime; + off_t size; + off_t vsize; +@@ -906,6 +916,9 @@ + unsigned int quiet : 1; /* inhibit status messages? */ + unsigned int collapsed : 1; /* are all threads collapsed? */ + unsigned int closing : 1; /* mailbox is being closed */ ++#ifdef USE_SIDEBAR ++ unsigned int peekonly : 1; /* just taking a glance, revert atime */ ++#endif + + /* driver hooks */ + void *data; /* driver specific data */ +diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-sidebar/muttlib.c +--- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-sidebar/muttlib.c 2016-06-12 18:43:03.963503122 +0100 +@@ -1282,7 +1282,7 @@ pl = pw = 1; /* see if there's room to add content, else ignore */ -+ if ( DrawFullLine ) -+ { - if ((col < COLS && wlen < destlen) || soft) +- if ((col < COLS && wlen < destlen) || soft) ++ if ((col < (COLS - SidebarWidth) && (wlen < destlen)) || soft) { int pad; -@@ -1322,6 +1324,52 @@ void mutt_FormatString (char *dest, /* output buffer */ - col += wid; - src += pl; - } -+ } -+ else -+ { -+ if ((col < COLS-SidebarWidth && wlen < destlen) || soft) -+ { -+ int pad; -+ -+ /* get contents after padding */ -+ mutt_FormatString (buf, sizeof (buf), 0, src + pl, callback, data, flags); -+ len = mutt_strlen (buf); -+ wid = mutt_strwidth (buf); -+ -+ /* try to consume as many columns as we can, if we don't have -+ * memory for that, use as much memory as possible */ + +@@ -1293,7 +1293,7 @@ + + /* try to consume as many columns as we can, if we don't have + * memory for that, use as much memory as possible */ +- pad = (COLS - col - wid) / pw; + pad = (COLS - SidebarWidth - col - wid) / pw; -+ if (pad > 0 && wlen + (pad * pl) + len > destlen) -+ pad = ((signed)(destlen - wlen - len)) / pl; -+ if (pad > 0) -+ { -+ while (pad--) -+ { -+ memcpy (wptr, src, pl); -+ wptr += pl; -+ wlen += pl; -+ col += pw; -+ } -+ } -+ else if (soft && pad < 0) -+ { -+ /* \0-terminate dest for length computation in mutt_wstr_trunc() */ -+ *wptr = 0; -+ /* make sure right part is at most as wide as display */ -+ len = mutt_wstr_trunc (buf, destlen, COLS, &wid); -+ /* truncate left so that right part fits completely in */ -+ wlen = mutt_wstr_trunc (dest, destlen - len, col + pad, &col); -+ wptr = dest + wlen; -+ } -+ if (len + wlen > destlen) + if (pad > 0 && wlen + (pad * pl) + len > destlen) + pad = ((signed)(destlen - wlen - len)) / pl; + if (pad > 0) +@@ -1312,13 +1312,13 @@ + /* \0-terminate dest for length computation in mutt_wstr_trunc() */ + *wptr = 0; + /* make sure right part is at most as wide as display */ +- len = mutt_wstr_trunc (buf, destlen, COLS-offset, &wid); ++ len = mutt_wstr_trunc (buf, destlen, COLS - offset - SidebarWidth, &wid); + /* truncate left so that right part fits completely in */ + wlen = mutt_wstr_trunc (dest, destlen - len, col + pad*pw -offset, &col); + wptr = dest + wlen; + } + if (len + wlen > destlen) +- len = mutt_wstr_trunc (buf, destlen - wlen, COLS - col, NULL); + len = mutt_wstr_trunc (buf, destlen - wlen, COLS - SidebarWidth - col, NULL); -+ memcpy (wptr, buf, len); -+ wptr += len; -+ wlen += len; -+ col += wid; -+ src += pl; -+ } -+ } - break; /* skip rest of input */ - } - else if (ch == '|') -diff --git a/mx.c b/mx.c -index 0a1a80e..e80b8ff 100644 ---- a/mx.c -+++ b/mx.c -@@ -595,6 +595,7 @@ static int mx_open_mailbox_append (CONTEXT *ctx, int flags) + memcpy (wptr, buf, len); + wptr += len; + wlen += len; +diff -urN mutt-1.6.1/mutt_menu.h mutt-1.6.1-sidebar/mutt_menu.h +--- mutt-1.6.1/mutt_menu.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-sidebar/mutt_menu.h 2016-06-12 18:43:03.962503107 +0100 +@@ -34,6 +34,9 @@ + #define REDRAW_FULL (1<<5) + #define REDRAW_BODY (1<<6) + #define REDRAW_SIGWINCH (1<<7) ++#ifdef USE_SIDEBAR ++#define REDRAW_SIDEBAR (1<<8) ++#endif + + #define M_MODEFMT "-- Mutt: %s" + +diff -urN mutt-1.6.1/mx.c mutt-1.6.1-sidebar/mx.c +--- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-sidebar/mx.c 2016-06-12 18:43:03.963503122 +0100 +@@ -29,6 +29,9 @@ + #include "copy.h" + #include "keymap.h" + #include "url.h" ++#ifdef USE_SIDEBAR ++#include "sidebar.h" ++#endif + + #ifdef USE_IMAP + #include "imap.h" +@@ -580,6 +583,7 @@ * M_APPEND open mailbox for appending * M_READONLY open mailbox in read-only mode * M_QUIET only print error messages @@ -941,70 +2866,128 @@ index 0a1a80e..e80b8ff 100644 * ctx if non-null, context struct to use */ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx) -@@ -617,6 +618,8 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx) +@@ -602,6 +606,10 @@ ctx->quiet = 1; if (flags & M_READONLY) ctx->readonly = 1; ++#ifdef USE_SIDEBAR + if (flags & M_PEEK) + ctx->peekonly = 1; ++#endif if (flags & (M_APPEND|M_NEWFOLDER)) { -@@ -721,9 +724,21 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx) - void mx_fastclose_mailbox (CONTEXT *ctx) - { - int i; -+#ifndef BUFFY_SIZE -+ struct utimbuf ut; -+#endif - +@@ -705,8 +713,21 @@ if(!ctx) return; -+#ifndef BUFFY_SIZE + ++#ifdef USE_SIDEBAR + /* fix up the times so buffy won't get confused */ -+ if (ctx->peekonly && ctx->path && ctx->mtime > ctx->atime) -+ { -+ ut.actime = ctx->atime; ++ struct utimbuf ut; ++ if (ctx->peekonly && ctx->path && (ctx->mtime > ctx->atime)) { ++ ut.actime = ctx->atime; + ut.modtime = ctx->mtime; -+ utime (ctx->path, &ut); ++ utime (ctx->path, &ut); + } +#endif - ++ /* never announce that a mailbox we've just left has new mail. #3290 * XXX: really belongs in mx_close_mailbox, but this is a nice hook point */ -diff --git a/mx.h b/mx.h -index 2ef4ec7..4aabadf 100644 ---- a/mx.h -+++ b/mx.h -@@ -60,6 +60,7 @@ void mbox_reset_atime (CONTEXT *, struct stat *); ++#ifdef USE_SIDEBAR ++ if (!ctx->peekonly) ++#endif + mutt_buffy_setnotified(ctx->path); + + if (ctx->mx_close) +@@ -812,6 +833,12 @@ + if (!ctx->hdrs[i]->deleted && ctx->hdrs[i]->read + && !(ctx->hdrs[i]->flagged && option (OPTKEEPFLAGGED))) + read_msgs++; ++#ifdef USE_SIDEBAR ++ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->read) ++ ctx->unread--; ++ if (ctx->hdrs[i]->deleted && ctx->hdrs[i]->flagged) ++ ctx->flagged--; ++#endif + } + + if (read_msgs && quadoption (OPT_MOVE) != M_NO) +@@ -981,6 +1008,11 @@ + !mutt_is_spool(ctx->path) && !option (OPTSAVEEMPTY)) + mx_unlink_empty (ctx->path); + ++#ifdef USE_SIDEBAR ++ ctx->msgcount -= ctx->deleted; ++ mutt_sb_set_buffystats (ctx); ++#endif ++ + mx_fastclose_mailbox (ctx); + + return 0; +diff -urN mutt-1.6.1/mx.h mutt-1.6.1-sidebar/mx.h +--- mutt-1.6.1/mx.h 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-sidebar/mx.h 2016-06-12 18:43:03.963503122 +0100 +@@ -26,6 +26,7 @@ + #define _MX_H + + #include "mailbox.h" ++#include "buffy.h" + + /* supported mailbox formats */ + enum +@@ -57,6 +58,9 @@ int mh_read_dir (CONTEXT *, const char *); int mh_sync_mailbox (CONTEXT *, int *); int mh_check_mailbox (CONTEXT *, int *); -+void mh_buffy_update (const char *, int *, int *, int *); ++#ifdef USE_SIDEBAR ++void mh_buffy_update (BUFFY *mailbox); ++#endif int mh_check_empty (const char *); int maildir_read_dir (CONTEXT *); -diff --git a/pager.c b/pager.c -index c99f1e4..5cfcb75 100644 ---- a/pager.c -+++ b/pager.c -@@ -29,6 +29,7 @@ +diff -urN mutt-1.6.1/OPS.SIDEBAR mutt-1.6.1-sidebar/OPS.SIDEBAR +--- mutt-1.6.1/OPS.SIDEBAR 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/OPS.SIDEBAR 2016-06-12 18:43:03.944502826 +0100 +@@ -0,0 +1,8 @@ ++OP_SIDEBAR_NEXT "Move the highlight to next mailbox" ++OP_SIDEBAR_NEXT_NEW "Move the highlight to next mailbox with new mail" ++OP_SIDEBAR_OPEN "Open highlighted mailbox" ++OP_SIDEBAR_PAGE_DOWN "Scroll the Sidebar down 1 page" ++OP_SIDEBAR_PAGE_UP "Scroll the Sidebar up 1 page" ++OP_SIDEBAR_PREV "Move the highlight to previous mailbox" ++OP_SIDEBAR_PREV_NEW "Move the highlight to previous mailbox with new mail" ++OP_SIDEBAR_TOGGLE_VISIBLE "Make the Sidebar (in)visible" +diff -urN mutt-1.6.1/pager.c mutt-1.6.1-sidebar/pager.c +--- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100 ++++ mutt-1.6.1-sidebar/pager.c 2016-06-12 18:43:03.964503138 +0100 +@@ -29,6 +29,9 @@ #include "pager.h" #include "attach.h" #include "mbyte.h" ++#ifdef USE_SIDEBAR +#include "sidebar.h" ++#endif #include "mutt_crypt.h" -@@ -1095,6 +1096,7 @@ static int format_line (struct line_t **lineInfo, int n, unsigned char *buf, - wchar_t wc; - mbstate_t mbstate; - int wrap_cols = mutt_term_width ((flags & M_PAGER_NOWRAP) ? 0 : Wrap); -+ wrap_cols -= SidebarWidth; +@@ -1491,7 +1494,7 @@ + * a newline (grr!). + */ + #ifndef USE_SLANG_CURSES +- if (col < COLS) ++ if (col < (COLS - SidebarWidth)) + #endif + addch ('\n'); - if (check_attachment_marker ((char *)buf) == 0) - wrap_cols = COLS; -@@ -1746,7 +1748,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1573,6 +1576,7 @@ + + int bodyoffset = 1; /* offset of first line of real text */ + int statusoffset = 0; /* offset for the status bar */ ++ int statuswidth = COLS; + int helpoffset = LINES - 2; /* offset for the help bar. */ + int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */ + +@@ -1747,7 +1751,7 @@ if ((redraw & REDRAW_BODY) || topline != oldtopline) { do { @@ -1013,465 +2996,1455 @@ index c99f1e4..5cfcb75 100644 curline = oldtopline = topline; lines = 0; force_redraw = 0; -@@ -1759,6 +1761,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1760,6 +1764,9 @@ &QuoteList, &q_level, &force_redraw, &SearchRE) > 0) lines++; curline++; -+ move(lines + bodyoffset, SidebarWidth); ++#ifdef USE_SIDEBAR ++ move (lines + bodyoffset, SidebarWidth); ++#endif } last_offset = lineInfo[curline].offset; } while (force_redraw); -@@ -1771,6 +1774,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1772,6 +1779,9 @@ addch ('~'); addch ('\n'); lines++; -+ move(lines + bodyoffset, SidebarWidth); ++#ifdef USE_SIDEBAR ++ move (lines + bodyoffset, SidebarWidth); ++#endif } NORMAL_COLOR; -@@ -1794,22 +1798,22 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) +@@ -1789,29 +1799,49 @@ + hfi.ctx = Context; + hfi.pager_progress = pager_progress_str; + ++#ifdef USE_SIDEBAR ++ statuswidth = COLS; ++ if (option (OPTSTATUSONTOP) && (PagerIndexLines > 0)) ++ statuswidth -= SidebarWidth; ++#endif ++ + if (last_pos < sb.st_size - 1) + snprintf(pager_progress_str, sizeof(pager_progress_str), OFF_T_FMT "%%", (100 * last_offset / sb.st_size)); + else strfcpy(pager_progress_str, (topline == 0) ? "all" : "end", sizeof(pager_progress_str)); /* print out the pager status bar */ - move (statusoffset, 0); + move (statusoffset, SidebarWidth); SETCOLOR (MT_COLOR_STATUS); ++#ifdef USE_SIDEBAR ++ short sw = SidebarWidth; ++ if (option (OPTSTATUSONTOP) && PagerIndexLines > 0) { ++ CLEARLINE_WIN (statusoffset); ++ } else { ++ CLEARLINE (statusoffset); ++ /* Temporarily lie about the sidebar width */ ++ SidebarWidth = 0; ++ } ++#endif if (IsHeader (extra) || IsMsgAttach (extra)) { - size_t l1 = COLS * MB_LEN_MAX; -+ size_t l1 = (COLS-SidebarWidth) * MB_LEN_MAX; ++ size_t l1 = statuswidth * MB_LEN_MAX; size_t l2 = sizeof (buffer); hfi.hdr = (IsHeader (extra)) ? extra->hdr : extra->bdy->hdr; mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT); - mutt_paddstr (COLS, buffer); -+ mutt_paddstr (COLS-SidebarWidth, buffer); ++ mutt_paddstr (statuswidth, buffer); } else { char bn[STRING]; snprintf (bn, sizeof (bn), "%s (%s)", banner, pager_progress_str); - mutt_paddstr (COLS, bn); -+ mutt_paddstr (COLS-SidebarWidth, bn); ++ mutt_paddstr (statuswidth, bn); } ++#ifdef USE_SIDEBAR ++ if (!option (OPTSTATUSONTOP) || PagerIndexLines == 0) ++ SidebarWidth = sw; /* Restore the sidebar width */ ++#endif NORMAL_COLOR; if (option(OPTTSENABLED) && TSSupported) -@@ -1826,16 +1830,21 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) + { +@@ -1827,16 +1857,26 @@ /* redraw the pager_index indicator, because the * flags for this message might have changed. */ menu_redraw_current (index); -+ draw_sidebar(MENU_PAGER); ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif /* print out the index status bar */ menu_status_line (buffer, sizeof (buffer), index, NONULL(Status)); - move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), 0); -+ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), SidebarWidth); ++ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), ++ (option(OPTSTATUSONTOP) ? 0: SidebarWidth)); SETCOLOR (MT_COLOR_STATUS); - mutt_paddstr (COLS, buffer); -+ mutt_paddstr (COLS-SidebarWidth, buffer); ++ mutt_paddstr (COLS - (option(OPTSTATUSONTOP) ? 0 : SidebarWidth), buffer); NORMAL_COLOR; } ++#ifdef USE_SIDEBAR + /* if we're not using the index, update every time */ -+ if ( index == 0 ) -+ draw_sidebar(MENU_PAGER); ++ if (index == 0) ++ mutt_sb_draw(); ++#endif + redraw = 0; if (option(OPTBRAILLEFRIENDLY)) { -@@ -2776,6 +2785,13 @@ search_next: +@@ -2498,8 +2538,12 @@ + ch = 0; + } + +- if (option (OPTFORCEREDRAWPAGER)) ++ if (option (OPTFORCEREDRAWPAGER)) { + redraw = REDRAW_FULL; ++#ifdef USE_SIDEBAR ++ mutt_sb_draw(); ++#endif ++ } + unset_option (OPTFORCEREDRAWINDEX); + unset_option (OPTFORCEREDRAWPAGER); + break; +@@ -2777,6 +2821,22 @@ mutt_what_key (); break; -+ case OP_SIDEBAR_SCROLL_UP: -+ case OP_SIDEBAR_SCROLL_DOWN: ++#ifdef USE_SIDEBAR + case OP_SIDEBAR_NEXT: ++ case OP_SIDEBAR_NEXT_NEW: ++ case OP_SIDEBAR_PAGE_DOWN: ++ case OP_SIDEBAR_PAGE_UP: + case OP_SIDEBAR_PREV: -+ scroll_sidebar(ch, MENU_PAGER); -+ break; ++ case OP_SIDEBAR_PREV_NEW: ++ mutt_sb_change_mailbox (ch); ++ break; ++ ++ case OP_SIDEBAR_TOGGLE_VISIBLE: ++ toggle_option (OPTSIDEBAR); ++ redraw = REDRAW_FULL; ++ break; ++#endif + default: ch = -1; break; -diff --git a/sidebar.c b/sidebar.c -new file mode 100644 -index 0000000..6098c2a ---- /dev/null -+++ b/sidebar.c -@@ -0,0 +1,333 @@ -+/* -+ * Copyright (C) ????-2004 Justin Hibbits +diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-sidebar/PATCHES +--- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100 ++++ mutt-1.6.1-sidebar/PATCHES 2016-06-12 18:43:03.949502904 +0100 +@@ -0,0 +1 @@ ++patch-sidebar-neo-20160612 +diff -urN mutt-1.6.1/README.sidebar mutt-1.6.1-sidebar/README.sidebar +--- mutt-1.6.1/README.sidebar 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/README.sidebar 2016-06-12 18:43:03.792500456 +0100 +@@ -0,0 +1,145 @@ ++Sidebar Patch ++============= ++ ++ Overview of mailboxes ++ ++ NOTES: ++ ++ If you haven't used the sidebar before, you might like to read the ++ Sidebar Introduction: ++ ++ http://www.neomutt.org/sidebar-intro.html ++ ++ If you have used an older version of the Sidebar, please note that some ++ of the configuration has changed. ++ ++ http://www.neomutt.org/sidebar-intro.html#intro-sidebar-config-changes ++ ++Patch ++----- ++ ++ To check if Mutt supports "Sidebar", look for "+USE_SIDEBAR" in the mutt ++ version. ++ ++ Dependencies ++ * mutt-1.6.1 ++ ++Introduction ++------------ ++ ++ The Sidebar shows a list of all your mailboxes. The list can be turned on ++ and off, it can be themed and the list style can be configured. ++ ++ This part of the manual is a reference guide. If you want a simple ++ introduction with examples see the Sidebar Howto. If you just want to get ++ started, you could use the sample Sidebar muttrc. ++ ++ This version of Sidebar is based on Terry Chan's [2015-11-11 ++ release](http://www.lunar-linux.org/mutt-sidebar/). It contains many new ++ features, lots of bugfixes. ++ ++Variables ++--------- ++ ++ Sidebar Variables ++ ++ | Name | Type | Default | ++ |-------------------------|---------|-----------------------------| ++ | 'sidebar_delim_chars' | string | '/.' | ++ | 'sidebar_divider_char' | string | '|' | ++ | 'sidebar_folder_indent' | boolean | 'no' | ++ | 'sidebar_format' | string | '%B%?F? [%F]?%* %?N?%N/?%S' | ++ | 'sidebar_indent_string' | string | '  ' (two spaces) | ++ | 'sidebar_new_mail_only' | boolean | 'no' | ++ | 'sidebar_next_new_wrap' | boolean | 'no' | ++ | 'sidebar_refresh_time' | number | '60' | ++ | 'sidebar_short_path' | boolean | 'no' | ++ | 'sidebar_sort_method' | enum | 'SORT_ORDER' | ++ | 'sidebar_visible' | boolean | 'no' | ++ | 'sidebar_whitelist' | list | (empty) | ++ | 'sidebar_width' | number | '20' | ++ ++Functions ++--------- ++ ++ Sidebar Functions ++ ++ Sidebar adds the following functions to Mutt. By default, none of them are ++ bound to keys. ++ ++ | Menus | Function | Description | ++ |-------------|----------------------------|------------------------------------------------------| ++ | index,pager | '' | Move the highlight to next mailbox | ++ | index,pager | '' | Move the highlight to next mailbox with new mail | ++ | index,pager | '' | Open highlighted mailbox | ++ | index,pager | '' | Scroll the Sidebar down 1 page | ++ | index,pager | '' | Scroll the Sidebar up 1 page | ++ | index,pager | '' | Move the highlight to previous mailbox | ++ | index,pager | '' | Move the highlight to previous mailbox with new mail | ++ | index,pager | '' | Make the Sidebar (in)visible | ++ ++Commands ++-------- ++ ++ sidebar_whitelist mailbox [ mailbox... ] ++ ++Colors ++------ ++ ++ Sidebar Colors ++ ++ | Name | Default Color | Description | ++ |---------------------|------------------|------------------------------------------------------------------| ++ | 'sidebar_divider' | default | The dividing line between the Sidebar and the Index/Pager panels | ++ | 'sidebar_flagged' | default | Mailboxes containing flagged mail | ++ | 'sidebar_highlight' | underline | Cursor to select a mailbox | ++ | 'sidebar_indicator' | mutt 'indicator' | The mailbox open in the Index panel | ++ | 'sidebar_new' | default | Mailboxes containing new mail | ++ | 'sidebar_spoolfile' | default | Mailbox that receives incoming mail | ++ ++ If the sidebar_indicator color isn't set, then the default Mutt indicator ++ color will be used (the color used in the index panel). ++ ++Sort ++---- ++ ++ Sidebar Sort ++ ++ | Sort | Description | ++ |------------|----------------------------| ++ | 'alpha' | Alphabetically by path | ++ | 'count' | Total number of messages | ++ | 'flagged' | Number of flagged messages | ++ | 'name' | Alphabetically by path | ++ | 'new' | Number of new messages | ++ | 'path' | Alphabetically by path | ++ | 'unsorted' | Do not resort the paths | ++ ++See Also ++-------- ++ ++ * Regular Expressions ++ * Patterns ++ * Color command ++ * notmuch patch ++ ++Known Bugs ++---------- ++ ++ Unsorted isn't ++ ++Credits ++------- ++ ++ * Justin Hibbits ++ * Thomer M. Gil ++ * David Sterba ++ * Evgeni Golov ++ * Fabian Groffen ++ * Jason DeTiberus ++ * Stefan Assmann ++ * Steve Kemp ++ * Terry Chan ++ * Tyler Earnest ++ * Richard Russon ++ +diff -urN mutt-1.6.1/sidebar.c mutt-1.6.1-sidebar/sidebar.c +--- mutt-1.6.1/sidebar.c 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/sidebar.c 2016-06-14 18:46:00.000000000 +0100 +@@ -0,0 +1,1090 @@ ++/* Copyright (C) 2004 Justin Hibbits + * Copyright (C) 2004 Thomer M. Gil -+ * ++ * Copyright (C) 2015-2016 Richard Russon ++ * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. -+ * ++ * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. -+ * ++ * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. -+ */ -+ ++ */ + +#if HAVE_CONFIG_H +# include "config.h" +#endif + +#include "mutt.h" -+#include "mutt_menu.h" -+#include "mutt_curses.h" -+#include "sidebar.h" +#include "buffy.h" -+#include +#include "keymap.h" -+#include ++#include "mutt_curses.h" ++#include "mutt_menu.h" ++#include "sort.h" + -+/*BUFFY *CurBuffy = 0;*/ -+static BUFFY *TopBuffy = 0; -+static BUFFY *BottomBuffy = 0; -+static int known_lines = 0; ++/* Previous values for some sidebar config */ ++static short OldVisible; /* sidebar_visible */ ++static short OldWidth; /* sidebar_width */ ++static short PreviousSort; /* sidebar_sort_method */ ++static time_t LastRefresh; /* Time of last refresh */ + -+static int quick_log10(int n) ++/* Keep track of various BUFFYs */ ++static BUFFY *TopBuffy; /* First mailbox visible in sidebar */ ++static BUFFY *OpnBuffy; /* Current (open) mailbox */ ++static BUFFY *HilBuffy; /* Highlighted mailbox */ ++static BUFFY *BotBuffy; /* Last mailbox visible in sidebar */ ++static BUFFY *Outgoing; /* Last mailbox in the linked list */ ++ ++/** ++ * struct sidebar_entry - Info about folders in the sidebar ++ * ++ * Used in the mutt_FormatString callback ++ */ ++struct sidebar_entry +{ -+ char string[32]; -+ sprintf(string, "%d", n); -+ return strlen(string); ++ char box[STRING]; ++ BUFFY *buffy; ++}; ++ ++ ++/** ++ * find_next_new - Find the next folder that contains new mail ++ * @wrap: Wrap around to the beginning if the end is reached ++ * ++ * Search down the list of mail folders for one containing new mail. ++ * ++ * Returns: ++ * BUFFY*: Success ++ * NULL: Failure ++ */ ++static BUFFY *find_next_new (int wrap) ++{ ++ BUFFY *b = HilBuffy; ++ if (!b) ++ return NULL; ++ ++ do ++ { ++ b = b->next; ++ if (!b && wrap) ++ b = Incoming; ++ if (!b || (b == HilBuffy)) ++ break; ++ if (b->msg_unread > 0) ++ return b; ++ } while (b); ++ ++ return NULL; +} + -+void calc_boundaries (int menu) ++/** ++ * find_prev_new - Find the previous folder that contains new mail ++ * @wrap: Wrap around to the beginning if the end is reached ++ * ++ * Search up the list of mail folders for one containing new mail. ++ * ++ * Returns: ++ * BUFFY*: Success ++ * NULL: Failure ++ */ ++static BUFFY *find_prev_new (int wrap) +{ -+ BUFFY *tmp = Incoming; ++ BUFFY *b = HilBuffy; ++ if (!b) ++ return NULL; + -+ if ( known_lines != LINES ) { -+ TopBuffy = BottomBuffy = 0; -+ known_lines = LINES; -+ } -+ for ( ; tmp->next != 0; tmp = tmp->next ) -+ tmp->next->prev = tmp; ++ do ++ { ++ b = b->prev; ++ if (!b && wrap) ++ b = Outgoing; ++ if (!b || (b == HilBuffy)) ++ break; ++ if (b->msg_unread > 0) ++ return b; ++ } while (b); + -+ if ( TopBuffy == 0 && BottomBuffy == 0 ) -+ TopBuffy = Incoming; -+ if ( BottomBuffy == 0 ) { -+ int count = LINES - 2 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); -+ BottomBuffy = TopBuffy; -+ while ( --count && BottomBuffy->next ) -+ BottomBuffy = BottomBuffy->next; -+ } -+ else if ( TopBuffy == CurBuffy->next ) { -+ int count = LINES - 2 - (menu != MENU_PAGER); -+ BottomBuffy = CurBuffy; -+ tmp = BottomBuffy; -+ while ( --count && tmp->prev) -+ tmp = tmp->prev; -+ TopBuffy = tmp; -+ } -+ else if ( BottomBuffy == CurBuffy->prev ) { -+ int count = LINES - 2 - (menu != MENU_PAGER); -+ TopBuffy = CurBuffy; -+ tmp = TopBuffy; -+ while ( --count && tmp->next ) -+ tmp = tmp->next; -+ BottomBuffy = tmp; -+ } ++ return NULL; +} + -+char *make_sidebar_entry(char *box, int size, int new, int flagged) ++/** ++ * cb_format_str - Create the string to show in the sidebar ++ * @dest: Buffer in which to save string ++ * @destlen: Buffer length ++ * @col: Starting column, UNUSED ++ * @op: printf-like operator, e.g. 'B' ++ * @src: printf-like format string ++ * @prefix: Field formatting string, UNUSED ++ * @ifstring: If condition is met, display this string ++ * @elsestring: Otherwise, display this string ++ * @data: Pointer to our sidebar_entry ++ * @flags: Format flags, e.g. M_FORMAT_OPTIONAL ++ * ++ * cb_format_str is a callback function for mutt_FormatString. It understands ++ * five operators. '%B' : Mailbox name, '%F' : Number of flagged messages, ++ * '%N' : Number of new messages, '%S' : Size (total number of messages), ++ * '%!' : Icon denoting number of flagged messages. ++ * ++ * Returns: src (unchanged) ++ */ ++static const char *cb_format_str(char *dest, size_t destlen, size_t col, char op, ++ const char *src, const char *prefix, const char *ifstring, ++ const char *elsestring, unsigned long data, format_flag flags) +{ -+ static char *entry = 0; -+ char *c; -+ int i = 0; -+ int delim_len = strlen(SidebarDelim); ++ struct sidebar_entry *sbe = (struct sidebar_entry *) data; ++ unsigned int optional; ++ char fmt[STRING]; + -+ c = realloc(entry, SidebarWidth - delim_len + 2); -+ if ( c ) entry = c; -+ entry[SidebarWidth - delim_len + 1] = 0; -+ for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' ); -+ i = strlen(box); -+ strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) ); ++ if (!sbe || !dest) ++ return src; + -+ if (size == -1) -+ sprintf(entry + SidebarWidth - delim_len - 3, "?"); -+ else if ( new ) { -+ if (flagged > 0) { -+ sprintf( -+ entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged), -+ "% d(%d)[%d]", size, new, flagged); -+ } else { -+ sprintf( -+ entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new), -+ "% d(%d)", size, new); -+ } -+ } else if (flagged > 0) { -+ sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged); -+ } else { -+ sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size); -+ } -+ return entry; ++ dest[0] = 0; /* Just in case there's nothing to do */ ++ ++ BUFFY *b = sbe->buffy; ++ if (!b) ++ return src; ++ ++ int c = Context && (mutt_strcmp (Context->path, b->path) == 0); ++ ++ optional = flags & M_FORMAT_OPTIONAL; ++ ++ switch (op) ++ { ++ case 'B': ++ mutt_format_s (dest, destlen, prefix, sbe->box); ++ break; ++ ++ case 'd': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, c ? Context->deleted : 0); ++ } ++ else if ((c && Context->deleted == 0) || !c) ++ optional = 0; ++ break; ++ ++ case 'F': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, b->msg_flagged); ++ } ++ else if (b->msg_flagged == 0) ++ optional = 0; ++ break; ++ ++ case 'L': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, c ? Context->vcount : b->msg_count); ++ } ++ else if ((c && Context->vcount == b->msg_count) || !c) ++ optional = 0; ++ break; ++ ++ case 'N': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, b->msg_unread); ++ } ++ else if (b->msg_unread == 0) ++ optional = 0; ++ break; ++ ++ case 'S': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, b->msg_count); ++ } ++ else if (b->msg_count == 0) ++ optional = 0; ++ break; ++ ++ case 't': ++ if (!optional) ++ { ++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); ++ snprintf (dest, destlen, fmt, c ? Context->tagged : 0); ++ } ++ else if ((c && Context->tagged == 0) || !c) ++ optional = 0; ++ break; ++ ++ case '!': ++ if (b->msg_flagged == 0) ++ mutt_format_s (dest, destlen, prefix, ""); ++ else if (b->msg_flagged == 1) ++ mutt_format_s (dest, destlen, prefix, "!"); ++ else if (b->msg_flagged == 2) ++ mutt_format_s (dest, destlen, prefix, "!!"); ++ else ++ { ++ snprintf (fmt, sizeof (fmt), "%d!", b->msg_flagged); ++ mutt_format_s (dest, destlen, prefix, fmt); ++ } ++ break; ++ } ++ ++ if (optional) ++ mutt_FormatString (dest, destlen, col, ifstring, cb_format_str, (unsigned long) sbe, flags); ++ else if (flags & M_FORMAT_OPTIONAL) ++ mutt_FormatString (dest, destlen, col, elsestring, cb_format_str, (unsigned long) sbe, flags); ++ ++ /* We return the format string, unchanged */ ++ return src; +} + -+void set_curbuffy(char buf[LONG_STRING]) ++/** ++ * make_sidebar_entry - Turn mailbox data into a sidebar string ++ * @buf: Buffer in which to save string ++ * @buflen: Buffer length ++ * @width: Desired width in screen cells ++ * @box: Mailbox name ++ * @size: Size (total number of messages) ++ * @new: Number of new messages ++ * @flagged: Number of flagged messages ++ * ++ * Take all the relevant mailbox data and the desired screen width and then get ++ * mutt_FormatString to do the actual work. mutt_FormatString will callback to ++ * us using cb_format_str() for the sidebar specific formatting characters. ++ */ ++static void make_sidebar_entry (char *buf, unsigned int buflen, int width, char *box, ++ BUFFY *b) +{ -+ BUFFY* tmp = CurBuffy = Incoming; ++ struct sidebar_entry sbe; + -+ if (!Incoming) ++ if (!buf || !box || !b) + return; + -+ while(1) { -+ if(!strcmp(tmp->path, buf)) { -+ CurBuffy = tmp; -+ break; -+ } ++ sbe.buffy = b; ++ strfcpy (sbe.box, box, sizeof (sbe.box)); + -+ if(tmp->next) -+ tmp = tmp->next; -+ else -+ break; ++ /* Temporarily lie about the screen width */ ++ int oc = COLS; ++ COLS = width + SidebarWidth; ++ mutt_FormatString (buf, buflen, 0, NONULL(SidebarFormat), cb_format_str, (unsigned long) &sbe, 0); ++ COLS = oc; ++ ++ /* Force string to be exactly the right width */ ++ int w = mutt_strwidth (buf); ++ int s = strlen (buf); ++ width = MIN(buflen, width); ++ if (w < width) ++ { ++ /* Pad with spaces */ ++ memset (buf + s, ' ', width - w); ++ buf[s + width - w] = 0; ++ } ++ else if (w > width) ++ { ++ /* Truncate to fit */ ++ int len = mutt_wstr_trunc (buf, buflen, width, NULL); ++ buf[len] = 0; + } +} + -+int draw_sidebar(int menu) { ++/** ++ * cb_qsort_buffy - qsort callback to sort BUFFYs ++ * @a: First BUFFY to compare ++ * @b: Second BUFFY to compare ++ * ++ * Compare the paths of two BUFFYs taking the locale into account. ++ * ++ * Returns: ++ * -1: a precedes b ++ * 0: a and b are identical ++ * 1: b precedes a ++ */ ++static int cb_qsort_buffy (const void *a, const void *b) ++{ ++ const BUFFY *b1 = *(const BUFFY **) a; ++ const BUFFY *b2 = *(const BUFFY **) b; + -+ int lines = option(OPTHELP) ? 1 : 0; -+ BUFFY *tmp; -+#ifndef USE_SLANG_CURSES -+ attr_t attrs; -+#endif -+ short delim_len = strlen(SidebarDelim); -+ short color_pair; ++ /* Special case -- move hidden BUFFYs to the end */ ++ if (b1->is_hidden != b2->is_hidden) ++ { ++ if (b1->is_hidden) ++ return 1; ++ else ++ return -1; ++ } + -+ static bool initialized = false; -+ static int prev_show_value; -+ static short saveSidebarWidth; ++ int result = 0; + -+ /* initialize first time */ -+ if(!initialized) { -+ prev_show_value = option(OPTSIDEBAR); -+ saveSidebarWidth = SidebarWidth; -+ if(!option(OPTSIDEBAR)) SidebarWidth = 0; -+ initialized = true; -+ } ++ switch ((SidebarSortMethod & SORT_MASK)) ++ { ++ case SORT_COUNT: ++ result = (b2->msg_count - b1->msg_count); ++ break; ++ case SORT_COUNT_NEW: ++ result = (b2->msg_unread - b1->msg_unread); ++ break; ++ case SORT_FLAGGED: ++ result = (b2->msg_flagged - b1->msg_flagged); ++ break; ++ case SORT_PATH: ++ result = mutt_strcasecmp (b1->path, b2->path); ++ break; ++ } + -+ /* save or restore the value SidebarWidth */ -+ if(prev_show_value != option(OPTSIDEBAR)) { -+ if(prev_show_value && !option(OPTSIDEBAR)) { -+ saveSidebarWidth = SidebarWidth; -+ SidebarWidth = 0; -+ } else if(!prev_show_value && option(OPTSIDEBAR)) { -+ SidebarWidth = saveSidebarWidth; -+ } -+ prev_show_value = option(OPTSIDEBAR); -+ } ++ if (SidebarSortMethod & SORT_REVERSE) ++ result = -result; + ++ return result; ++} + -+// if ( SidebarWidth == 0 ) return 0; -+ if (SidebarWidth > 0 && option (OPTSIDEBAR) -+ && delim_len >= SidebarWidth) { -+ unset_option (OPTSIDEBAR); -+ /* saveSidebarWidth = SidebarWidth; */ -+ if (saveSidebarWidth > delim_len) { -+ SidebarWidth = saveSidebarWidth; -+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar.")); -+ sleep (2); -+ } else { -+ SidebarWidth = 0; -+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar. Please set your sidebar_width to a sane value.")); -+ sleep (4); /* the advise to set a sane value should be seen long enough */ -+ } -+ saveSidebarWidth = 0; -+ return (0); -+ } ++/** ++ * buffy_going - Prevent our pointers becoming invalid ++ * @b: BUFFY about to be deleted ++ * ++ * If we receive a delete-notification for a BUFFY, we need to change any ++ * pointers we have to reference a different BUFFY, or set them to NULL. ++ * ++ * We don't update the prev/next pointers, they'll be fixed on the next ++ * call to prepare_sidebar(). ++ * ++ * Returns: ++ * A valid alternative BUFFY, or NULL ++ */ ++static BUFFY *buffy_going (const BUFFY *b) ++{ ++ if (!b) ++ return NULL; + -+ if ( SidebarWidth == 0 || !option(OPTSIDEBAR)) { -+ if (SidebarWidth > 0) { -+ saveSidebarWidth = SidebarWidth; -+ SidebarWidth = 0; -+ } -+ unset_option(OPTSIDEBAR); -+ return 0; ++ if (b->prev) ++ { ++ b->prev->next = NULL; ++ } ++ ++ if (b->next) ++ { ++ b->next->prev = NULL; ++ return b->next; ++ } ++ ++ return b->prev; ++} ++ ++/** ++ * update_buffy_visibility - Should a BUFFY be displayed in the sidebar ++ * @arr: array of BUFFYs ++ * @arr_len: number of BUFFYs in array ++ * ++ * For each BUFFY in the array, check whether we should display it. ++ * This is determined by several criteria. If the BUFFY: ++ * is the currently open mailbox ++ * is the currently highlighted mailbox ++ * has unread messages ++ * has flagged messages ++ * is whitelisted ++ */ ++static void update_buffy_visibility (BUFFY **arr, int arr_len) ++{ ++ if (!arr) ++ return; ++ ++ short new_only = option (OPTSIDEBARNEWMAILONLY); ++ ++ BUFFY *b; ++ int i; ++ for (i = 0; i < arr_len; i++) ++ { ++ b = arr[i]; ++ ++ b->is_hidden = 0; ++ ++ if (!new_only) ++ continue; ++ ++ if ((b == OpnBuffy) || (b->msg_unread > 0) || ++ (b == HilBuffy) || (b->msg_flagged > 0)) ++ continue; ++ ++ if (Context && (strcmp (b->path, Context->path) == 0)) ++ /* Spool directory */ ++ continue; ++ ++ if (mutt_find_list (SidebarWhitelist, b->path)) ++ /* Explicitly asked to be visible */ ++ continue; ++ ++ b->is_hidden = 1; ++ } ++} ++ ++/** ++ * sort_buffy_array - Sort an array of BUFFY pointers ++ * @arr: array of BUFFYs ++ * @arr_len: number of BUFFYs in array ++ * ++ * Sort an array of BUFFY pointers according to the current sort config ++ * option "sidebar_sort_method". This calls qsort to do the work which calls our ++ * callback function "cb_qsort_buffy". ++ * ++ * Once sorted, the prev/next links will be reconstructed. ++ */ ++static void sort_buffy_array (BUFFY **arr, int arr_len) ++{ ++ if (!arr) ++ return; ++ ++ /* These are the only sort methods we understand */ ++ short ssm = (SidebarSortMethod & SORT_MASK); ++ if ((ssm == SORT_COUNT) || ++ (ssm == SORT_COUNT_NEW) || ++ (ssm == SORT_DESC) || ++ (ssm == SORT_FLAGGED) || ++ (ssm == SORT_PATH)) ++ qsort (arr, arr_len, sizeof (*arr), cb_qsort_buffy); ++ ++ int i; ++ for (i = 0; i < (arr_len - 1); i++) ++ arr[i]->next = arr[i + 1]; ++ arr[arr_len - 1]->next = NULL; ++ ++ for (i = 1; i < arr_len; i++) ++ arr[i]->prev = arr[i - 1]; ++ arr[0]->prev = NULL; ++} ++ ++/** ++ * prepare_sidebar - Prepare the list of BUFFYs for the sidebar display ++ * @page_size: The number of lines on a page ++ * ++ * Before painting the sidebar, we count the BUFFYs, determine which are ++ * visible, sort them and set up our page pointers. ++ * ++ * This is a lot of work to do each refresh, but there are many things that ++ * can change outside of the sidebar that we don't hear about. ++ * ++ * Returns: ++ * 0: No, don't draw the sidebar ++ * 1: Yes, draw the sidebar ++ */ ++static int prepare_sidebar (int page_size) ++{ ++ BUFFY *b = Incoming; ++ if (!b) ++ return 0; ++ ++ int count = 0; ++ for (; b; b = b->next) ++ count++; ++ ++ BUFFY **arr = safe_malloc (count * sizeof (*arr)); ++ ++ int i = 0; ++ for (b = Incoming; b; b = b->next, i++) ++ arr[i] = b; ++ ++ update_buffy_visibility (arr, count); ++ sort_buffy_array (arr, count); ++ ++ Incoming = arr[0]; ++ ++ int top_index = 0; ++ int opn_index = -1; ++ int hil_index = -1; ++ int bot_index = -1; ++ ++ for (i = 0; i < count; i++) ++ { ++ if (OpnBuffy == arr[i]) ++ opn_index = i; ++ if (HilBuffy == arr[i]) ++ hil_index = i; ++ } ++ ++ if (!HilBuffy || (SidebarSortMethod != PreviousSort)) ++ { ++ if (OpnBuffy) ++ { ++ HilBuffy = OpnBuffy; ++ hil_index = opn_index; ++ } ++ else ++ { ++ HilBuffy = arr[0]; ++ hil_index = 0; ++ } ++ } ++ if (TopBuffy) ++ top_index = (hil_index / page_size) * page_size; ++ else ++ top_index = hil_index; ++ TopBuffy = arr[top_index]; ++ ++ bot_index = top_index + page_size - 1; ++ if (bot_index > (count - 1)) ++ bot_index = count - 1; ++ BotBuffy = arr[bot_index]; ++ ++ Outgoing = arr[count - 1]; ++ ++ PreviousSort = SidebarSortMethod; ++ FREE (&arr); ++ return 1; ++} ++ ++/** ++ * visible - Should we display the sidebar? ++ * ++ * After validating the config options "sidebar_visible" and "sidebar_width", ++ * determine whether we should should display the sidebar. ++ * ++ * When not visible, set the global SidebarWidth to 0. ++ * ++ * Returns: ++ * Boolean ++ */ ++static short ++visible (void) ++{ ++ short new_visible = option (OPTSIDEBAR); ++ short new_width = SidebarWidth; ++ ++ if (OldWidth != new_width) ++ { ++ if (new_width > 0) ++ { ++ OldWidth = new_width; ++ } ++ } ++ ++ if (OldVisible != new_visible) ++ { ++ if (new_visible) ++ { ++ set_option (OPTSIDEBAR); ++ } ++ else ++ { ++ unset_option (OPTSIDEBAR); ++ } ++ OldVisible = new_visible; ++ } ++ else if (new_width == 0) ++ { ++ unset_option (OPTSIDEBAR); ++ OldVisible = 0; ++ } ++ ++ if (!option (OPTSIDEBAR)) ++ { ++ SidebarWidth = 0; ++ } ++ else if (new_width == 0) ++ { ++ SidebarWidth = OldWidth; ++ } ++ else ++ { ++ SidebarWidth = new_width; ++ } ++ ++ return new_visible; ++} ++ ++/** ++ * draw_divider - Draw a line between the sidebar and the rest of mutt ++ * @first_row: Screen line to start (0-based) ++ * @num_rows: Number of rows to fill ++ * ++ * Draw a divider using characters from the config option "sidebar_divider_char". ++ * This can be an ASCII or Unicode character. First we calculate this ++ * characters' width in screen columns, then subtract that from the config ++ * option "sidebar_width". ++ * ++ * Returns: ++ * -1: Error: bad character, etc ++ * 0: Error: 0 width character ++ * n: Success: character occupies n screen columns ++ */ ++static int draw_divider (int first_row, int num_rows) ++{ ++ /* Calculate the width of the delimiter in screen cells */ ++ int delim_len = mutt_strwidth (SidebarDividerChar); ++ ++ if (delim_len < 1) ++ return delim_len; ++ ++ if ((SidebarWidth + delim_len) > (COLS + 1)) ++ return 0; ++ ++ if (delim_len > SidebarWidth) ++ return -1; ++ ++ SETCOLOR(MT_COLOR_DIVIDER); ++ ++ int i; ++ for (i = 0; i < num_rows; i++) ++ { ++ move (first_row + i, SidebarWidth - delim_len); ++ addstr (NONULL(SidebarDividerChar)); ++ } ++ ++ return delim_len; ++} ++ ++/** ++ * fill_empty_space - Wipe the remaining Sidebar space ++ * @first_row: Screen line to start (0-based) ++ * @num_rows: Number of rows to fill ++ * @width: Width of the Sidebar (minus the divider) ++ * ++ * Write spaces over the area the sidebar isn't using. ++ */ ++static void fill_empty_space (int first_row, int num_rows, int width) ++{ ++ /* Fill the remaining rows with blank space */ ++ SETCOLOR(MT_COLOR_NORMAL); ++ ++ int r; ++ for (r = 0; r < num_rows; r++) ++ { ++ int i = 0; ++ move (first_row + r, 0); ++ for (; i < width; i++) ++ addch (' '); ++ } ++} ++ ++/** ++ * draw_sidebar - Write out a list of mailboxes, on the left ++ * @first_row: Screen line to start (0-based) ++ * @num_rows: Number of rows to fill ++ * @div_width: Width in screen characters taken by the divider ++ * ++ * Display a list of mailboxes in a panel on the left. What's displayed will ++ * depend on our index markers: TopBuffy, OpnBuffy, HilBuffy, BotBuffy. ++ * On the first run they'll be NULL, so we display the top of Mutt's list ++ * (Incoming). ++ * ++ * TopBuffy - first visible mailbox ++ * BotBuffy - last visible mailbox ++ * OpnBuffy - mailbox shown in Mutt's Index Panel ++ * HilBuffy - Unselected mailbox (the paging follows this) ++ * ++ * The entries are formatted using "sidebar_format" and may be abbreviated: ++ * "sidebar_short_path", indented: "sidebar_folder_indent", ++ * "sidebar_indent_string" and sorted: "sidebar_sort_method". Finally, they're ++ * trimmed to fit the available space. ++ */ ++static void draw_sidebar (int first_row, int num_rows, int div_width) ++{ ++ BUFFY *b = TopBuffy; ++ if (!b) ++ return; ++ ++ int w = MIN(COLS, (SidebarWidth - div_width)); ++ int row = 0; ++ for (b = TopBuffy; b && (row < num_rows); b = b->next) ++ { ++ if (b->is_hidden) ++ continue; ++ ++ if (b == OpnBuffy) ++ { ++ if ((ColorDefs[MT_COLOR_SB_INDICATOR] != 0)) ++ SETCOLOR(MT_COLOR_SB_INDICATOR); ++ else ++ SETCOLOR(MT_COLOR_INDICATOR); ++ } ++ else if (b == HilBuffy) ++ SETCOLOR(MT_COLOR_HIGHLIGHT); ++ else if ((ColorDefs[MT_COLOR_SB_SPOOLFILE] != 0) && ++ (mutt_strcmp (b->path, Spoolfile) == 0)) ++ SETCOLOR(MT_COLOR_SB_SPOOLFILE); ++ else if (b->msg_unread > 0) ++ SETCOLOR(MT_COLOR_NEW); ++ else if (b->msg_flagged > 0) ++ SETCOLOR(MT_COLOR_FLAGGED); ++ else ++ SETCOLOR(MT_COLOR_NORMAL); ++ ++ move (first_row + row, 0); ++ if (Context && Context->path && ++ (!strcmp (b->path, Context->path)|| ++ !strcmp (b->realpath, Context->path))) ++ { ++ b->msg_unread = Context->unread; ++ b->msg_count = Context->msgcount; ++ b->msg_flagged = Context->flagged; + } + -+ /* get attributes for divider */ -+ SETCOLOR(MT_COLOR_STATUS); -+#ifndef USE_SLANG_CURSES -+ attr_get(&attrs, &color_pair, 0); -+#else -+ color_pair = attr_get(); -+#endif -+ SETCOLOR(MT_COLOR_NORMAL); ++ /* compute length of Maildir without trailing separator */ ++ size_t maildirlen = strlen (Maildir); ++ if (SidebarDelimChars && strchr (SidebarDelimChars, Maildir[maildirlen - 1])) ++ maildirlen--; + -+ /* draw the divider */ ++ /* check whether Maildir is a prefix of the current folder's path */ ++ short maildir_is_prefix = 0; ++ if ((strlen (b->path) > maildirlen) && (strncmp (Maildir, b->path, maildirlen) == 0)) ++ maildir_is_prefix = 1; + -+ for ( ; lines < LINES-1-(menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) { -+ move(lines, SidebarWidth - delim_len); -+ addstr(NONULL(SidebarDelim)); -+#ifndef USE_SLANG_CURSES -+ mvchgat(lines, SidebarWidth - delim_len, delim_len, 0, color_pair, NULL); -+#endif -+ } -+ -+ if ( Incoming == 0 ) return 0; -+ lines = option(OPTHELP) ? 1 : 0; /* go back to the top */ -+ -+ if ( known_lines != LINES || TopBuffy == 0 || BottomBuffy == 0 ) -+ calc_boundaries(menu); -+ if ( CurBuffy == 0 ) CurBuffy = Incoming; -+ -+ tmp = TopBuffy; -+ -+ SETCOLOR(MT_COLOR_NORMAL); -+ -+ for ( ; tmp && lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); tmp = tmp->next ) { -+ if ( tmp == CurBuffy ) -+ SETCOLOR(MT_COLOR_INDICATOR); -+ else if ( tmp->msg_unread > 0 ) -+ SETCOLOR(MT_COLOR_NEW); -+ else if ( tmp->msg_flagged > 0 ) -+ SETCOLOR(MT_COLOR_FLAGGED); -+ else -+ SETCOLOR(MT_COLOR_NORMAL); -+ -+ move( lines, 0 ); -+ if ( Context && !strcmp( tmp->path, Context->path ) ) { -+ tmp->msg_unread = Context->unread; -+ tmp->msgcount = Context->msgcount; -+ tmp->msg_flagged = Context->flagged; -+ } -+ // check whether Maildir is a prefix of the current folder's path -+ short maildir_is_prefix = 0; -+ if ( (strlen(tmp->path) > strlen(Maildir)) && -+ (strncmp(Maildir, tmp->path, strlen(Maildir)) == 0) ) -+ maildir_is_prefix = 1; -+ // calculate depth of current folder and generate its display name with indented spaces -+ int sidebar_folder_depth = 0; -+ char *sidebar_folder_name; -+ sidebar_folder_name = basename(tmp->path); -+ if ( maildir_is_prefix ) { -+ char *tmp_folder_name; -+ int i; -+ tmp_folder_name = tmp->path + strlen(Maildir); -+ for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) { -+ if (tmp_folder_name[i] == '/') sidebar_folder_depth++; -+ } -+ if (sidebar_folder_depth > 0) { -+ sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1); -+ for (i=0; i < sidebar_folder_depth; i++) -+ sidebar_folder_name[i]=' '; -+ sidebar_folder_name[i]=0; -+ strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth); -+ } -+ } -+ printw( "%.*s", SidebarWidth - delim_len + 1, -+ make_sidebar_entry(sidebar_folder_name, tmp->msgcount, -+ tmp->msg_unread, tmp->msg_flagged)); -+ if (sidebar_folder_depth > 0) -+ free(sidebar_folder_name); -+ lines++; -+ } -+ SETCOLOR(MT_COLOR_NORMAL); -+ for ( ; lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) { -+ int i = 0; -+ move( lines, 0 ); -+ for ( ; i < SidebarWidth - delim_len; i++ ) -+ addch(' '); -+ } -+ return 0; -+} -+ -+ -+void set_buffystats(CONTEXT* Context) -+{ -+ BUFFY *tmp = Incoming; -+ while(tmp) { -+ if(Context && !strcmp(tmp->path, Context->path)) { -+ tmp->msg_unread = Context->unread; -+ tmp->msgcount = Context->msgcount; -+ break; -+ } -+ tmp = tmp->next; ++ /* calculate depth of current folder and generate its display name with indented spaces */ ++ int sidebar_folder_depth = 0; ++ char *sidebar_folder_name; ++ int i; ++ if (option (OPTSIDEBARSHORTPATH)) ++ { ++ /* disregard a trailing separator, so strlen() - 2 */ ++ sidebar_folder_name = b->path; ++ for (i = strlen (sidebar_folder_name) - 2; i >= 0; i--) ++ { ++ if (SidebarDelimChars && ++ strchr (SidebarDelimChars, sidebar_folder_name[i])) ++ { ++ sidebar_folder_name += (i + 1); ++ break; + } ++ } ++ } ++ else ++ sidebar_folder_name = b->path + maildir_is_prefix * (maildirlen + 1); ++ ++ if (maildir_is_prefix && option (OPTSIDEBARFOLDERINDENT)) ++ { ++ const char *tmp_folder_name; ++ int lastsep = 0; ++ tmp_folder_name = b->path + maildirlen + 1; ++ int tmplen = (int) strlen (tmp_folder_name) - 1; ++ for (i = 0; i < tmplen; i++) ++ { ++ if (SidebarDelimChars && strchr (SidebarDelimChars, tmp_folder_name[i])) ++ { ++ sidebar_folder_depth++; ++ lastsep = i + 1; ++ } ++ } ++ if (sidebar_folder_depth > 0) ++ { ++ if (option (OPTSIDEBARSHORTPATH)) ++ tmp_folder_name += lastsep; /* basename */ ++ sidebar_folder_name = malloc (strlen (tmp_folder_name) + sidebar_folder_depth*strlen (NONULL(SidebarIndentString)) + 1); ++ sidebar_folder_name[0]=0; ++ for (i=0; i < sidebar_folder_depth; i++) ++ strncat (sidebar_folder_name, NONULL(SidebarIndentString), strlen (NONULL(SidebarIndentString))); ++ strncat (sidebar_folder_name, tmp_folder_name, strlen (tmp_folder_name)); ++ } ++ } ++ char str[STRING]; ++ make_sidebar_entry (str, sizeof (str), w, sidebar_folder_name, b); ++ printw ("%s", str); ++ if (sidebar_folder_depth > 0) ++ FREE (&sidebar_folder_name); ++ row++; ++ } ++ ++ fill_empty_space (first_row + row, num_rows - row, w); +} + -+void scroll_sidebar(int op, int menu) ++ ++/** ++ * mutt_sb_init - Set some default values for the sidebar. ++ */ ++void ++mutt_sb_init (void) +{ -+ if(!SidebarWidth) return; -+ if(!CurBuffy) return; -+ -+ switch (op) { -+ case OP_SIDEBAR_NEXT: -+ if ( CurBuffy->next == NULL ) return; -+ CurBuffy = CurBuffy->next; -+ break; -+ case OP_SIDEBAR_PREV: -+ if ( CurBuffy->prev == NULL ) return; -+ CurBuffy = CurBuffy->prev; -+ break; -+ case OP_SIDEBAR_SCROLL_UP: -+ CurBuffy = TopBuffy; -+ if ( CurBuffy != Incoming ) { -+ calc_boundaries(menu); -+ CurBuffy = CurBuffy->prev; -+ } -+ break; -+ case OP_SIDEBAR_SCROLL_DOWN: -+ CurBuffy = BottomBuffy; -+ if ( CurBuffy->next ) { -+ calc_boundaries(menu); -+ CurBuffy = CurBuffy->next; -+ } -+ break; -+ default: -+ return; -+ } -+ calc_boundaries(menu); -+ draw_sidebar(menu); ++ OldVisible = option (OPTSIDEBAR); ++ if (SidebarWidth > 0) ++ { ++ OldWidth = SidebarWidth; ++ } ++ else ++ { ++ OldWidth = 20; ++ if (OldVisible) ++ { ++ SidebarWidth = OldWidth; ++ } ++ } +} + -diff --git a/sidebar.h b/sidebar.h -new file mode 100644 -index 0000000..d195f11 ---- /dev/null -+++ b/sidebar.h ++/** ++ * mutt_sb_draw - Completely redraw the sidebar ++ * ++ * Completely refresh the sidebar region. First draw the divider; then, for ++ * each BUFFY, call make_sidebar_entry; finally blank out any remaining space. ++ */ ++void mutt_sb_draw (void) ++{ ++ if (!visible()) ++ return; ++ ++ /* XXX - if transitioning from invisible to visible */ ++ /* if (OldVisible == 0) */ ++ /* mutt_buffy_check (1); we probably have bad or no numbers */ ++ ++ int x = getcurx (stdscr); ++ int y = getcury (stdscr); ++ ++ int first_row = 0; ++ int num_rows = LINES - 2; ++ ++ if (option (OPTHELP) || option (OPTSTATUSONTOP)) ++ first_row++; ++ ++ if (option (OPTHELP)) ++ num_rows--; ++ ++ int div_width = draw_divider (first_row, num_rows); ++ if (div_width < 0) ++ return; ++ ++ if (!Incoming) ++ { ++ int w = MIN(COLS, (SidebarWidth - div_width)); ++ fill_empty_space (first_row, num_rows, w); ++ return; ++ } ++ ++ if (!prepare_sidebar (num_rows)) ++ return; ++ ++ draw_sidebar (first_row, num_rows, div_width); ++ move (y, x); ++} ++ ++/** ++ * mutt_sb_should_refresh - Check if the sidebar is due to be refreshed ++ * ++ * The "sidebar_refresh_time" config option allows the user to limit the frequency ++ * with which the sidebar is refreshed. ++ * ++ * Returns: ++ * 1 Yes, refresh is due ++ * 0 No, refresh happened recently ++ */ ++int mutt_sb_should_refresh (void) ++{ ++ if (!option (OPTSIDEBAR)) ++ return 0; ++ ++ if (SidebarRefreshTime == 0) ++ return 0; ++ ++ time_t diff = (time (NULL) - LastRefresh); ++ ++ return (diff >= SidebarRefreshTime); ++} ++ ++/** ++ * mutt_sb_change_mailbox - Change the selected mailbox ++ * @op: Operation code ++ * ++ * Change the selected mailbox, e.g. "Next mailbox", "Previous Mailbox ++ * with new mail". The operations are listed OPS.SIDEBAR which is built ++ * into an enum in keymap_defs.h. ++ * ++ * If the operation is successful, HilBuffy will be set to the new mailbox. ++ * This function only *selects* the mailbox, doesn't *open* it. ++ * ++ * Allowed values are: OP_SIDEBAR_NEXT, OP_SIDEBAR_NEXT_NEW, ++ * OP_SIDEBAR_PAGE_DOWN, OP_SIDEBAR_PAGE_UP, OP_SIDEBAR_PREV, ++ * OP_SIDEBAR_PREV_NEW. ++ */ ++void mutt_sb_change_mailbox (int op) ++{ ++ BUFFY *b; ++ if (!HilBuffy) /* It'll get reset on the next draw */ ++ return; ++ ++ switch (op) ++ { ++ case OP_SIDEBAR_NEXT: ++ if (!HilBuffy->next) ++ return; ++ if (HilBuffy->next->is_hidden) ++ return; ++ HilBuffy = HilBuffy->next; ++ break; ++ case OP_SIDEBAR_NEXT_NEW: ++ b = find_next_new (option (OPTSIDEBARNEXTNEWWRAP)); ++ if (!b) ++ return; ++ else ++ HilBuffy = b; ++ break; ++ case OP_SIDEBAR_PAGE_DOWN: ++ HilBuffy = BotBuffy; ++ if (HilBuffy->next) ++ HilBuffy = HilBuffy->next; ++ break; ++ case OP_SIDEBAR_PAGE_UP: ++ HilBuffy = TopBuffy; ++ if (HilBuffy != Incoming) ++ HilBuffy = HilBuffy->prev; ++ break; ++ case OP_SIDEBAR_PREV: ++ if (!HilBuffy->prev) ++ return; ++ if (HilBuffy->prev->is_hidden) /* Can't happen, we've sorted the hidden to the end */ ++ return; ++ HilBuffy = HilBuffy->prev; ++ break; ++ case OP_SIDEBAR_PREV_NEW: ++ b = find_prev_new (option (OPTSIDEBARNEXTNEWWRAP)); ++ if (!b) ++ return; ++ else ++ HilBuffy = b; ++ break; ++ default: ++ return; ++ } ++ ++ /* We can change folder even if the sidebar is hidden */ ++ if (option (OPTSIDEBAR)) ++ mutt_sb_draw(); ++} ++ ++/** ++ * mutt_sb_set_buffystats - Update the BUFFY's message counts from the CONTEXT ++ * @ctx: A mailbox CONTEXT ++ * ++ * Given a mailbox CONTEXT, find a matching mailbox BUFFY and copy the message ++ * counts into it. ++ */ ++void mutt_sb_set_buffystats (const CONTEXT *ctx) ++{ ++ /* Even if the sidebar's hidden, ++ * we should take note of the new data. */ ++ BUFFY *b = Incoming; ++ if (!ctx || !b) ++ return; ++ ++ for (; b; b = b->next) ++ { ++ if (!strcmp (b->path, ctx->path) || ++ !strcmp (b->realpath, ctx->path)) ++ { ++ b->msg_unread = ctx->unread; ++ b->msg_count = ctx->msgcount; ++ b->msg_flagged = ctx->flagged; ++ break; ++ } ++ } ++} ++ ++/** ++ * mutt_sb_get_highlight - Get the BUFFY that's highlighted in the sidebar ++ * ++ * Get the path of the mailbox that's highlighted in the sidebar. ++ * ++ * Returns: ++ * Mailbox path ++ */ ++const char *mutt_sb_get_highlight (void) ++{ ++ if (!HilBuffy) ++ return NULL; ++ ++ return HilBuffy->path; ++} ++ ++/** ++ * mutt_sb_set_open_buffy - Set the OpnBuffy based on a mailbox path ++ * @path: Mailbox path ++ * ++ * Search through the list of mailboxes. If a BUFFY has a matching path, set ++ * OpnBuffy to it. ++ */ ++BUFFY *mutt_sb_set_open_buffy (const char *path) ++{ ++ /* Even if the sidebar is hidden */ ++ ++ BUFFY *b = Incoming; ++ ++ if (!path || !b) ++ return NULL; ++ ++ OpnBuffy = NULL; ++ ++ for (; b; b = b->next) ++ { ++ if (!strcmp (b->path, path) || ++ !strcmp (b->realpath, path)) ++ { ++ OpnBuffy = b; ++ HilBuffy = b; ++ break; ++ } ++ } ++ ++ return OpnBuffy; ++} ++ ++/** ++ * mutt_sb_set_update_time - Note the time that the sidebar was updated ++ * ++ * Update the timestamp representing the last sidebar update. If the user ++ * configures "sidebar_refresh_time", this will help to reduce traffic. ++ */ ++void mutt_sb_set_update_time (void) ++{ ++ /* XXX - should this be public? */ ++ ++ LastRefresh = time (NULL); ++} ++ ++/** ++ * mutt_sb_notify_mailbox - The state of a BUFFY is about to change ++ * ++ * We receive a notification: ++ * After a new BUFFY has been created ++ * Before a BUFFY is deleted ++ * ++ * Before a deletion, check that our pointers won't be invalidated. ++ */ ++void mutt_sb_notify_mailbox (BUFFY *b, int created) ++{ ++ if (!b) ++ return; ++ ++ /* Any new/deleted mailboxes will cause a refresh. As long as ++ * they're valid, our pointers will be updated in prepare_sidebar() */ ++ ++ if (created) ++ { ++ if (!TopBuffy) ++ TopBuffy = b; ++ if (!HilBuffy) ++ HilBuffy = b; ++ if (!BotBuffy) ++ BotBuffy = b; ++ if (!Outgoing) ++ Outgoing = b; ++ if (!OpnBuffy && Context) ++ { ++ /* This might happen if the user "unmailboxes *", then ++ * "mailboxes" our current mailbox back again */ ++ if (mutt_strcmp (b->path, Context->path) == 0) ++ OpnBuffy = b; ++ } ++ } ++ else ++ { ++ BUFFY *replacement = buffy_going (b); ++ if (TopBuffy == b) ++ TopBuffy = replacement; ++ if (OpnBuffy == b) ++ OpnBuffy = NULL; ++ if (HilBuffy == b) ++ HilBuffy = replacement; ++ if (BotBuffy == b) ++ BotBuffy = replacement; ++ if (Outgoing == b) ++ Outgoing = replacement; ++ } ++} +diff -urN mutt-1.6.1/sidebar.h mutt-1.6.1-sidebar/sidebar.h +--- mutt-1.6.1/sidebar.h 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-sidebar/sidebar.h 2016-06-12 18:43:03.967503185 +0100 @@ -0,0 +1,36 @@ -+/* -+ * Copyright (C) ????-2004 Justin Hibbits ++/* Copyright (C) 2004 Justin Hibbits + * Copyright (C) 2004 Thomer M. Gil -+ * ++ * Copyright (C) 2015-2016 Richard Russon ++ * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. -+ * ++ * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. -+ * ++ * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. -+ */ ++ */ + +#ifndef SIDEBAR_H +#define SIDEBAR_H + -+struct MBOX_LIST { -+ char *path; -+ int msgcount; -+ int new; -+} MBLIST; ++#include "mutt.h" ++#include "buffy.h" + -+/* parameter is whether or not to go to the status line */ -+/* used for omitting the last | that covers up the status bar in the index */ -+int draw_sidebar(int); -+void scroll_sidebar(int, int); -+void set_curbuffy(char*); -+void set_buffystats(CONTEXT*); ++void mutt_sb_change_mailbox (int op); ++void mutt_sb_draw (void); ++const char * mutt_sb_get_highlight (void); ++void mutt_sb_init (void); ++void mutt_sb_notify_mailbox (BUFFY *b, int created); ++void mutt_sb_set_buffystats (const CONTEXT *ctx); ++BUFFY * mutt_sb_set_open_buffy (const char *path); ++void mutt_sb_set_update_time (void); ++int mutt_sb_should_refresh (void); + +#endif /* SIDEBAR_H */ +diff -urN mutt-1.6.1/sort.h mutt-1.6.1-sidebar/sort.h +--- mutt-1.6.1/sort.h 2016-06-12 18:43:00.415447793 +0100 ++++ mutt-1.6.1-sidebar/sort.h 2016-06-12 18:43:03.968503200 +0100 +@@ -31,6 +31,12 @@ + #define SORT_KEYID 12 + #define SORT_TRUST 13 + #define SORT_SPAM 14 ++#define SORT_COUNT 15 ++#define SORT_COUNT_NEW 16 ++#define SORT_DESC 17 ++#define SORT_FLAGGED 18 ++#define SORT_PATH 19 ++ + /* dgc: Sort & SortAux are shorts, so I'm bumping these bitflags up from + * bits 4 & 5 to bits 8 & 9 to make room for more sort keys in the future. */ + #define SORT_MASK 0xff +@@ -50,6 +56,7 @@ + WHERE short Sort INITVAL (SORT_DATE); + WHERE short SortAux INITVAL (SORT_DATE); /* auxiliary sorting method */ + WHERE short SortAlias INITVAL (SORT_ALIAS); ++WHERE short SidebarSortMethod INITVAL (SORT_ORDER); + + /* FIXME: This one does not belong to here */ + WHERE short PgpSortKeys INITVAL (SORT_ADDRESS); diff --git a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch b/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch deleted file mode 100644 index ce47b0c30e5..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch +++ /dev/null @@ -1,316 +0,0 @@ -From: Cedric Duval -Date: Thu, 27 Feb 2014 12:27:41 +0100 -Subject: trash-folder - -With this patch, if the trash variable is set to a path (unset by default), the -deleted mails will be moved to a trash folder instead of being irremediably -purged when syncing the mailbox. - -For instance, set trash="~/Mail/trash" will cause every deleted mail to go to -this folder. - -Note that the append to the trash folder doesn't occur until the resync is -done. This allows you to change your mind and undo deletes, and thus the moves -to the trash folder are unnecessary. - -Notes - - * You might also want to have a look at the purge message feature below - which is related to this patch. - * IMAP is now supported. To retain the previous behavior, add this to your - muttrc: - folder-hook ^imap:// 'unset trash' - -FAQ - -Every once in a while, someone asks what are the advantages of this patch over -a macro based solution. Here's an attempt to answer this question: - - * The folder history doesn't clutter up with unwanted trash entries. - * Delayed move to the trash allows to change one's mind. - * No need to treat the case of "normal folders" and trash folders - separately with folder-hooks, and to create two sets of macros (one for - the index, one for the pager). - * Works not only with delete-message, but also with every deletion - functions like delete-pattern, delete-thread or delete-subthread. - -To sum up, it's more integrated and transparent to the user. - -* Patch last synced with upstream: - - Date: 2007-02-15 - - File: http://cedricduval.free.fr/mutt/patches/download/patch-1.5.5.1.cd.trash_folder.3.4 - -* Changes made: - - Updated to 1.5.13: - - structure of _mutt_save_message changed (commands.c) - - context of option (OPTCONFIRMAPPEND) changed (muttlib.c) - - Fixed indentation of "appended" in mutt.h. - -Signed-off-by: Matteo F. Vescovi - -Gbp-Pq: Topic features ---- - commands.c | 1 + - flags.c | 19 +++++++++++++++++- - globals.h | 1 + - imap/message.c | 2 ++ - init.h | 10 ++++++++++ - mutt.h | 3 +++ - muttlib.c | 4 +++- - mx.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - postpone.c | 3 +++ - 9 files changed, 103 insertions(+), 2 deletions(-) - -diff --git a/commands.c b/commands.c -index 5dbd100..7fd014b 100644 ---- a/commands.c -+++ b/commands.c -@@ -720,6 +720,7 @@ int _mutt_save_message (HEADER *h, CONTEXT *ctx, int delete, int decode, int dec - if (option (OPTDELETEUNTAG)) - mutt_set_flag (Context, h, M_TAG, 0); - } -+ mutt_set_flag (Context, h, M_APPENDED, 1); - - return 0; - } -diff --git a/flags.c b/flags.c -index f0f3d81..dfa6a50 100644 ---- a/flags.c -+++ b/flags.c -@@ -65,7 +65,13 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) - { - h->deleted = 0; - update = 1; -- if (upd_ctx) ctx->deleted--; -+ if (upd_ctx) -+ { -+ ctx->deleted--; -+ if (h->appended) -+ ctx->appended--; -+ } -+ h->appended = 0; /* when undeleting, also reset the appended flag */ - #ifdef USE_IMAP - /* see my comment above */ - if (ctx->magic == M_IMAP) -@@ -87,6 +93,17 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) - } - break; - -+ case M_APPENDED: -+ if (bf) -+ { -+ if (!h->appended) -+ { -+ h->appended = 1; -+ if (upd_ctx) ctx->appended++; -+ } -+ } -+ break; -+ - case M_NEW: - - if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN)) -diff --git a/globals.h b/globals.h -index e77030c..6a1b8da 100644 ---- a/globals.h -+++ b/globals.h -@@ -144,6 +144,7 @@ WHERE char *Tochars; - WHERE char *TSStatusFormat; - WHERE char *TSIconFormat; - WHERE short TSSupported; -+WHERE char *TrashPath; - WHERE char *Username; - WHERE char *Visual; - -diff --git a/imap/message.c b/imap/message.c -index 3877381..039fda6 100644 ---- a/imap/message.c -+++ b/imap/message.c -@@ -884,6 +884,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete) - if (ctx->hdrs[n]->tagged) - { - mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1); -+ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0); - } -@@ -891,6 +892,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete) - else - { - mutt_set_flag (ctx, h, M_DELETE, 1); -+ mutt_set_flag (ctx, h, M_APPENDED, 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (ctx, h, M_TAG, 0); - } -diff --git a/init.h b/init.h -index 6b49341..d3206f9 100644 ---- a/init.h -+++ b/init.h -@@ -3341,6 +3341,16 @@ struct option_t MuttVars[] = { - ** provided that ``$$ts_enabled'' has been set. This string is identical in - ** formatting to the one used by ``$$status_format''. - */ -+ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 }, -+ /* -+ ** .pp -+ ** If set, this variable specifies the path of the trash folder where the -+ ** mails marked for deletion will be moved, instead of being irremediably -+ ** purged. -+ ** .pp -+ ** NOTE: When you delete a message in the trash folder, it is really -+ ** deleted, so that you have a way to clean the trash. -+ */ - #ifdef USE_SOCKET - { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 }, - /* -diff --git a/mutt.h b/mutt.h -index f8565fa..29bb6c2 100644 ---- a/mutt.h -+++ b/mutt.h -@@ -185,6 +185,7 @@ enum - M_DELETE, - M_UNDELETE, - M_DELETED, -+ M_APPENDED, - M_FLAG, - M_TAG, - M_UNTAG, -@@ -713,6 +714,7 @@ typedef struct header - unsigned int mime : 1; /* has a MIME-Version header? */ - unsigned int flagged : 1; /* marked important? */ - unsigned int tagged : 1; -+ unsigned int appended : 1; /* has been saved */ - unsigned int deleted : 1; - unsigned int changed : 1; - unsigned int attach_del : 1; /* has an attachment marked for deletion */ -@@ -885,6 +887,7 @@ typedef struct _context - int new; /* how many new messages? */ - int unread; /* how many unread messages? */ - int deleted; /* how many deleted messages */ -+ int appended; /* how many saved messages? */ - int flagged; /* how many flagged messages */ - int msgnotreadyet; /* which msg "new" in pager, -1 if none */ - -diff --git a/muttlib.c b/muttlib.c -index 02067cc..0fd9766 100644 ---- a/muttlib.c -+++ b/muttlib.c -@@ -1505,7 +1505,9 @@ int mutt_save_confirm (const char *s, struct stat *st) - - if (magic > 0 && !mx_access (s, W_OK)) - { -- if (option (OPTCONFIRMAPPEND)) -+ if (option (OPTCONFIRMAPPEND) && -+ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0))) -+ /* if we're appending to the trash, there's no point in asking */ - { - snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s); - if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO) -diff --git a/mx.c b/mx.c -index 4c5cb07..c0a6d30 100644 ---- a/mx.c -+++ b/mx.c -@@ -776,6 +776,53 @@ static int sync_mailbox (CONTEXT *ctx, int *index_hint) - return rc; - } - -+/* move deleted mails to the trash folder */ -+static int trash_append (CONTEXT *ctx) -+{ -+ CONTEXT *ctx_trash; -+ int i = 0; -+ struct stat st, stc; -+ -+ if (!TrashPath || !ctx->deleted || -+ (ctx->magic == M_MAILDIR && option (OPTMAILDIRTRASH))) -+ return 0; -+ -+ for (;i < ctx->msgcount && (!ctx->hdrs[i]->deleted || -+ ctx->hdrs[i]->appended); i++); -+ if (i == ctx->msgcount) -+ return 0; /* nothing to be done */ -+ -+ if (mutt_save_confirm (TrashPath, &st) != 0) -+ { -+ mutt_error _("message(s) not deleted"); -+ return -1; -+ } -+ -+ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino -+ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev) -+ return 0; /* we are in the trash folder: simple sync */ -+ -+ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL) -+ { -+ for (i = 0 ; i < ctx->msgcount ; i++) -+ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended -+ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1) -+ { -+ mx_close_mailbox (ctx_trash, NULL); -+ return -1; -+ } -+ -+ mx_close_mailbox (ctx_trash, NULL); -+ } -+ else -+ { -+ mutt_error _("Can't open trash folder"); -+ return -1; -+ } -+ -+ return 0; -+} -+ - /* save changes and close mailbox */ - int mx_close_mailbox (CONTEXT *ctx, int *index_hint) - { -@@ -912,6 +959,7 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint) - if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0) - { - mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1); -+ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1); - } - else - { -@@ -936,6 +984,14 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint) - return 0; - } - -+ /* copy mails to the trash before expunging */ -+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath)) -+ if (trash_append (ctx) != 0) -+ { -+ ctx->closing = 0; -+ return -1; -+ } -+ - #ifdef USE_IMAP - /* allow IMAP to preserve the deleted flag across sessions */ - if (ctx->magic == M_IMAP) -@@ -1133,6 +1189,12 @@ int mx_sync_mailbox (CONTEXT *ctx, int *index_hint) - msgcount = ctx->msgcount; - deleted = ctx->deleted; - -+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath)) -+ { -+ if (trash_append (ctx) == -1) -+ return -1; -+ } -+ - #ifdef USE_IMAP - if (ctx->magic == M_IMAP) - rc = imap_sync_mailbox (ctx, purge, index_hint); -diff --git a/postpone.c b/postpone.c -index a703161..7a4cbb1 100644 ---- a/postpone.c -+++ b/postpone.c -@@ -277,6 +277,9 @@ int mutt_get_postponed (CONTEXT *ctx, HEADER *hdr, HEADER **cur, char *fcc, size - /* finished with this message, so delete it. */ - mutt_set_flag (PostContext, h, M_DELETE, 1); - -+ /* and consider it saved, so that it won't be moved to the trash folder */ -+ mutt_set_flag (PostContext, h, M_APPENDED, 1); -+ - /* update the count for the status display */ - PostCount = PostContext->msgcount - PostContext->deleted; - diff --git a/pkgs/applications/networking/mailreaders/mutt/trash.patch b/pkgs/applications/networking/mailreaders/mutt/trash.patch new file mode 100644 index 00000000000..a7bda4c4c8b --- /dev/null +++ b/pkgs/applications/networking/mailreaders/mutt/trash.patch @@ -0,0 +1,797 @@ +diff -urN mutt-1.6.1/commands.c mutt-1.6.1-trash/commands.c +--- mutt-1.6.1/commands.c 2016-06-12 18:43:00.397447512 +0100 ++++ mutt-1.6.1-trash/commands.c 2016-06-12 18:43:04.892517610 +0100 +@@ -720,6 +720,7 @@ + if (option (OPTDELETEUNTAG)) + mutt_set_flag (Context, h, M_TAG, 0); + } ++ mutt_set_flag (Context, h, M_APPENDED, 1); + + return 0; + } +diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-trash/curs_main.c +--- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100 ++++ mutt-1.6.1-trash/curs_main.c 2016-06-12 18:43:04.895517656 +0100 +@@ -1919,6 +1919,7 @@ + MAYBE_REDRAW (menu->redraw); + break; + ++ case OP_PURGE_MESSAGE: + case OP_DELETE: + + CHECK_MSGCOUNT; +@@ -1930,6 +1931,7 @@ + if (tag) + { + mutt_tag_set_flag (M_DELETE, 1); ++ mutt_tag_set_flag (M_PURGED, (op != OP_PURGE_MESSAGE) ? 0 : 1); + if (option (OPTDELETEUNTAG)) + mutt_tag_set_flag (M_TAG, 0); + menu->redraw = REDRAW_INDEX; +@@ -1937,6 +1939,8 @@ + else + { + mutt_set_flag (Context, CURHDR, M_DELETE, 1); ++ mutt_set_flag (Context, CURHDR, M_PURGED, ++ (op != OP_PURGE_MESSAGE) ? 0 : 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (Context, CURHDR, M_TAG, 0); + if (option (OPTRESOLVE)) +@@ -2242,11 +2246,13 @@ + if (tag) + { + mutt_tag_set_flag (M_DELETE, 0); ++ mutt_tag_set_flag (M_PURGED, 0); + menu->redraw = REDRAW_INDEX; + } + else + { + mutt_set_flag (Context, CURHDR, M_DELETE, 0); ++ mutt_set_flag (Context, CURHDR, M_PURGED, 0); + if (option (OPTRESOLVE) && menu->current < Context->vcount - 1) + { + menu->current++; +@@ -2268,9 +2274,11 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)")); + + rc = mutt_thread_set_flag (CURHDR, M_DELETE, 0, +- op == OP_UNDELETE_THREAD ? 0 : 1); ++ op == OP_UNDELETE_THREAD ? 0 : 1) ++ + mutt_thread_set_flag (CURHDR, M_PURGED, 0, ++ (op == OP_UNDELETE_THREAD) ? 0 : 1); + +- if (rc != -1) ++ if (rc > -1) + { + if (option (OPTRESOLVE)) + { +diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-trash/doc/manual.xml.head +--- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100 ++++ mutt-1.6.1-trash/doc/manual.xml.head 2016-06-12 18:43:04.901517750 +0100 +@@ -7467,6 +7467,16 @@ + +
+ ++ ++Mutt Patches ++ ++Mutt may also be patched to support smaller features. ++These patches should add a free-form string to the end Mutt's version string. ++Running mutt -v might show: ++patch-1.6.1.sidebar.20160502 ++ ++ ++ + + URL Syntax + +@@ -8081,6 +8091,175 @@ + + + ++ ++ Trash Folder Patch ++ Automatically move "deleted" emails to a trash bin ++ ++ ++ Patch ++ ++ ++ To check if Mutt supports Trash Folder, look for ++ patch-trash in the mutt version. ++ See: . ++ ++ ++ If IMAP is enabled, this patch will use it ++ ++ ++ Dependencies: ++ mutt-1.6.1 ++ IMAP support ++ ++ ++ This patch is part of the NeoMutt Project. ++ ++ ++ ++ Introduction ++ ++ ++ In Mutt, when you delete an email it is first marked ++ deleted. The email isn't really gone until ++ <sync-mailbox> is called. ++ This happens when the user leaves the folder, or the function is called ++ manually. ++ ++ ++ ++ After <sync-mailbox> has been called the email is gone forever. ++ ++ ++ ++ The $trash variable defines a folder in ++ which to keep old emails. As before, first you mark emails for ++ deletion. When <sync-mailbox> is called the emails are moved to ++ the trash folder. ++ ++ ++ ++ The $trash path can be either a full directory, ++ or be relative to the $folder ++ variable, like the mailboxes command. ++ ++ ++ ++ Emails deleted from the trash folder are gone forever. ++ ++ ++ ++ ++ Variables ++ ++ Trash Variables ++ ++ ++ ++ Name ++ Type ++ Default ++ ++ ++ ++ ++ trash ++ string ++ (none) ++ ++ ++ ++
++
++ ++ ++ Functions ++ ++ Trash Functions ++ ++ ++ ++ Menus ++ Default Key ++ Function ++ Description ++ ++ ++ ++ ++ index,pager ++ (none) ++ <purge-message> ++ really delete the current entry, bypassing the trash folder ++ ++ ++ ++
++
++ ++ ++ ++ ++ Muttrc ++ ++# Example Mutt config file for the 'trash' feature. ++ ++# This feature defines a new 'trash' folder. ++# When mail is deleted it will be moved to this folder. ++ ++# Folder in which to put deleted emails ++set trash='+Trash' ++set trash='/home/flatcap/Mail/Trash' ++ ++# The default delete key 'd' will move an email to the 'trash' folder ++# Bind 'D' to REALLY delete an email ++bind index D purge-message ++ ++# Note: Deleting emails from the 'trash' folder will REALLY delete them. ++ ++# vim: syntax=muttrc ++ ++ ++ ++ ++ See Also ++ ++ ++ NeoMutt Project ++ folder-hook ++ ++ ++ ++ ++ Known Bugs ++ None ++ ++ ++ ++ Credits ++ ++ Cedric Duval cedricduval@free.fr ++ Benjamin Kuperman kuperman@acm.org ++ Paul Miller paul@voltar.org ++ Richard Russon rich@flatcap.org ++ ++ ++
++ + + + +diff -urN mutt-1.6.1/doc/muttrc.trash mutt-1.6.1-trash/doc/muttrc.trash +--- mutt-1.6.1/doc/muttrc.trash 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-trash/doc/muttrc.trash 2016-06-12 18:43:04.768515676 +0100 +@@ -0,0 +1,16 @@ ++# Example Mutt config file for the 'trash' feature. ++ ++# This feature defines a new 'trash' folder. ++# When mail is deleted it will be moved to this folder. ++ ++# Folder in which to put deleted emails ++set trash='+Trash' ++set trash='/home/flatcap/Mail/Trash' ++ ++# The default delete key 'd' will move an email to the 'trash' folder ++# Bind 'D' to REALLY delete an email ++bind index D purge-message ++ ++# Note: Deleting emails from the 'trash' folder will REALLY delete them. ++ ++# vim: syntax=muttrc +diff -urN mutt-1.6.1/doc/vimrc.trash mutt-1.6.1-trash/doc/vimrc.trash +--- mutt-1.6.1/doc/vimrc.trash 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-trash/doc/vimrc.trash 2016-06-12 18:43:04.769515692 +0100 +@@ -0,0 +1,7 @@ ++" Vim syntax file for the mutt trash patch ++ ++syntax keyword muttrcVarStr contained skipwhite trash nextgroup=muttrcVarEqualsIdxFmt ++ ++syntax match muttrcFunction contained "\" ++ ++" vim: syntax=vim +diff -urN mutt-1.6.1/flags.c mutt-1.6.1-trash/flags.c +--- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-trash/flags.c 2016-06-12 18:43:04.902517766 +0100 +@@ -65,7 +65,13 @@ + { + h->deleted = 0; + update = 1; +- if (upd_ctx) ctx->deleted--; ++ if (upd_ctx) { ++ ctx->deleted--; ++ if (h->appended) { ++ ctx->appended--; ++ } ++ } ++ h->appended = 0; /* when undeleting, also reset the appended flag */ + #ifdef USE_IMAP + /* see my comment above */ + if (ctx->magic == M_IMAP) +@@ -87,6 +93,27 @@ + } + break; + ++ case M_APPENDED: ++ if (bf) { ++ if (!h->appended) { ++ h->appended = 1; ++ if (upd_ctx) { ++ ctx->appended++; ++ } ++ } ++ } ++ break; ++ ++ case M_PURGED: ++ if (bf) { ++ if (!h->purged) { ++ h->purged = 1; ++ } ++ } else if (h->purged) { ++ h->purged = 0; ++ } ++ break; ++ + case M_NEW: + + if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN)) +diff -urN mutt-1.6.1/functions.h mutt-1.6.1-trash/functions.h +--- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-trash/functions.h 2016-06-12 18:43:04.902517766 +0100 +@@ -121,6 +121,7 @@ + { "toggle-write", OP_TOGGLE_WRITE, "%" }, + { "next-thread", OP_MAIN_NEXT_THREAD, "\016" }, + { "next-subthread", OP_MAIN_NEXT_SUBTHREAD, "\033n" }, ++ { "purge-message", OP_PURGE_MESSAGE, NULL }, + { "query", OP_QUERY, "Q" }, + { "quit", OP_QUIT, "q" }, + { "reply", OP_REPLY, "r" }, +@@ -213,6 +214,7 @@ + { "print-message", OP_PRINT, "p" }, + { "previous-thread", OP_MAIN_PREV_THREAD, "\020" }, + { "previous-subthread",OP_MAIN_PREV_SUBTHREAD, "\033p" }, ++ { "purge-message", OP_PURGE_MESSAGE, NULL }, + { "quit", OP_QUIT, "Q" }, + { "exit", OP_EXIT, "q" }, + { "reply", OP_REPLY, "r" }, +diff -urN mutt-1.6.1/globals.h mutt-1.6.1-trash/globals.h +--- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100 ++++ mutt-1.6.1-trash/globals.h 2016-06-12 18:43:04.903517781 +0100 +@@ -141,6 +141,7 @@ + WHERE char *Status; + WHERE char *Tempdir; + WHERE char *Tochars; ++WHERE char *TrashPath; + WHERE char *TSStatusFormat; + WHERE char *TSIconFormat; + WHERE short TSSupported; +diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-trash/imap/imap.c +--- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-trash/imap/imap.c 2016-06-12 18:43:04.905517812 +0100 +@@ -888,6 +888,12 @@ + if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted) + match = invert ^ hdrs[n]->deleted; + break; ++ case M_EXPIRED: /* imap_fast_trash version of M_DELETED */ ++ if (hdrs[n]->purged) ++ break; ++ if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted) ++ match = invert ^ (hdrs[n]->deleted && !hdrs[n]->appended); ++ break; + case M_FLAG: + if (hdrs[n]->flagged != HEADER_DATA(hdrs[n])->flagged) + match = invert ^ hdrs[n]->flagged; +@@ -2038,3 +2044,53 @@ + + return -1; + } ++ ++/** ++ * imap_fast_trash - XXX ++ */ ++int ++imap_fast_trash (void) ++{ ++ if ((Context->magic == M_IMAP) && mx_is_imap (TrashPath)) { ++ IMAP_MBOX mx; ++ IMAP_DATA *idata = (IMAP_DATA *) Context->data; ++ char mbox[LONG_STRING]; ++ char mmbox[LONG_STRING]; ++ int rc; ++ dprint (1, (debugfile, "[itf] trashcan seems to be on imap.\n")); ++ ++ if (imap_parse_path (TrashPath, &mx) == 0) { ++ if (mutt_account_match (&(idata->conn->account), &(mx.account))) { ++ dprint (1, (debugfile, "[itf] trashcan seems to be on the same account.\n")); ++ ++ imap_fix_path (idata, mx.mbox, mbox, sizeof (mbox)); ++ if (!*mbox) ++ strfcpy (mbox, "INBOX", sizeof (mbox)); ++ imap_munge_mbox_name (idata, mmbox, sizeof (mmbox), mbox); ++ ++ rc = imap_exec_msgset (idata, "UID COPY", mmbox, M_EXPIRED, 0, 0); ++ if (rc == 0) { ++ dprint (1, (debugfile, "imap_copy_messages: No messages del-tagged\n")); ++ rc = -1; ++ goto old_way; ++ } else if (rc < 0) { ++ dprint (1, (debugfile, "could not queue copy\n")); ++ goto old_way; ++ } else { ++ mutt_message (_("Copying %d messages to %s..."), rc, mbox); ++ return 0; ++ } ++ } else { ++ dprint (1, (debugfile, "[itf] trashcan seems to be on a different account.\n")); ++ } ++old_way: ++ FREE(&mx.mbox); /* we probably only need to free this when the parse works */ ++ } else { ++ dprint (1, (debugfile, "[itf] failed to parse TrashPath.\n")); ++ } ++ ++ dprint (1, (debugfile, "[itf] giving up and trying old fasioned way.\n")); ++ } ++ ++ return 1; ++} +diff -urN mutt-1.6.1/imap/imap.h mutt-1.6.1-trash/imap/imap.h +--- mutt-1.6.1/imap/imap.h 2016-06-12 18:43:00.405447637 +0100 ++++ mutt-1.6.1-trash/imap/imap.h 2016-06-12 18:43:04.774515769 +0100 +@@ -72,4 +72,7 @@ + + int imap_account_match (const ACCOUNT* a1, const ACCOUNT* a2); + ++/* trash */ ++int imap_fast_trash (void); ++ + #endif +diff -urN mutt-1.6.1/imap/message.c mutt-1.6.1-trash/imap/message.c +--- mutt-1.6.1/imap/message.c 2016-06-12 18:43:00.406447652 +0100 ++++ mutt-1.6.1-trash/imap/message.c 2016-06-12 18:43:04.906517828 +0100 +@@ -886,6 +886,7 @@ + if (ctx->hdrs[n]->tagged) + { + mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1); ++ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0); + } +@@ -893,6 +894,7 @@ + else + { + mutt_set_flag (ctx, h, M_DELETE, 1); ++ mutt_set_flag (ctx, h, M_APPENDED, 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (ctx, h, M_TAG, 0); + } +diff -urN mutt-1.6.1/init.h mutt-1.6.1-trash/init.h +--- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100 ++++ mutt-1.6.1-trash/init.h 2016-06-12 18:43:04.909517875 +0100 +@@ -3419,6 +3419,16 @@ + ** provided that ``$$ts_enabled'' has been set. This string is identical in + ** formatting to the one used by ``$$status_format''. + */ ++ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 }, ++ /* ++ ** .pp ++ ** If set, this variable specifies the path of the trash folder where the ++ ** mails marked for deletion will be moved, instead of being irremediably ++ ** purged. ++ ** .pp ++ ** NOTE: When you delete a message in the trash folder, it is really ++ ** deleted, so that you have a way to clean the trash. ++ */ + #ifdef USE_SOCKET + { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 }, + /* +diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-trash/mutt.h +--- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100 ++++ mutt-1.6.1-trash/mutt.h 2016-06-12 18:43:04.912517922 +0100 +@@ -182,6 +182,8 @@ + M_DELETE, + M_UNDELETE, + M_DELETED, ++ M_APPENDED, ++ M_PURGED, + M_FLAG, + M_TAG, + M_UNTAG, +@@ -719,6 +721,8 @@ + unsigned int mime : 1; /* has a MIME-Version header? */ + unsigned int flagged : 1; /* marked important? */ + unsigned int tagged : 1; ++ unsigned int appended : 1; /* has been saved */ ++ unsigned int purged : 1; /* bypassing the trash folder */ + unsigned int deleted : 1; + unsigned int changed : 1; + unsigned int attach_del : 1; /* has an attachment marked for deletion */ +@@ -891,6 +895,7 @@ + int new; /* how many new messages? */ + int unread; /* how many unread messages? */ + int deleted; /* how many deleted messages */ ++ int appended; /* how many saved messages? */ + int flagged; /* how many flagged messages */ + int msgnotreadyet; /* which msg "new" in pager, -1 if none */ + +diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-trash/muttlib.c +--- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-trash/muttlib.c 2016-06-12 18:43:04.913517937 +0100 +@@ -1511,7 +1511,9 @@ + + if (magic > 0 && !mx_access (s, W_OK)) + { +- if (option (OPTCONFIRMAPPEND)) ++ if (option (OPTCONFIRMAPPEND) && ++ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0))) ++ /* if we're appending to the trash, there's no point in asking */ + { + snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s); + if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO) +diff -urN mutt-1.6.1/mx.c mutt-1.6.1-trash/mx.c +--- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100 ++++ mutt-1.6.1-trash/mx.c 2016-06-12 18:43:04.914517953 +0100 +@@ -776,6 +776,62 @@ + return rc; + } + ++/** ++ * trash_append - XXX ++ * ++ * move deleted mails to the trash folder ++ */ ++static int trash_append (CONTEXT *ctx) ++{ ++ CONTEXT *ctx_trash; ++ int i = 0; ++ struct stat st, stc; ++ ++ if (!TrashPath || !ctx->deleted || ++ ((ctx->magic == M_MAILDIR) && option (OPTMAILDIRTRASH))) { ++ return 0; ++ } ++ ++ for (; i < ctx->msgcount && (!ctx->hdrs[i]->deleted || ctx->hdrs[i]->appended); i++); ++ /* nothing */ ++ ++ if (i == ctx->msgcount) ++ return 0; /* nothing to be done */ ++ ++ if (mutt_save_confirm (TrashPath, &st) != 0) { ++ mutt_error _("message(s) not deleted"); ++ return -1; ++ } ++ ++ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino ++ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev) { ++ return 0; /* we are in the trash folder: simple sync */ ++ } ++ ++#ifdef USE_IMAP ++ if (!imap_fast_trash()) ++ return 0; ++#endif ++ ++ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL) { ++ for (i = 0 ; i < ctx->msgcount ; i++) { ++ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended ++ && !ctx->hdrs[i]->purged ++ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1) { ++ mx_close_mailbox (ctx_trash, NULL); ++ return -1; ++ } ++ } ++ ++ mx_close_mailbox (ctx_trash, NULL); ++ } else { ++ mutt_error _("Can't open trash folder"); ++ return -1; ++ } ++ ++ return 0; ++} ++ + /* save changes and close mailbox */ + int mx_close_mailbox (CONTEXT *ctx, int *index_hint) + { +@@ -912,6 +968,7 @@ + if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0) + { + mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1); ++ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1); + } + else + { +@@ -936,6 +993,14 @@ + return 0; + } + ++ /* copy mails to the trash before expunging */ ++ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) { ++ if (trash_append (ctx) != 0) { ++ ctx->closing = 0; ++ return -1; ++ } ++ } ++ + #ifdef USE_IMAP + /* allow IMAP to preserve the deleted flag across sessions */ + if (ctx->magic == M_IMAP) +@@ -1140,6 +1205,12 @@ + msgcount = ctx->msgcount; + deleted = ctx->deleted; + ++ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) { ++ if (trash_append (ctx) == -1) { ++ return -1; ++ } ++ } ++ + #ifdef USE_IMAP + if (ctx->magic == M_IMAP) + rc = imap_sync_mailbox (ctx, purge, index_hint); +diff -urN mutt-1.6.1/OPS mutt-1.6.1-trash/OPS +--- mutt-1.6.1/OPS 2016-06-12 18:43:00.389447388 +0100 ++++ mutt-1.6.1-trash/OPS 2016-06-12 18:43:04.883517469 +0100 +@@ -142,6 +142,7 @@ + OP_PREV_LINE "scroll up one line" + OP_PREV_PAGE "move to the previous page" + OP_PRINT "print the current entry" ++OP_PURGE_MESSAGE "really delete the current entry, bypassing the trash folder" + OP_QUERY "query external program for addresses" + OP_QUERY_APPEND "append new query results to current results" + OP_QUIT "save changes to mailbox and quit" +diff -urN mutt-1.6.1/pager.c mutt-1.6.1-trash/pager.c +--- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100 ++++ mutt-1.6.1-trash/pager.c 2016-06-12 18:43:04.915517968 +0100 +@@ -2351,6 +2351,7 @@ + MAYBE_REDRAW (redraw); + break; + ++ case OP_PURGE_MESSAGE: + case OP_DELETE: + CHECK_MODE(IsHeader (extra)); + CHECK_READONLY; +@@ -2358,6 +2359,8 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot delete message")); + + mutt_set_flag (Context, extra->hdr, M_DELETE, 1); ++ mutt_set_flag (Context, extra->hdr, M_PURGED, ++ ch != OP_PURGE_MESSAGE ? 0 : 1); + if (option (OPTDELETEUNTAG)) + mutt_set_flag (Context, extra->hdr, M_TAG, 0); + redraw = REDRAW_STATUS | REDRAW_INDEX; +@@ -2688,6 +2691,7 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message")); + + mutt_set_flag (Context, extra->hdr, M_DELETE, 0); ++ mutt_set_flag (Context, extra->hdr, M_PURGED, 0); + redraw = REDRAW_STATUS | REDRAW_INDEX; + if (option (OPTRESOLVE)) + { +@@ -2704,9 +2708,11 @@ + CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)")); + + r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0, ++ ch == OP_UNDELETE_THREAD ? 0 : 1) ++ + mutt_thread_set_flag (extra->hdr, M_PURGED, 0, + ch == OP_UNDELETE_THREAD ? 0 : 1); + +- if (r != -1) ++ if (r > -1) + { + if (option (OPTRESOLVE)) + { +diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-trash/PATCHES +--- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100 ++++ mutt-1.6.1-trash/PATCHES 2016-06-12 18:43:04.889517563 +0100 +@@ -0,0 +1 @@ ++patch-trash-neo-20160612 +diff -urN mutt-1.6.1/pattern.c mutt-1.6.1-trash/pattern.c +--- mutt-1.6.1/pattern.c 2016-06-12 18:43:00.413447762 +0100 ++++ mutt-1.6.1-trash/pattern.c 2016-06-12 18:43:04.916517984 +0100 +@@ -1367,8 +1367,9 @@ + { + switch (op) + { +- case M_DELETE: + case M_UNDELETE: ++ mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_PURGED, 0); ++ case M_DELETE: + mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_DELETE, + (op == M_DELETE)); + break; +diff -urN mutt-1.6.1/postpone.c mutt-1.6.1-trash/postpone.c +--- mutt-1.6.1/postpone.c 2016-06-12 18:43:00.414447777 +0100 ++++ mutt-1.6.1-trash/postpone.c 2016-06-12 18:43:04.917518000 +0100 +@@ -277,6 +277,9 @@ + /* finished with this message, so delete it. */ + mutt_set_flag (PostContext, h, M_DELETE, 1); + ++ /* and consider it saved, so that it won't be moved to the trash folder */ ++ mutt_set_flag (PostContext, h, M_APPENDED, 1); ++ + /* update the count for the status display */ + PostCount = PostContext->msgcount - PostContext->deleted; + +diff -urN mutt-1.6.1/README.trash mutt-1.6.1-trash/README.trash +--- mutt-1.6.1/README.trash 1970-01-01 01:00:00.000000000 +0100 ++++ mutt-1.6.1-trash/README.trash 2016-06-12 18:43:04.748515364 +0100 +@@ -0,0 +1,74 @@ ++Trash Folder Patch ++================== ++ ++ Automatically move "deleted" emails to a trash bin ++ ++Patch ++----- ++ ++ To check if Mutt supports "Trash Folder", look for "patch-trash" in the ++ mutt version. ++ ++ If IMAP is enabled, this patch will use it ++ ++ Dependencies ++ * mutt-1.6.1 ++ * IMAP support ++ ++Introduction ++------------ ++ ++ In Mutt, when you "delete" an email it is first marked deleted. The email ++ isn't really gone until is called. This happens when the ++ user leaves the folder, or the function is called manually. ++ ++ After '' has been called the email is gone forever. ++ ++ The $trash variable defines a folder in which to keep old emails. As ++ before, first you mark emails for deletion. When is called ++ the emails are moved to the trash folder. ++ ++ The '$trash' path can be either a full directory, or be relative to the ++ $folder variable, like the 'mailboxes' command. ++ ++ > Note ++ > ++ > Emails deleted from the trash folder are gone forever. ++ ++Variables ++--------- ++ ++ Trash Variables ++ ++ | Name | Type | Default | ++ |-------|--------|---------| ++ | trash | string | (none) | ++ ++Functions ++--------- ++ ++ Trash Functions ++ ++ | Menus | Default Key | Function | Description | ++ |-------------|-------------|-------------------|-------------------------------------------------------------| ++ | index,pager | (none) | '' | really delete the current entry, bypassing the trash folder | ++ ++See Also ++-------- ++ ++ * NeoMutt project ++ * folder-hook ++ ++Known Bugs ++---------- ++ ++ None ++ ++Credits ++------- ++ ++ * Cedric Duval ++ * Benjamin Kuperman ++ * Paul Miller ++ * Richard Russon ++ From 4e09623b6f110088d987717460e818af4a2e1bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 3 Jul 2016 17:05:20 +0200 Subject: [PATCH 041/508] libjpeg(-turbo): 1.4.2 -> 1.5.0 --- pkgs/development/libraries/libjpeg-turbo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix index c326e630bd0..7d8de0b40af 100644 --- a/pkgs/development/libraries/libjpeg-turbo/default.nix +++ b/pkgs/development/libraries/libjpeg-turbo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, nasm }: stdenv.mkDerivation rec { - name = "libjpeg-turbo-1.4.2"; + name = "libjpeg-turbo-1.5.0"; src = fetchurl { url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz"; - sha256 = "0gi349hp1x7mb98s4mf66sb2xay2kjjxj9ihrriw0yiy0k9va6sj"; + sha256 = "0pq3lav976d6a1d16yyqrj1b4gmhk1ca4zar6zp00avxlqqpqfcz"; }; patches = From cd04b8360551a0d3c9fa163e91fb7de0c2a19e83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 11:43:25 +0200 Subject: [PATCH 042/508] ffmpeg_3: 3.0.2 -> 3.1.1 --- pkgs/development/libraries/ffmpeg/3.0.nix | 7 ------- pkgs/development/libraries/ffmpeg/3.1.nix | 7 +++++++ pkgs/top-level/all-packages.nix | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 pkgs/development/libraries/ffmpeg/3.0.nix create mode 100644 pkgs/development/libraries/ffmpeg/3.1.nix diff --git a/pkgs/development/libraries/ffmpeg/3.0.nix b/pkgs/development/libraries/ffmpeg/3.0.nix deleted file mode 100644 index 14c29f36bed..00000000000 --- a/pkgs/development/libraries/ffmpeg/3.0.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ callPackage, ... } @ args: - -callPackage ./generic.nix (args // rec { - version = "${branch}.2"; - branch = "3.0"; - sha256 = "0dpx15001ha9p8h8vfg1lm9pggbc96kmb546hz88wdac5xycgqrh"; -}) diff --git a/pkgs/development/libraries/ffmpeg/3.1.nix b/pkgs/development/libraries/ffmpeg/3.1.nix new file mode 100644 index 00000000000..25892e18684 --- /dev/null +++ b/pkgs/development/libraries/ffmpeg/3.1.nix @@ -0,0 +1,7 @@ +{ callPackage, ... } @ args: + +callPackage ./generic.nix (args // rec { + version = "${branch}.1"; + branch = "3.1"; + sha256 = "1d5knh87cgnla5zawy56gkrpb48qhyiq7i0pm8z9hyx3j05abg55"; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f42e835303e..5fe1ee58b90 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7059,14 +7059,14 @@ in ffmpeg_2_8 = callPackage ../development/libraries/ffmpeg/2.8.nix { inherit (darwin.apple_sdk.frameworks) Cocoa; }; - ffmpeg_3_0 = callPackage ../development/libraries/ffmpeg/3.0.nix { + ffmpeg_3_1 = callPackage ../development/libraries/ffmpeg/3.1.nix { inherit (darwin.apple_sdk.frameworks) Cocoa; }; # Aliases ffmpeg_0 = self.ffmpeg_0_10; ffmpeg_1 = self.ffmpeg_1_2; ffmpeg_2 = self.ffmpeg_2_8; - ffmpeg_3 = self.ffmpeg_3_0; + ffmpeg_3 = self.ffmpeg_3_1; ffmpeg = self.ffmpeg_3; ffmpeg-full = callPackage ../development/libraries/ffmpeg-full { From 93b246287bb0ca4a86b9f00140939784c81f3b49 Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 9 Jul 2016 12:16:30 +0200 Subject: [PATCH 043/508] urlwatch: 2.1 -> 2.2 --- pkgs/tools/networking/urlwatch/default.nix | 9 +++-- pkgs/tools/networking/urlwatch/setup.patch | 42 ++++++++++++++++++++++ 2 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 pkgs/tools/networking/urlwatch/setup.patch diff --git a/pkgs/tools/networking/urlwatch/default.nix b/pkgs/tools/networking/urlwatch/default.nix index 67b53c83448..3634b852fad 100644 --- a/pkgs/tools/networking/urlwatch/default.nix +++ b/pkgs/tools/networking/urlwatch/default.nix @@ -1,14 +1,19 @@ { stdenv, fetchurl, python3Packages }: python3Packages.buildPythonApplication rec { - name = "urlwatch-2.1"; + name = "urlwatch-2.2"; src = fetchurl { url = "http://thp.io/2008/urlwatch/${name}.tar.gz"; - sha256 = "0xn435cml9wjwk39117p1diqmvw3jbmv9ccr7230iaf7z59vf9v6"; + sha256 = "0s9056mm1hkj5gpzsb5bz6fwxk0nm73i0dhnqwa1bfddjnvpl9d3"; }; + patches = [ + ./setup.patch + ]; + propagatedBuildInputs = with python3Packages; [ + keyring minidb pyyaml requests2 diff --git a/pkgs/tools/networking/urlwatch/setup.patch b/pkgs/tools/networking/urlwatch/setup.patch new file mode 100644 index 00000000000..66626dbf025 --- /dev/null +++ b/pkgs/tools/networking/urlwatch/setup.patch @@ -0,0 +1,42 @@ +From ebe7b90100a3d960f53fdc9409d2d89eaa61bf11 Mon Sep 17 00:00:00 2001 +From: Thomas Perl +Date: Tue, 28 Jun 2016 18:15:51 +0200 +Subject: [PATCH] Check current directory and use os.path.relpath (Fixes #73) + +--- + setup.py | 11 ++++++++--- + 1 file changed, 8 insertions(+), 3 deletions(-) + +diff --git a/setup.py b/setup.py +index 947a7c8..45405cd 100644 +--- a/setup.py ++++ b/setup.py +@@ -7,10 +7,15 @@ + + import os + import re ++import sys + + PACKAGE_NAME = 'urlwatch' + DEPENDENCIES = ['minidb', 'PyYAML', 'requests'] +-HERE = os.path.dirname(__file__) ++HERE = os.path.abspath(os.path.dirname(__file__)) ++ ++if os.path.normpath(os.getcwd()) != os.path.normpath(HERE): ++ print('You must run {} inside {} (cwd={})'.format(os.path.basename(__file__), HERE, os.getcwd())) ++ sys.exit(1) + + # Assumptions: + # 1. Package name equals main script file name (and only one script) +@@ -29,9 +34,9 @@ + + m['scripts'] = [os.path.join(HERE, PACKAGE_NAME)] + m['package_dir'] = {'': os.path.join(HERE, 'lib')} +-m['packages'] = ['.'.join(dirname[len(HERE)+1:].split(os.sep)[1:]) ++m['packages'] = ['.'.join(os.path.relpath(dirname, HERE).split(os.sep)[1:]) + for dirname, _, files in os.walk(os.path.join(HERE, 'lib')) if '__init__.py' in files] +-m['data_files'] = [(dirname[len(HERE)+1:], [os.path.join(dirname[len(HERE)+1:], fn) for fn in files]) ++m['data_files'] = [(os.path.relpath(dirname, HERE), [os.path.join(os.path.relpath(dirname, HERE), fn) for fn in files]) + for dirname, _, files in os.walk(os.path.join(HERE, 'share')) if files] + m['install_requires'] = DEPENDENCIES + From cf5ebca53ea194778f5cc1beff3db621804c0d3a Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Mon, 4 Jul 2016 01:13:08 -0700 Subject: [PATCH 044/508] texinfo: 6.0 -> 6.1 --- pkgs/development/tools/misc/texinfo/{6.0.nix => 6.1.nix} | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) rename pkgs/development/tools/misc/texinfo/{6.0.nix => 6.1.nix} (92%) diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.1.nix similarity index 92% rename from pkgs/development/tools/misc/texinfo/6.0.nix rename to pkgs/development/tools/misc/texinfo/6.1.nix index 507ca22cd1a..f19ccb35508 100644 --- a/pkgs/development/tools/misc/texinfo/6.0.nix +++ b/pkgs/development/tools/misc/texinfo/6.1.nix @@ -3,11 +3,11 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "texinfo-6.0"; + name = "texinfo-6.1"; src = fetchurl { url = "mirror://gnu/texinfo/${name}.tar.xz"; - sha256 = "1r3i6jyynn6ab45fxw5bms8mflk9ry4qpj6gqyry72vfd5c47fhi"; + sha256 = "1ll3d0l8izygdxqz96wfr2631kxahifwdknpgsx2090vw963js5c"; }; buildInputs = [ perl xz ] @@ -30,6 +30,7 @@ stdenv.mkDerivation rec { description = "The GNU documentation system"; license = licenses.gpl3Plus; platforms = platforms.all; + maintainers = [ maintainers.vrthra ]; longDescription = '' Texinfo is the official documentation format of the GNU project. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5fe1ee58b90..3040750d6da 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6625,7 +6625,7 @@ in texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { }; texinfo4 = texinfo413; texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { }; - texinfo6 = callPackage ../development/tools/misc/texinfo/6.0.nix { }; + texinfo6 = callPackage ../development/tools/misc/texinfo/6.1.nix { }; texinfo = texinfo6; texinfoInteractive = appendToName "interactive" ( texinfo.override { interactive = true; } From 2dca0444fa055d734b7404ab2e08ebed7c1e37ce Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Mon, 4 Jul 2016 09:43:09 -0700 Subject: [PATCH 045/508] gettext: 0.19.7 -> 0.19.8 --- pkgs/development/libraries/gettext/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 63eb086b0fb..bf65e694753 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gettext-${version}"; - version = "0.19.7"; + version = "0.19.8"; src = fetchurl { url = "mirror://gnu/gettext/${name}.tar.gz"; - sha256 = "0gy2b2aydj8r0sapadnjw8cmb8j2rynj28d5qs1mfa800njd51jk"; + sha256 = "13ylc6n3hsk919c7xl0yyibc3pfddzb53avdykn4hmk8g6yzd91x"; }; patches = [ ./absolute-paths.diff ]; @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/gettext/; - maintainers = with lib.maintainers; [ zimbatm ]; + maintainers = with lib.maintainers; [ zimbatm vrthra ]; platforms = lib.platforms.all; }; } From 70ef8a10eb80243e17b4c2b3f996285aefecd82d Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Wed, 6 Jul 2016 20:22:15 -0700 Subject: [PATCH 046/508] gmp: 6.1.0 -> 6.1.1 --- pkgs/development/libraries/gmp/6.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix index d17ac5b8760..32009406a73 100644 --- a/pkgs/development/libraries/gmp/6.x.nix +++ b/pkgs/development/libraries/gmp/6.x.nix @@ -3,11 +3,11 @@ with { inherit (stdenv.lib) optional optionalString; }; let self = stdenv.mkDerivation rec { - name = "gmp-6.1.0"; + name = "gmp-6.1.1"; src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv urls = [ "mirror://gnu/gmp/${name}.tar.bz2" "ftp://ftp.gmplib.org/pub/${name}/${name}.tar.bz2" ]; - sha256 = "1s3kddydvngqrpc6i1vbz39raya2jdcl042wi0ksbszgjjllk129"; + sha256 = "1mpzprdzkgfpdc1v2lf4dxlxps4x8bvmzvd8n1ri6gw9y9jrh458"; }; #outputs TODO: split $cxx due to libstdc++ dependency; maybe port to gmp5; @@ -73,7 +73,7 @@ let self = stdenv.mkDerivation rec { ''; platforms = platforms.all; - maintainers = [ maintainers.peti ]; + maintainers = [ maintainers.peti maintainers.vrthra ]; }; }; in self From b7c134358d738db7f8ff862219ad48d53ce4b62a Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Tue, 5 Jul 2016 20:51:24 +0200 Subject: [PATCH 047/508] coreutils: use symlinks instead of shell wrapper --- pkgs/tools/misc/coreutils/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 4ed43a18988..ea9ee271ebf 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -3,7 +3,7 @@ , selinuxSupport? false, libselinux ? null, libsepol ? null , autoconf, automake114x, texinfo , withPrefix ? false -, singleBinary ? true # you can also pass "symlinks", for example +, singleBinary ? "symlinks" # you can also pass "shebangs" or false }: assert aclSupport -> acl != null; From 9d3228f99d653747715c82f0d78fb39e5575bfc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 16:45:36 +0200 Subject: [PATCH 048/508] gnumake42: bugfix 4.2 -> 4.2.1 --- pkgs/development/tools/build-managers/gnumake/4.2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/gnumake/4.2/default.nix b/pkgs/development/tools/build-managers/gnumake/4.2/default.nix index edb3f841069..323f33d7d6c 100644 --- a/pkgs/development/tools/build-managers/gnumake/4.2/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/4.2/default.nix @@ -3,14 +3,14 @@ assert guileSupport -> ( pkgconfig != null && guile != null ); let - version = "4.2"; + version = "4.2.1"; in stdenv.mkDerivation { name = "gnumake-${version}"; src = fetchurl { url = "mirror://gnu/make/make-${version}.tar.bz2"; - sha256 = "0pv5rvz5pp4njxiz3syf786d2xp4j7gzddwjvgw5zmz55yvf6p2f"; + sha256 = "12f5zzyq2w56g95nni65hc0g5p7154033y2f3qmjvd016szn5qnn"; }; patchFlags = "-p0"; From f622ba281a274ce8c39acfdf2a496e09d430f38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 16:46:15 +0200 Subject: [PATCH 049/508] gnumake default: 4.1.* -> 4.2.* --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4d01845ed4b..7cb2a01ba0b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6323,7 +6323,7 @@ in gnumake40 = callPackage ../development/tools/build-managers/gnumake/4.0 { }; gnumake41 = callPackage ../development/tools/build-managers/gnumake/4.1 { }; gnumake42 = callPackage ../development/tools/build-managers/gnumake/4.2 { }; - gnumake = self.gnumake41; + gnumake = self.gnumake42; gob2 = callPackage ../development/tools/misc/gob2 { }; From 1e53d4a7776acbf61f42c094c103652c8068ad64 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 5 Jul 2016 23:45:04 +0900 Subject: [PATCH 050/508] fontconfig: fix etc priority --- .../config/fonts/fontconfig-ultimate.nix | 153 +++++----- nixos/modules/config/fonts/fontconfig.nix | 262 +++++++++--------- .../libraries/fontconfig/default.nix | 1 - .../libraries/fontconfig/make-fonts-conf.xsl | 2 - 4 files changed, 216 insertions(+), 202 deletions(-) diff --git a/nixos/modules/config/fonts/fontconfig-ultimate.nix b/nixos/modules/config/fonts/fontconfig-ultimate.nix index 02568f9de51..47d7cc5924d 100644 --- a/nixos/modules/config/fonts/fontconfig-ultimate.nix +++ b/nixos/modules/config/fonts/fontconfig-ultimate.nix @@ -3,6 +3,84 @@ with lib; let fcBool = x: if x then "true" else "false"; + cfg = config.fonts.fontconfig.ultimate; + fontconfigUltimateConf = pkgs.writeText "ultimate-conf" '' + + + + + ${optionalString (!cfg.allowBitmaps) '' + + + + + false + + + + ''} + + ${optionalString cfg.allowType1 '' + + + + + + Type 1 + + + + + ''} + + + + + ${fcBool cfg.useEmbeddedBitmaps} + + + + + + + ${fcBool cfg.forceAutohint} + + + + + + + ${fcBool cfg.renderMonoTTFAsBitmap} + + + + + ''; + confPkg = + let version = pkgs.fontconfig.configVersion; + in pkgs.runCommand "font-ultimate-conf" {} '' + mkdir -p $out/etc/fonts/{,${version}/}conf.d/ + + cp ${fontconfigUltimateConf} \ + $out/etc/fonts/conf.d/52-fontconfig-ultimate.conf + + cp ${fontconfigUltimateConf} \ + $out/etc/fonts/${version}/conf.d/52-fontconfig-ultimate.conf + + ${optionalString (cfg.substitutions != "none") '' + cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \ + $out/etc/fonts/conf.d/ + cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \ + $out/etc/fonts/${version}/conf.d/ + ''} + + ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \ + $out/etc/fonts/conf.d/ + + ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \ + $out/etc/fonts/${version}/conf.d/ + ''; + in { @@ -115,78 +193,11 @@ in }; - config = - let ultimate = config.fonts.fontconfig.ultimate; - fontconfigUltimateConf = '' - - - + config = mkIf (config.fonts.fontconfig.enable && cfg.enable) { - ${optionalString (!ultimate.allowBitmaps) '' - - - - - false - - - - ''} - - ${optionalString ultimate.allowType1 '' - - - - - - Type 1 - - - - - ''} - - - - - ${fcBool ultimate.useEmbeddedBitmaps} - - - - - - - ${fcBool ultimate.forceAutohint} - - - - - - - ${fcBool ultimate.renderMonoTTFAsBitmap} - - - - ${optionalString (ultimate.substitutions != "none") '' - - ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${ultimate.substitutions} - ''} - - ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d - - - ''; - in mkIf (config.fonts.fontconfig.enable && ultimate.enable) { - - environment.etc."fonts/conf.d/52-fontconfig-ultimate.conf" = { - text = fontconfigUltimateConf; - }; - - environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/52-fontconfig-ultimate.conf" = { - text = fontconfigUltimateConf; - }; - - environment.variables = ultimate.rendering; + fonts.fontconfig.confPkgs = [ confPkg ]; + + environment.variables = cfg.rendering; }; diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix index 1eaebe4b2bb..fcf5add4519 100644 --- a/nixos/modules/config/fonts/fontconfig.nix +++ b/nixos/modules/config/fonts/fontconfig.nix @@ -2,6 +2,121 @@ with lib; +let cfg = config.fonts.fontconfig; + fcBool = x: "" + (if x then "true" else "false") + ""; + renderConf = pkgs.writeText "render-conf" '' + + + + + + + + ${fcBool cfg.hinting.enable} + + + ${fcBool cfg.hinting.autohint} + + + hint${cfg.hinting.style} + + + ${fcBool cfg.antialias} + + + ${cfg.subpixel.rgba} + + + lcd${cfg.subpixel.lcdfilter} + + + + ${optionalString (cfg.dpi != 0) '' + + + ${toString cfg.dpi} + + + ''} + + + ''; + genericAliasConf = + let genDefault = fonts: name: + optionalString (fonts != []) '' + + ${name} + + ${concatStringsSep "" + (map (font: '' + ${font} + '') fonts)} + + + ''; + in + pkgs.writeText "generic-alias-conf" '' + + + + + + ${genDefault cfg.defaultFonts.sansSerif "sans-serif"} + + ${genDefault cfg.defaultFonts.serif "serif"} + + ${genDefault cfg.defaultFonts.monospace "monospace"} + + + ''; + cacheConf = let + cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; }; + in + pkgs.writeText "cache-conf" '' + + + + + ${concatStringsSep "\n" (map (font: "${font}") config.fonts.fonts)} + + ${cache pkgs.fontconfig} + ${optionalString (pkgs.stdenv.isx86_64 && cfg.cache32Bit) '' + ${cache pkgs.pkgsi686Linux.fontconfig} + ''} + + ''; + userConf = pkgs.writeText "user-conf" '' + + + + fontconfig/conf.d + fontconfig/fonts.conf + + ''; + fontsConf = pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; }; + confPkg = + let version = pkgs.fontconfig.configVersion; + in pkgs.runCommand "fontconfig-conf" {} '' + mkdir -p $out/etc/fonts/{,${version}/}conf.d + + ln -s ${fontsConf} $out/etc/fonts/fonts.conf + + ln -s ${pkgs.fontconfig.out}/etc/fonts/fonts.conf $out/etc/fonts/${version}/fonts.conf + ln -s ${pkgs.fontconfig.out}/etc/fonts/conf.d/* $out/etc/fonts/${version}/conf.d/ + + ln -s ${renderConf} $out/etc/fonts/conf.d/10-nixos-rendering.conf + ln -s ${genericAliasConf} $out/etc/fonts/conf.d/60-nixos-generic-alias.conf + + ln -s ${cacheConf} $out/etc/fonts/${version}/conf.d/00-nixos.conf + + ln -s ${renderConf} $out/etc/fonts/${version}/conf.d/10-nixos-rendering.conf + ln -s ${genericAliasConf} $out/etc/fonts/${version}/conf.d/30-nixos-generic-alias.conf + + ${optionalString cfg.includeUserConf + "ln -s ${userConf} $out/etc/fonts/${version}/conf.d/99-user.conf"} + + ''; +in { options = { @@ -21,6 +136,15 @@ with lib; ''; }; + confPkgs = mkOption { + internal = true; + type = with types; listOf path; + default = [ ]; + description = '' + Fontconfig configuration packages. + ''; + }; + antialias = mkOption { type = types.bool; default = true; @@ -143,135 +267,17 @@ with lib; }; - config = - let fontconfig = config.fonts.fontconfig; - fcBool = x: "" + (if x then "true" else "false") + ""; - renderConf = '' - - - + config = mkIf cfg.enable { + fonts.fontconfig.confPkgs = [ confPkg ]; - - - - ${fcBool fontconfig.hinting.enable} - - - ${fcBool fontconfig.hinting.autohint} - - - hint${fontconfig.hinting.style} - - - ${fcBool fontconfig.antialias} - - - ${fontconfig.subpixel.rgba} - - - lcd${fontconfig.subpixel.lcdfilter} - - + environment.etc.fonts.source = + let fontConf = pkgs.symlinkJoin { + name = "fontconfig-etc"; + paths = cfg.confPkgs; + }; + in "${fontConf}/etc/fonts/"; - ${optionalString (fontconfig.dpi != 0) '' - - - ${toString fontconfig.dpi} - - - ''} - - - ''; - genericAliasConf = '' - - - - - - ${optionalString (fontconfig.defaultFonts.sansSerif != []) '' - - sans-serif - - ${concatStringsSep "\n" - (map (font: "${font}") - fontconfig.defaultFonts.sansSerif)} - - - ''} - ${optionalString (fontconfig.defaultFonts.serif != []) '' - - serif - - ${concatStringsSep "\n" - (map (font: "${font}") - fontconfig.defaultFonts.serif)} - - - ''} - ${optionalString (fontconfig.defaultFonts.monospace != []) '' - - monospace - - ${concatStringsSep "\n" - (map (font: "${font}") - fontconfig.defaultFonts.monospace)} - - - ''} - - - ''; - in mkIf fontconfig.enable { - - # Fontconfig 2.10 backward compatibility - - # Bring in the default (upstream) fontconfig configuration, only for fontconfig 2.10 - environment.etc."fonts/fonts.conf".source = - pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; }; - - environment.etc."fonts/conf.d/10-nixos-rendering.conf".text = renderConf; - environment.etc."fonts/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf; - - # Versioned fontconfig > 2.10. Take shared fonts.conf from fontconfig. - # Otherwise specify only font directories. - environment.etc."fonts/${pkgs.fontconfig.configVersion}/fonts.conf".source = - "${pkgs.fontconfig.out}/etc/fonts/fonts.conf"; - - environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/00-nixos.conf".text = - let - cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; }; - in '' - - - - - ${concatStringsSep "\n" (map (font: "${font}") config.fonts.fonts)} - - ${cache pkgs.fontconfig} - ${optionalString (pkgs.stdenv.isx86_64 && config.fonts.fontconfig.cache32Bit) '' - ${cache pkgs.pkgsi686Linux.fontconfig} - ''} - - ''; - - environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/10-nixos-rendering.conf".text = renderConf; - environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf; - - environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/99-user.conf" = { - enable = fontconfig.includeUserConf; - text = '' - - - - fontconfig/conf.d - fontconfig/fonts.conf - - ''; - }; - - environment.systemPackages = [ pkgs.fontconfig ]; - - }; + environment.systemPackages = [ pkgs.fontconfig ]; + }; } diff --git a/pkgs/development/libraries/fontconfig/default.nix b/pkgs/development/libraries/fontconfig/default.nix index 6acf1ebce29..f18ea5948f1 100644 --- a/pkgs/development/libraries/fontconfig/default.nix +++ b/pkgs/development/libraries/fontconfig/default.nix @@ -68,7 +68,6 @@ stdenv.mkDerivation rec { cd "$out/etc/fonts" rm conf.d/{50-user,51-local}.conf "${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${fontbhttf}" \ - --stringparam fontconfig "$out" \ --stringparam fontconfigConfigVersion "${configVersion}" \ --path $out/share/xml/fontconfig \ ${./make-fonts-conf.xsl} $out/etc/fonts/fonts.conf \ diff --git a/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl b/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl index b59fcd0187b..dddbbe9e516 100644 --- a/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl +++ b/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl @@ -28,8 +28,6 @@ /var/cache/fontconfig - - /etc/fonts/conf.d /etc/fonts//conf.d From 1eb4e1ab73f0dd6394ddaf85e5f001356e031f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 15:40:39 +0200 Subject: [PATCH 051/508] orc: bug-fix 0.4.24 -> 0.4.25 --- pkgs/development/compilers/orc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/orc/default.nix b/pkgs/development/compilers/orc/default.nix index 1488736a480..057b51ce80c 100644 --- a/pkgs/development/compilers/orc/default.nix +++ b/pkgs/development/compilers/orc/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "orc-0.4.24"; + name = "orc-0.4.25"; src = fetchurl { url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.xz"; - sha256 = "16ykgdrgxr6pfpy931p979cs68klvwmk3ii1k0a00wr4nn9x931k"; + sha256 = "1lak3hyvvb0w9avzmf0a8vayb7vqhj4m709q1czlhvgjb15dbcf1"; }; outputs = [ "dev" "out" ]; From b993903ce8f1958bae3617666ddeb4d683434ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 15:42:08 +0200 Subject: [PATCH 052/508] libpng: 1.6.21 -> 1.6.23 --- pkgs/development/libraries/libpng/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index 71b7b2e18ef..c1614a277e9 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -3,11 +3,11 @@ assert zlib != null; let - version = "1.6.21"; - sha256 = "10r0xqasm8fi0dx95bpca63ab4myb8g600ypyndj2r4jxd4ii3vc"; + version = "1.6.23"; + sha256 = "1wb2j8sba6g2h4vmv4pwsp93q74qw4gyqqs4b7vfjmpcv9xix4kd"; patch_src = fetchurl { url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz"; - sha256 = "0wwcc52yzjaxvpfkicz20j7yzpy02hpnsm4jjlvw74gy4qjhx9vd"; + sha256 = "1lvsn1kmarzpn269zgykjfmxq16zrdhpd1a75nzgclx97436x408"; }; whenPatched = stdenv.lib.optionalString apngSupport; From ae154ae8ef45a23239c9bd1bdf5c787013d35d01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 15:42:42 +0200 Subject: [PATCH 053/508] libpng: improve multi-output handling --- pkgs/development/libraries/libpng/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index c1614a277e9..9c4a1b13e01 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -21,17 +21,14 @@ in stdenv.mkDerivation rec { postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1"; outputs = [ "dev" "out" "man" ]; + outputBin = "dev"; propagatedBuildInputs = [ zlib ]; - preConfigure = "export bin=$dev"; - # 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"''; - passthru = { inherit zlib; }; meta = with stdenv.lib; { From d2dab39bfa34ce23910b502ea0e2c77d02898a5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 16:26:42 +0200 Subject: [PATCH 054/508] ncurses: 5.9 -> 6.0 Upstream claims it's API-compatible with 5.* It no longer installed *.pc until I passed pkgconfig executable; without those things were breaking, even our library symlinking. --- .../development/libraries/ncurses/default.nix | 12 ++--- .../development/libraries/ncurses/gcc-5.patch | 46 ------------------- 2 files changed, 6 insertions(+), 52 deletions(-) delete mode 100644 pkgs/development/libraries/ncurses/gcc-5.patch diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix index edd26360596..83864751409 100644 --- a/pkgs/development/libraries/ncurses/default.nix +++ b/pkgs/development/libraries/ncurses/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl +{ lib, stdenv, fetchurl, pkgconfig , mouseSupport ? false , unicode ? true @@ -6,19 +6,18 @@ , gpm # Extra Options -, abiVersion ? "5" +, abiVersion ? "6" }: stdenv.mkDerivation rec { - name = "ncurses-5.9"; + name = "ncurses-6.0"; src = fetchurl { url = "mirror://gnu/ncurses/${name}.tar.gz"; - sha256 = "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh"; + sha256 = "0q3jck7lna77z5r42f13c4xglc7azd19pxfrjrpgp2yf615w4lgm"; }; - # gcc-5.patch should be removed after 5.9 - patches = [ ./clang.patch ./gcc-5.patch ]; + patches = [ ./clang.patch ]; outputs = [ "dev" "out" "man" ]; setOutputFlags = false; # some aren't supported @@ -33,6 +32,7 @@ stdenv.mkDerivation rec { # Only the C compiler, and explicitly not C++ compiler needs this flag on solaris: CFLAGS = lib.optionalString stdenv.isSunOS "-D_XOPEN_SOURCE_EXTENDED"; + nativeBuildInputs = [ pkgconfig ]; buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm; preConfigure = '' diff --git a/pkgs/development/libraries/ncurses/gcc-5.patch b/pkgs/development/libraries/ncurses/gcc-5.patch deleted file mode 100644 index 2448229b88e..00000000000 --- a/pkgs/development/libraries/ncurses/gcc-5.patch +++ /dev/null @@ -1,46 +0,0 @@ -https://bugs.gentoo.org/545114 - -extracted from the upstream change (which had many unrelated commits in one) - -From 97bb4678dc03e753290b39bbff30ba2825df9517 Mon Sep 17 00:00:00 2001 -From: "Thomas E. Dickey" -Date: Sun, 7 Dec 2014 03:10:09 +0000 -Subject: [PATCH] ncurses 5.9 - patch 20141206 - -+ modify MKlib_gen.sh to work around change in development version of - gcc introduced here: - https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html - https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html - (reports by Marcus Shawcroft, Maohui Lei). - -diff --git a/ncurses/base/MKlib_gen.sh b/ncurses/base/MKlib_gen.sh -index d8cc3c9..b91398c 100755 ---- a/ncurses/base/MKlib_gen.sh -+++ b/ncurses/base/MKlib_gen.sh -@@ -474,11 +474,22 @@ sed -n -f $ED1 \ - -e 's/gen_$//' \ - -e 's/ / /g' >>$TMP - -+cat >$ED1 < $ED2 -+cat $ED2 >$TMP -+ - $preprocessor $TMP 2>/dev/null \ --| sed \ -- -e 's/ / /g' \ -- -e 's/^ //' \ -- -e 's/_Bool/NCURSES_BOOL/g' \ -+| sed -f $ED1 \ - | $AWK -f $AW2 \ - | sed -f $ED3 \ - | sed \ From b7c59b7e16befc7851b40ae5cc6b4427567b0ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 16:28:16 +0200 Subject: [PATCH 055/508] at-spi2-core: bugfix 2.20.1 -> 2.20.2 --- pkgs/development/libraries/at-spi2-core/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/at-spi2-core/default.nix b/pkgs/development/libraries/at-spi2-core/default.nix index e3c558057c8..20e18747e67 100644 --- a/pkgs/development/libraries/at-spi2-core/default.nix +++ b/pkgs/development/libraries/at-spi2-core/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { versionMajor = "2.20"; - versionMinor = "1"; + versionMinor = "2"; moduleName = "at-spi2-core"; name = "${moduleName}-${versionMajor}.${versionMinor}"; src = fetchurl { url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz"; - sha256 = "6ed858e781f5aa9a9662b3beb5ef82f733dac040afc8255d85dffd2097f16900"; + sha256 = "88a4de9d43139f13cca531b47b901bc1b56e0ab06ba899126644abd4ac16a143"; }; outputs = [ "dev" "out" ]; From b1a07467d2fdf785e1ef10cd43e2f6c7d07c247a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 17:17:38 +0200 Subject: [PATCH 056/508] gd: security 2.2.1 -> 2.2.2 CVE-2015-8874, CVE-2016-5767 --- pkgs/development/libraries/gd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix index 7f7e000d16e..f4386a22ffa 100644 --- a/pkgs/development/libraries/gd/default.nix +++ b/pkgs/development/libraries/gd/default.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { name = "gd-${version}"; - version = "2.2.1"; + version = "2.2.2"; src = fetchurl { url = "https://github.com/libgd/libgd/releases/download/${name}/libgd-${version}.tar.xz"; - sha256 = "0xmrqka1ggqgml84xbmkw1y0r0lg7qn657v5b1my8pry92p651vh"; + sha256 = "1311g5mva2xlzqv3rjqjc4jjkn5lzls4skvr395h633zw1n7b7s8"; }; nativeBuildInputs = [ pkgconfig ]; From 6f07fdf469ecef24b0ce0cdbb75b2c454da8018b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 18:44:44 +0200 Subject: [PATCH 057/508] v4l-utils: 1.6.3 -> 1.10.1 This fixes build after libjpeg(-turbo) update. /cc maintainers: @codypoel, @viric. --- pkgs/os-specific/linux/v4l-utils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/v4l-utils/default.nix b/pkgs/os-specific/linux/v4l-utils/default.nix index 476f3ffcac6..dbb3e60c335 100644 --- a/pkgs/os-specific/linux/v4l-utils/default.nix +++ b/pkgs/os-specific/linux/v4l-utils/default.nix @@ -16,11 +16,11 @@ let in stdenv.mkDerivation rec { - name = "v4l-utils-1.6.3"; + name = "v4l-utils-1.10.1"; src = fetchurl { url = "http://linuxtv.org/downloads/v4l-utils/${name}.tar.bz2"; - sha256 = "0k46z5gqjzg702m2vs4sv6sxynq1sj14m0pgwvl2gkgg3dfbyjhn"; + sha256 = "1h1nhg5cmmzlbipak526nk4bm6d0yb217mll75f3rpg7kz1cqiv1"; }; outputs = [ "dev" "out" ]; From 310bdf6ecfd432b6bd1c6b24367661ff76e2f960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 19:18:05 +0200 Subject: [PATCH 058/508] libgphoto2: fix build with updated libjpeg(-turbo) ... via a patch from Debian. --- pkgs/development/libraries/libgphoto2/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/libgphoto2/default.nix b/pkgs/development/libraries/libgphoto2/default.nix index 55129a94476..af8c1a8f1a2 100644 --- a/pkgs/development/libraries/libgphoto2/default.nix +++ b/pkgs/development/libraries/libgphoto2/default.nix @@ -8,6 +8,12 @@ stdenv.mkDerivation rec { sha256 = "1wjf79ipqwb5phfjjwf15rwgigakylnfqaj4crs5qnds6ba6i1ld"; }; + patches = [(fetchurl { + url = "https://anonscm.debian.org/cgit/pkg-phototools/libgphoto2.git/plain" + + "/debian/patches/libjpeg_turbo_1.5.0_fix.patch?id=8ce79a2a02d"; + sha256 = "114iyhk6idxz2jhnzpf1glqm6d0x0y8cqfpqxz9i96q9j7x3wwin"; + })]; + nativeBuildInputs = [ pkgconfig gettext ]; buildInputs = [ libtool libjpeg libusb1 ]; From 9f629280c631be9a861b71e1a924907756d4ec0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 9 Jul 2016 19:19:41 +0200 Subject: [PATCH 059/508] gst-*: maintenance 1.8.1 -> 1.8.2 For now I left *-vaapi out, as the jump would be larger, simple update isn't enough, and it's unreferenced in nixpkgs. --- pkgs/development/libraries/gstreamer/bad/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/base/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/core/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/ges/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/good/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/libav/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/ugly/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/validate/default.nix | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index d907450babb..ffe21d43792 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -14,7 +14,7 @@ let inherit (stdenv.lib) optional optionalString; in stdenv.mkDerivation rec { - name = "gst-plugins-bad-1.8.1"; + name = "gst-plugins-bad-1.8.2"; meta = with stdenv.lib; { description = "Gstreamer Bad Plugins"; @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-bad/${name}.tar.xz"; - sha256 = "1xa0r98vf0sxw6s90yysvfpzs9yl07xxdci0lv2c0kvkcgrmig8b"; + sha256 = "d7995317530c8773ec088f94d9320909d41da61996b801ebacce9a56af493f97"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index ddb7f9957dc..76f2662ec43 100644 --- a/pkgs/development/libraries/gstreamer/base/default.nix +++ b/pkgs/development/libraries/gstreamer/base/default.nix @@ -4,7 +4,7 @@ }: stdenv.mkDerivation rec { - name = "gst-plugins-base-1.8.1"; + name = "gst-plugins-base-1.8.2"; meta = { description = "Base plugins and helper libraries"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.xz"; - sha256 = "0vxd5w7r1jqp37cw5lhyc6vj2h6z8y9v3xarwd2c6rfjbjcdxa8m"; + sha256 = "9d7109c8fb0a5dec8edb17b0053c59a46aba7ddf48dc48ea822ebbbd4339d38d"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 95d89b411c5..43aec752054 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -3,7 +3,7 @@ }: stdenv.mkDerivation rec { - name = "gstreamer-1.8.1"; + name = "gstreamer-1.8.2"; meta = { description = "Open source multimedia framework"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gstreamer/${name}.tar.xz"; - sha256 = "01ribrzc4x9xlv6ci66w2svpqxywjc129m6f2xy9gp82jgxj4dss"; + sha256 = "9dbebe079c2ab2004ef7f2649fa317cabea1feb4fb5605c24d40744b90918341"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index fd1dd6724c3..836bcb6ce66 100644 --- a/pkgs/development/libraries/gstreamer/ges/default.nix +++ b/pkgs/development/libraries/gstreamer/ges/default.nix @@ -3,7 +3,7 @@ }: stdenv.mkDerivation rec { - name = "gstreamer-editing-services-1.8.1"; + name = "gstreamer-editing-services-1.8.2"; meta = with stdenv.lib; { description = "Library for creation of audio/video non-linear editors"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz"; - sha256 = "082h6r2kymgb78x6av5mxaszxlqnvr6afq935ackh914vb1anyw9"; + sha256 = "a1d57ff9461407cca1f6e7a9f31a5bdb73f73f33c488a3e3318b27e10a4332ae"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index c1846cad23c..1bd80cfa1c7 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -10,7 +10,7 @@ let inherit (stdenv.lib) optionals optionalString; in stdenv.mkDerivation rec { - name = "gst-plugins-good-1.8.1"; + name = "gst-plugins-good-1.8.2"; meta = with stdenv.lib; { description = "Gstreamer Good Plugins"; @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz"; - sha256 = "0wh9mpz3zj7vbdi3xn9gjncqal86kgxn9pdg5vl98y6n45wy20r1"; + sha256 = "8d7549118a3b7a009ece6bb38a05b66709c551d32d2adfd89eded4d1d7a23944"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index 82d64ae691f..312a8a1d394 100644 --- a/pkgs/development/libraries/gstreamer/libav/default.nix +++ b/pkgs/development/libraries/gstreamer/libav/default.nix @@ -9,7 +9,7 @@ assert withSystemLibav -> libav != null; stdenv.mkDerivation rec { - name = "gst-libav-1.8.1"; + name = "gst-libav-1.8.2"; meta = { homepage = "http://gstreamer.freedesktop.org"; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-libav/${name}.tar.xz"; - sha256 = "0cw9nc0079vmdp5r8hrrmglb1bzvsxy298j6yg25l6skqc493924"; + sha256 = "b5f3c7a27b39b5f5c2f0bfd546b0c655020faf6b38d27b64b346c43e5ebf687a"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index bfb6b831962..65490c7db24 100644 --- a/pkgs/development/libraries/gstreamer/ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/ugly/default.nix @@ -5,7 +5,7 @@ }: stdenv.mkDerivation rec { - name = "gst-plugins-ugly-1.8.1"; + name = "gst-plugins-ugly-1.8.2"; meta = with stdenv.lib; { description = "Gstreamer Ugly Plugins"; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-ugly/${name}.tar.xz"; - sha256 = "1kj6jijhwdknv362mcnhjm7zbcbhs0i2m3pvsdz7w3g67fd6lrcf"; + sha256 = "9c5b33a2a98fc1d6d6c99a1b536b1fb2de45f53cc8bf8ab85a8b8141fed1a8ac"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix index 47a401b9011..a837a94eac7 100644 --- a/pkgs/development/libraries/gstreamer/validate/default.nix +++ b/pkgs/development/libraries/gstreamer/validate/default.nix @@ -3,7 +3,7 @@ }: stdenv.mkDerivation rec { - name = "gst-validate-1.8.1"; + name = "gst-validate-1.8.2"; meta = { description = "Integration testing infrastructure for the GStreamer framework"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-validate/${name}.tar.xz"; - sha256 = "1gycl6bbrf9ryis6wdinv4zi7552lz9izw4ram8xr8nc2k00icm9"; + sha256 = "33c5b585c5ca1659fe6c09fdf02e45d8132c0d386b405bf527b14ab481a0bafe"; }; outputs = [ "dev" "out" ]; From 223aa9861378c51b84a0e34a10ebd81b333d448c Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Sat, 9 Jul 2016 22:01:02 +0200 Subject: [PATCH 060/508] elixir: 1.3.0 -> 1.3.1 --- pkgs/development/interpreters/elixir/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index fe78b966080..fc3070e55f1 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "elixir-${version}"; - version = "1.3.0"; + version = "1.3.1"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "elixir"; rev = "v${version}"; - sha256 = "06y8v239d5r3zr9s9mw19ws99qm7niicz69pqhawvg5qm4qxhvkr"; + sha256 = "0pihqgsnddrhhcpiphz170wgwlc59pd492iy4f66dajapm5k329d"; }; buildInputs = [ erlang rebar makeWrapper ]; From 0f6c79d561f45a58d4e278a4cf969dc5f657045a Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Sun, 3 Jul 2016 17:09:12 -0300 Subject: [PATCH 061/508] pekwm: init at 0.1.17 --- .../services/x11/window-managers/default.nix | 1 + .../services/x11/window-managers/pekwm.nix | 25 ++++++++++++ .../window-managers/pekwm/default.nix | 39 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 67 insertions(+) create mode 100644 nixos/modules/services/x11/window-managers/pekwm.nix create mode 100644 pkgs/applications/window-managers/pekwm/default.nix diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix index fce71bbda7e..94f1aa3add7 100644 --- a/nixos/modules/services/x11/window-managers/default.nix +++ b/nixos/modules/services/x11/window-managers/default.nix @@ -19,6 +19,7 @@ in ./jwm.nix ./metacity.nix ./openbox.nix + ./pekwm.nix ./notion.nix ./ratpoison.nix ./sawfish.nix diff --git a/nixos/modules/services/x11/window-managers/pekwm.nix b/nixos/modules/services/x11/window-managers/pekwm.nix new file mode 100644 index 00000000000..850335ce7dd --- /dev/null +++ b/nixos/modules/services/x11/window-managers/pekwm.nix @@ -0,0 +1,25 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.xserver.windowManager.pekwm; +in +{ + ###### interface + options = { + services.xserver.windowManager.pekwm.enable = mkEnableOption "pekwm"; + }; + + ###### implementation + config = mkIf cfg.enable { + services.xserver.windowManager.session = singleton { + name = "pekwm"; + start = '' + ${pkgs.pekwm}/bin/pekwm & + waitPID=$! + ''; + }; + environment.systemPackages = [ pkgs.pekwm ]; + }; +} diff --git a/pkgs/applications/window-managers/pekwm/default.nix b/pkgs/applications/window-managers/pekwm/default.nix new file mode 100644 index 00000000000..60753e46840 --- /dev/null +++ b/pkgs/applications/window-managers/pekwm/default.nix @@ -0,0 +1,39 @@ +{ stdenv, fetchurl, pkgconfig +, libpng, libjpeg +, libXext, libXft, libXpm, libXrandr, libXinerama }: + +stdenv.mkDerivation rec { + + name = "pekwm-${version}"; + version = "0.1.17"; + + src = fetchurl { + url = "https://www.pekwm.org/projects/pekwm/files/${name}.tar.bz2"; + sha256 = "003x6bxj1lb2ljxz3v414bn0rdl6z68c0r185fxwgs1qkyzx67wa"; + }; + + buildInputs = [ pkgconfig libpng libjpeg + libXext libXft libXpm libXrandr libXinerama ]; + + meta = with stdenv.lib; { + description = "A lightweight window manager"; + longDescription = '' + pekwm is a window manager that once upon a time was based on the + aewm++ window manager, but it has evolved enough that it no + longer resembles aewm++ at all. It has a much expanded + feature-set, including window grouping (similar to ion, pwm, or + fluxbox), autoproperties, xinerama, keygrabber that supports + keychains, and much more. + - Lightweight and Unobtrusive, a window manager shouldn't be + noticed. + - Very configurable, we all work and think in different ways. + - Automatic properties, for all the lazy people, make things + appear as they should when starting applications. + - Chainable Keygrabber, usability for everyone. + ''; + homepage = https://www.pekwm.org; + license = licenses.gpl2; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7c8549faf8..a109cc0eada 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13969,6 +13969,8 @@ in pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { }; + pekwm = callPackage ../applications/window-managers/pekwm { }; + pencil = callPackage ../applications/graphics/pencil { xulrunner = firefox-unwrapped; }; From f854c7d4f4bdbae7ba182955e453070f5343678e Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 10 Jul 2016 10:33:31 +0800 Subject: [PATCH 062/508] gtk-gnutella: 1.1.5 -> 1.1.9 --- .../networking/p2p/gtk-gnutella/default.nix | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/networking/p2p/gtk-gnutella/default.nix b/pkgs/tools/networking/p2p/gtk-gnutella/default.nix index ec2821f4d81..7d48f38e79d 100644 --- a/pkgs/tools/networking/p2p/gtk-gnutella/default.nix +++ b/pkgs/tools/networking/p2p/gtk-gnutella/default.nix @@ -1,30 +1,26 @@ { stdenv, fetchurl, bison, pkgconfig -, glib, gtk, libxml2, gettext, zlib }: +, glib, gtk, libxml2, gettext, zlib, binutils, gnutls }: let name = "gtk-gnutella"; - version = "1.1.5"; + version = "1.1.9"; in stdenv.mkDerivation { name = "${name}-${version}"; src = fetchurl { url = "mirror://sourceforge/${name}/${name}-${version}.tar.bz2"; - sha256 = "19d8mmyxrdwdafcjq1hvs9zn40yrcj1127163a2058svi0x08cn3"; + sha256 = "1zvadgsskmpm82id9mbj24a2lyq38qv768ixv7nmfjl3d4wr2biv"; }; - nativeBuildInputs = [ bison pkgconfig ]; - buildInputs = [ glib gtk libxml2 gettext zlib ]; + nativeBuildInputs = [ bison binutils gettext pkgconfig ]; + buildInputs = [ glib gnutls gtk libxml2 zlib ]; - NIX_LDFLAGS = "-rpath ${zlib.out}/lib"; - configureScript = "./Configure"; - dontAddPrefix = true; - configureFlags = "-d -e -D prefix=$out -D gtkversion=2 -D official=true"; + configureScript = "./build.sh --configure-only"; meta = with stdenv.lib; { homepage = http://gtk-gnutella.sourceforge.net/; description = "Server/client for Gnutella"; license = licenses.gpl2; - broken = true; }; } From b187c869f4cf3d8daf052a8d21207a806638ddc4 Mon Sep 17 00:00:00 2001 From: Jookia <166291@gmail.com> Date: Sun, 10 Jul 2016 10:45:18 +1000 Subject: [PATCH 063/508] systemd-coredump: Add systemd service and fix sysctl pattern. --- nixos/modules/system/boot/coredump.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/coredump.nix b/nixos/modules/system/boot/coredump.nix index 793c7515c76..b27a35b6257 100644 --- a/nixos/modules/system/boot/coredump.nix +++ b/nixos/modules/system/boot/coredump.nix @@ -36,6 +36,8 @@ with lib; config = mkMerge [ (mkIf config.systemd.coredump.enable { + systemd.additionalUpstreamSystemUnits = [ "systemd-coredump.socket" "systemd-coredump@.service" ]; + environment.etc."systemd/coredump.conf".text = '' [Coredump] @@ -45,7 +47,7 @@ with lib; # Have the kernel pass core dumps to systemd's coredump helper binary. # From systemd's 50-coredump.conf file. See: # - boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %p %u %g %s %t %e"; + boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %P %u %g %s %t %c %e"; }) (mkIf (!config.systemd.coredump.enable) { From 844748a9c9ce7a12c9bf71aebd74f9e85919f4ca Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 10 Jul 2016 00:26:41 +0200 Subject: [PATCH 064/508] libarchive: 3.1.2 -> 3.2.1 (security) Fixes at least: * CVE-2016-4300 * CVE-2016-4302 * CVE-2016-4809 * CVE-2016-5844 --- .../libraries/libarchive/CVE-2013-0211.patch | 30 ---- .../libraries/libarchive/CVE-2015-1197.patch | 143 ------------------ .../libraries/libarchive/default.nix | 16 +- 3 files changed, 4 insertions(+), 185 deletions(-) delete mode 100644 pkgs/development/libraries/libarchive/CVE-2013-0211.patch delete mode 100644 pkgs/development/libraries/libarchive/CVE-2015-1197.patch diff --git a/pkgs/development/libraries/libarchive/CVE-2013-0211.patch b/pkgs/development/libraries/libarchive/CVE-2013-0211.patch deleted file mode 100644 index 5b1a9831063..00000000000 --- a/pkgs/development/libraries/libarchive/CVE-2013-0211.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 22531545514043e04633e1c015c7540b9de9dbe4 Mon Sep 17 00:00:00 2001 -From: Tim Kientzle -Date: Fri, 22 Mar 2013 23:48:41 -0700 -Subject: [PATCH] Limit write requests to at most INT_MAX. This prevents a - certain common programming error (passing -1 to write) from leading to other - problems deeper in the library. - ---- - libarchive/archive_write.c | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/libarchive/archive_write.c b/libarchive/archive_write.c -index eede5e0..be85621 100644 ---- a/libarchive/archive_write.c -+++ b/libarchive/archive_write.c -@@ -673,8 +673,13 @@ static ssize_t - _archive_write_data(struct archive *_a, const void *buff, size_t s) - { - struct archive_write *a = (struct archive_write *)_a; -+ const size_t max_write = INT_MAX; -+ - archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC, - ARCHIVE_STATE_DATA, "archive_write_data"); -+ /* In particular, this catches attempts to pass negative values. */ -+ if (s > max_write) -+ s = max_write; - archive_clear_error(&a->archive); - return ((a->format_write_data)(a, buff, s)); - } - diff --git a/pkgs/development/libraries/libarchive/CVE-2015-1197.patch b/pkgs/development/libraries/libarchive/CVE-2015-1197.patch deleted file mode 100644 index cb7be5f18cd..00000000000 --- a/pkgs/development/libraries/libarchive/CVE-2015-1197.patch +++ /dev/null @@ -1,143 +0,0 @@ -From 59357157706d47c365b2227739e17daba3607526 Mon Sep 17 00:00:00 2001 -From: Alessandro Ghedini -Date: Sun, 1 Mar 2015 12:07:45 +0100 -Subject: [PATCH] Add ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS option - -This fixes a directory traversal in the cpio tool. ---- - cpio/bsdcpio.1 | 3 ++- - cpio/cpio.c | 2 ++ - libarchive/archive.h | 2 ++ - libarchive/archive_write_disk.3 | 3 +++ - libarchive/archive_write_disk_posix.c | 14 +++++++++++--- - libarchive/test/test_write_disk_secure.c | 23 +++++++++++++++++++++++ - 6 files changed, 43 insertions(+), 4 deletions(-) - -diff --git a/cpio/bsdcpio.1 b/cpio/bsdcpio.1 -index f966aa0..e52546e 100644 ---- a/cpio/bsdcpio.1 -+++ b/cpio/bsdcpio.1 -@@ -156,7 +156,8 @@ See above for description. - .It Fl Fl insecure - (i and p mode only) - Disable security checks during extraction or copying. --This allows extraction via symbolic links and path names containing -+This allows extraction via symbolic links, absolute paths, -+and path names containing - .Sq .. - in the name. - .It Fl J , Fl Fl xz -diff --git a/cpio/cpio.c b/cpio/cpio.c -index 0acde11..b267e9b 100644 ---- a/cpio/cpio.c -+++ b/cpio/cpio.c -@@ -171,6 +171,7 @@ main(int argc, char *argv[]) - cpio->extract_flags |= ARCHIVE_EXTRACT_NO_OVERWRITE_NEWER; - cpio->extract_flags |= ARCHIVE_EXTRACT_SECURE_SYMLINKS; - cpio->extract_flags |= ARCHIVE_EXTRACT_SECURE_NODOTDOT; -+ cpio->extract_flags |= ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS; - cpio->extract_flags |= ARCHIVE_EXTRACT_PERM; - cpio->extract_flags |= ARCHIVE_EXTRACT_FFLAGS; - cpio->extract_flags |= ARCHIVE_EXTRACT_ACL; -@@ -256,6 +257,7 @@ main(int argc, char *argv[]) - case OPTION_INSECURE: - cpio->extract_flags &= ~ARCHIVE_EXTRACT_SECURE_SYMLINKS; - cpio->extract_flags &= ~ARCHIVE_EXTRACT_SECURE_NODOTDOT; -+ cpio->extract_flags &= ~ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS; - break; - case 'L': /* GNU cpio */ - cpio->option_follow_links = 1; -diff --git a/libarchive/archive.h b/libarchive/archive.h -index 1f0fc38..ef635ac 100644 ---- a/libarchive/archive.h -+++ b/libarchive/archive.h -@@ -649,6 +649,8 @@ __LA_DECL int archive_read_set_passphrase_callback(struct archive *, - /* Default: Do not use HFS+ compression if it was not compressed. */ - /* This has no effect except on Mac OS v10.6 or later. */ - #define ARCHIVE_EXTRACT_HFS_COMPRESSION_FORCED (0x8000) -+/* Default: Do not reject entries with absolute paths */ -+#define ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS (0x10000) - - __LA_DECL int archive_read_extract(struct archive *, struct archive_entry *, - int flags); -diff --git a/libarchive/archive_write_disk.3 b/libarchive/archive_write_disk.3 -index fa925cc..a2e7afa 100644 ---- a/libarchive/archive_write_disk.3 -+++ b/libarchive/archive_write_disk.3 -@@ -177,6 +177,9 @@ The default is to not refuse such paths. - Note that paths ending in - .Pa .. - always cause an error, regardless of this flag. -+.It Cm ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS -+Refuse to extract an absolute path. -+The default is to not refuse such paths. - .It Cm ARCHIVE_EXTRACT_SPARSE - Scan data for blocks of NUL bytes and try to recreate them with holes. - This results in sparse files, independent of whether the archive format -diff --git a/libarchive/archive_write_disk_posix.c b/libarchive/archive_write_disk_posix.c -index ab3bdac..c1290eb 100644 ---- a/libarchive/archive_write_disk_posix.c -+++ b/libarchive/archive_write_disk_posix.c -@@ -2509,8 +2509,9 @@ cleanup_pathname_win(struct archive_write_disk *a) - /* - * Canonicalize the pathname. In particular, this strips duplicate - * '/' characters, '.' elements, and trailing '/'. It also raises an -- * error for an empty path, a trailing '..' or (if _SECURE_NODOTDOT is -- * set) any '..' in the path. -+ * error for an empty path, a trailing '..', (if _SECURE_NODOTDOT is -+ * set) any '..' in the path or (if ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS -+ * is set) if the path is absolute. - */ - static int - cleanup_pathname(struct archive_write_disk *a) -@@ -2529,8 +2530,15 @@ cleanup_pathname(struct archive_write_disk *a) - cleanup_pathname_win(a); - #endif - /* Skip leading '/'. */ -- if (*src == '/') -+ if (*src == '/') { -+ if (a->flags & ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS) { -+ archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC, -+ "Path is absolute"); -+ return (ARCHIVE_FAILED); -+ } -+ - separator = *src++; -+ } - - /* Scan the pathname one element at a time. */ - for (;;) { -diff --git a/libarchive/test/test_write_disk_secure.c b/libarchive/test/test_write_disk_secure.c -index 31c5bfd..2c94206 100644 ---- a/libarchive/test/test_write_disk_secure.c -+++ b/libarchive/test/test_write_disk_secure.c -@@ -178,6 +178,29 @@ DEFINE_TEST(test_write_disk_secure) - assert(S_ISDIR(st.st_mode)); - archive_entry_free(ae); - -+ /* -+ * Without security checks, we should be able to -+ * extract an absolute path. -+ */ -+ assert((ae = archive_entry_new()) != NULL); -+ archive_entry_copy_pathname(ae, "/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp"); -+ archive_entry_set_mode(ae, S_IFREG | 0777); -+ assert(0 == archive_write_header(a, ae)); -+ assert(0 == archive_write_finish_entry(a)); -+ assertFileExists("/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp"); -+ assert(0 == unlink("/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp")); -+ -+ /* But with security checks enabled, this should fail. */ -+ assert(archive_entry_clear(ae) != NULL); -+ archive_entry_copy_pathname(ae, "/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp"); -+ archive_entry_set_mode(ae, S_IFREG | 0777); -+ archive_write_disk_set_options(a, ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS); -+ failure("Extracting an absolute path should fail here."); -+ assertEqualInt(ARCHIVE_FAILED, archive_write_header(a, ae)); -+ archive_entry_free(ae); -+ assert(0 == archive_write_finish_entry(a)); -+ assertFileNotExists("/tmp/libarchive_test-test_write_disk_secure-absolute_path.tmp"); -+ - assertEqualInt(ARCHIVE_OK, archive_write_free(a)); - - /* Test the entries on disk. */ diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix index 55ff770f4bd..0c5f900dd41 100644 --- a/pkgs/development/libraries/libarchive/default.nix +++ b/pkgs/development/libraries/libarchive/default.nix @@ -2,22 +2,14 @@ , sharutils }: stdenv.mkDerivation rec { - name = "libarchive-3.1.2"; + name = "libarchive-${version}"; + version = "3.2.1"; src = fetchurl { - urls = [ - "http://pkgs.fedoraproject.org/repo/pkgs/libarchive/libarchive-3.1.2.tar.gz/efad5a503f66329bb9d2f4308b5de98a/${name}.tar.gz" - "${meta.homepage}/downloads/${name}.tar.gz" - ]; - sha256 = "0pixqnrcf35dnqgv0lp7qlcw7k13620qkhgxr288v7p4iz6ym1zb"; + url = "${meta.homepage}/downloads/${name}.tar.gz"; + sha256 = "1lngng84k1kkljl74q0cdqc3s82vn2kimfm02dgm4d6m7x71mvkj"; }; - patches = [ - ./CVE-2013-0211.patch # https://github.com/libarchive/libarchive/commit/22531545 - ./CVE-2015-1197.patch # https://github.com/NixOS/nixpkgs/issues/6799 - # ^ it's CVE-2015-2304 specific to libarchive - ]; - buildInputs = [ sharutils libxml2 zlib bzip2 openssl xz lzo ] ++ stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ]; From ba2eec97b5022848fffeb8c85303b7afe4690e82 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 10 Jul 2016 01:22:49 +0200 Subject: [PATCH 065/508] sqlite: 3.12.2 -> 3.13.0 --- pkgs/development/libraries/sqlite/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index 6dded64e0f5..1e59745b34a 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -3,11 +3,11 @@ assert interactive -> readline != null && ncurses != null; stdenv.mkDerivation { - name = "sqlite-3.12.2"; + name = "sqlite-3.13.0"; src = fetchurl { - url = "http://sqlite.org/2016/sqlite-autoconf-3120200.tar.gz"; - sha1 = "b43c2e7238e54c50b95fbbd85c48792f4f39af8c"; + url = "http://sqlite.org/2016/sqlite-autoconf-3130000.tar.gz"; + sha256 = "0sq88jbwsk48i41f7m7rkw9xvijq011nsbs7pl49s31inck70yg2"; }; outputs = [ "dev" "out" "bin" ]; From 4c17bed84c53f018cd3ca97f2a4ea7e4eaa1634d Mon Sep 17 00:00:00 2001 From: schneefux Date: Tue, 21 Jun 2016 15:57:50 +0200 Subject: [PATCH 066/508] minify: init at v2.0.0 --- pkgs/development/go-modules/libs.json | 54 +++++++++++++++++++++++++ pkgs/development/web/minify/default.nix | 18 +++++++++ pkgs/development/web/minify/deps.json | 15 +++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 89 insertions(+) create mode 100644 pkgs/development/web/minify/default.nix create mode 100644 pkgs/development/web/minify/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 3dcd53a124b..98a9374c4e4 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1564,5 +1564,59 @@ "rev": "7cef48da76dca6a496faa7fe63e39ed665cbd219", "sha256": "0hw11jj5r3f6qwydg41nc3c6aadlbkhc1qpxra2609lis0qa9h4r" } + }, + { + "goPackagePath": "github.com/tdewolff/buffer", + "fetch": { + "type": "git", + "url": "https://github.com/tdewolff/buffer", + "rev": "0edfcb7b750146ff879e95831de2ef53605a5cb5", + "sha256": "1mdd4k9byp22mw0a399j3w73zjb5g0vn58g76rjy7ajb0dzm80vl" + } + }, + { + "goPackagePath": "github.com/tdewolff/parse", + "fetch": { + "type": "git", + "url": "https://github.com/tdewolff/parse", + "rev": "34d5c1160d4503da4b456e5094609f2331d6dde3", + "sha256": "0hxf65fgkrc1q4p99p33xxxy1s6wxpn1vfsnqf9p846awwbqsy0v" + } + }, + { + "goPackagePath": "github.com/tdewolff/strconv", + "fetch": { + "type": "git", + "url": "https://github.com/tdewolff/strconv", + "rev": "3e8091f4417ebaaa3910da63a45ea394ebbfb0e3", + "sha256": "00w2mryfjhz3vaqzxvbwvyhi1vgpc1s4xfv1r9hxn8hwa078q5gp" + } + }, + { + "goPackagePath": "github.com/matryer/try", + "fetch": { + "type": "git", + "url": "https://github.com/matryer/try", + "rev": "93d30e50512f879b73829eb79867df38084bcd31", + "sha256": "0dmc8iar9685ks1ba3vnycjsx8qxwyqv51jb7677dvwnzbqhgw6f" + } + }, + { + "goPackagePath": "github.com/fsnotify/fsnotify", + "fetch": { + "type": "git", + "url": "https://github.com/fsnotify/fsnotify", + "rev": "30411dbcefb7a1da7e84f75530ad3abe4011b4f8", + "sha256": "0kbpvyi6p9942k0vmcw5z13mja47f7hq7nqd332pn2zydss6kddm" + } + }, + { + "goPackagePath": "github.com/ogier/pflag", + "fetch": { + "type": "git", + "url": "https://github.com/ogier/pflag", + "rev": "45c278ab3607870051a2ea9040bb85fcb8557481", + "sha256": "0620v75wppfd84d95n312wpngcb73cph4q3ivs1h0waljfnsrd5l" + } } ] diff --git a/pkgs/development/web/minify/default.nix b/pkgs/development/web/minify/default.nix new file mode 100644 index 00000000000..3248258d552 --- /dev/null +++ b/pkgs/development/web/minify/default.nix @@ -0,0 +1,18 @@ +{ stdenv, buildGoPackage, fetchFromGitHub }: + +buildGoPackage rec { + name = "minify-${version}"; + version = "v2.0.0"; + rev = "41f3effd65817bac8acea89d49b3982211803a4d"; + + goPackagePath = "github.com/tdewolff/minify"; + + src = fetchFromGitHub { + inherit rev; + owner = "tdewolff"; + repo = "minify"; + sha256 = "15d9ivg1a9v9c2n0a9pfw74952xhd4vqgx8d60dhvif9lx1d8wlq"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/development/web/minify/deps.json b/pkgs/development/web/minify/deps.json new file mode 100644 index 00000000000..0b2fe810854 --- /dev/null +++ b/pkgs/development/web/minify/deps.json @@ -0,0 +1,15 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/tdewolff/buffer", + "github.com/tdewolff/parse", + "github.com/tdewolff/strconv", + "github.com/dustin/go-humanize", + "github.com/fsnotify/fsnotify", + "github.com/matryer/try", + "github.com/ogier/pflag", + "golang.org/x/sys" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7c8549faf8..5b50048f13a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6419,6 +6419,8 @@ in maven = maven3; maven3 = callPackage ../development/tools/build-managers/apache-maven { }; + minify = callPackage ../development/web/minify { }; + mk = callPackage ../development/tools/build-managers/mk { }; msitools = callPackage ../development/tools/misc/msitools { }; From 129c17b222725c1ab37c0c21fda57ddf8a4d186a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Boros?= Date: Sun, 10 Jul 2016 12:51:11 +0200 Subject: [PATCH 067/508] youtube-dl: 2016.07.03.1 -> 2016.07.09.2 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index bf1efdc6298..b6f55bdcc20 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -12,11 +12,11 @@ buildPythonApplication rec { name = "youtube-dl-${version}"; - version = "2016.07.03.1"; + version = "2016.07.09.2"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${name}.tar.gz"; - sha256 = "0qyi2g0i2gl04hqn587w0c5x1pnpkn6l07fhnbfpnqq7fyw1hndy"; + sha256 = "0qs99ss1w22apx3n2173j5mly7h0ngfgkkgz07bn30235saf0fd3"; }; buildInputs = [ makeWrapper zip pandoc ]; From defdbdb08b22c9eb8f770d86533f615e17efc530 Mon Sep 17 00:00:00 2001 From: Frank Lanitz Date: Sun, 10 Jul 2016 16:32:33 +0200 Subject: [PATCH 068/508] geany: 1.27 -> 1.28 --- pkgs/applications/editors/geany/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index b4f6baa9c64..cd93a4ed0e8 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }: let - version = "1.27"; + version = "1.28"; in stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.geany.org/${name}.tar.bz2"; - sha256 = "846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf"; + sha256 = "0nha21rbdhl10vdpaq8d5v5fszvggl1xar555pvrnvm2y443ffpp"; }; buildInputs = [ gtk2 which pkgconfig intltool file ]; From 00f35e6653a30fc2c90db96d1f50ac3e04160575 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 10 Jul 2016 23:33:18 +0800 Subject: [PATCH 069/508] leatherman: 0.7.0 -> 0.7.5 --- pkgs/development/libraries/leatherman/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix index bfb091f424a..3dfc9e2990e 100644 --- a/pkgs/development/libraries/leatherman/default.nix +++ b/pkgs/development/libraries/leatherman/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "leatherman-${version}"; - version = "0.7.0"; + version = "0.7.5"; src = fetchFromGitHub { - sha256 = "1m37zcr11a2g08wbkpxgav97m2fr14in2zhdhhv5krci5i2grzd7"; + sha256 = "103qzhjhgw7jh0xcaxag735wfm6q35xprq5wmdimfhhmmrmjr51g"; rev = version; repo = "leatherman"; owner = "puppetlabs"; From 356b3ae546fa426435bc9d139cb3dc76c61b936d Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 10 Jul 2016 23:37:05 +0800 Subject: [PATCH 070/508] facter: 3.1.6 -> 3.1.8 --- pkgs/tools/system/facter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/facter/default.nix b/pkgs/tools/system/facter/default.nix index 9a95df94a1c..de9b79d79c3 100644 --- a/pkgs/tools/system/facter/default.nix +++ b/pkgs/tools/system/facter/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "facter-${version}"; - version = "3.1.6"; + version = "3.1.8"; src = fetchurl { url = "https://downloads.puppetlabs.com/facter/${name}.tar.gz"; - sha256 = "1kv4k9zqpsiw362kk1rw1a4sixd0pmnh57ghd4k4pffr2dkmdfsv"; + sha256 = "1fhfjf5bm5kyjiady14fxhpp7hdrkgx56vsvdbqj82km0xqcxpj9"; }; cmakeFlags = [ "-DFACTER_RUBY=${ruby}/lib/libruby.so" ]; From 5da05eef62999580664339c5461971c97ae23a39 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 10 Jul 2016 23:52:23 +0800 Subject: [PATCH 071/508] bluejeans: 2.160.49.8 -> 2.160.63.8 --- .../networking/browsers/mozilla-plugins/bluejeans/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix index 147540ed158..574fd9efdd4 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix @@ -17,11 +17,11 @@ in stdenv.mkDerivation rec { name = "bluejeans-${version}"; - version = "2.160.49.8"; + version = "2.160.63.8"; src = fetchurl { url = "https://swdl.bluejeans.com/skinny/bjnplugin_${version}-1_amd64.deb"; - sha256 = "1hf4jx0d1wiv622rwck0mm8cckm121yszviw47jsw0mjnp91hqch"; + sha256 = "1sfz9xvvrbw7gg7fxxwg9wmgbxgv3fa14p7i4m85mg10l3qxaqfc"; }; phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; From c9deac5dde628011ce1d72f5f0849790b7ed8b42 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 10 Jul 2016 20:31:49 +0200 Subject: [PATCH 072/508] New package: pythonPackages.pysmi --- pkgs/top-level/python-packages.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ff7e9b8d5e..0ec8052e3f3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18648,6 +18648,29 @@ in modules // { }; }); + pysmi = buildPythonPackage rec { + version = "0.0.7"; + name = "pysmi-${version}"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/pysmi/${name}.tar.gz"; + sha256 = "05h1lv2a687b9qjc399w6728ildx7majbn338a0c4k3gw6wnv7wr"; + }; + + # Tests require pysnmp, which in turn requires pysmi => infinite recursion + doCheck = false; + + propagatedBuildInputs = with self; [ ply ]; + + meta = { + homepage = http://pysmi.sf.net; + description = "SNMP SMI/MIB Parser"; + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ koral ]; + }; + }; + pysnmp = buildPythonPackage rec { version = "4.2.5"; name = "pysnmp-${version}"; From 7da3f455cda0b55ecdff72ad94b2946a832ceede Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 10 Jul 2016 20:32:28 +0200 Subject: [PATCH 073/508] pythonPackages.pysnmp: 4.2.5 -> 4.3.2 --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0ec8052e3f3..458590c317a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18672,15 +18672,18 @@ in modules // { }; pysnmp = buildPythonPackage rec { - version = "4.2.5"; + version = "4.3.2"; name = "pysnmp-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/p/pysnmp/${name}.tar.gz"; - sha256 = "0zq7yx8732ad9dxpxqgpqyixj7kfwbvf402q7l5njkv0kbcnavn4"; + sha256 = "0xw925f3p02vdpb3f0ls60qj59w44aiyfs3s0nhdr9vsy4fxhavw"; }; - propagatedBuildInputs = with self; [ pyasn1 pycrypto ]; + # NameError: name 'mibBuilder' is not defined + doCheck = false; + + propagatedBuildInputs = with self; [ pyasn1 pycrypto pysmi ]; meta = { homepage = http://pysnmp.sf.net; From e70d30c5e13f4a613d9807f3d8e8e032c6f566e0 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 10 Jul 2016 20:33:00 +0200 Subject: [PATCH 074/508] pythonPackages.glances: 2.4.2 -> 2.6.2 --- pkgs/top-level/python-packages.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 458590c317a..513cd729191 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10644,14 +10644,14 @@ in modules // { glances = buildPythonPackage rec { name = "glances-${version}"; - version = "2.4.2"; + version = "2.6.2"; disabled = isPyPy; src = pkgs.fetchFromGitHub { owner = "nicolargo"; repo = "glances"; rev = "v${version}"; - sha256 = "1ghx62z63yyf8wv4bcvfxwxs5mc7b4nrcss6lc1i5s0yjvzvyi6h"; + sha256 = "0gysvx1yai303gb9ks5z3jy1qk7ilnwwy30l7gp3kyfbv2cifbb1"; }; doCheck = false; @@ -10666,6 +10666,8 @@ in modules // { meta = { homepage = "http://nicolargo.github.io/glances/"; description = "Cross-platform curses-based monitoring tool"; + license = licenses.lgpl2; + maintainers = with maintainers; [ koral ]; }; }; From e5154f2ab2a2668f7441cd07abb86302d3d2fc16 Mon Sep 17 00:00:00 2001 From: Jookia <166291@gmail.com> Date: Mon, 11 Jul 2016 11:04:01 +1000 Subject: [PATCH 075/508] zdoom: Mark it and its forks as nonfree. See http://zdoom.org/wiki/License and the source code of each package. --- pkgs/games/gzdoom/default.nix | 1 + pkgs/games/zandronum/default.nix | 2 +- pkgs/games/zdoom/default.nix | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/games/gzdoom/default.nix b/pkgs/games/gzdoom/default.nix index 3f8744d75cb..332c2fbeff1 100644 --- a/pkgs/games/gzdoom/default.nix +++ b/pkgs/games/gzdoom/default.nix @@ -27,6 +27,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/coelckers/gzdoom; description = "A Doom source port based on ZDoom. It features an OpenGL renderer and lots of new features"; + license = stdenv.lib.licenses.unfree; maintainers = [ stdenv.lib.maintainers.lassulus ]; }; } diff --git a/pkgs/games/zandronum/default.nix b/pkgs/games/zandronum/default.nix index 73ce80c5f39..4e1dcd44323 100644 --- a/pkgs/games/zandronum/default.nix +++ b/pkgs/games/zandronum/default.nix @@ -57,7 +57,7 @@ in stdenv.mkDerivation { homepage = http://zandronum.com/; description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software"; maintainers = with maintainers; [ lassulus ]; + license = stdenv.lib.licenses.unfree; platforms = platforms.linux; - license = licenses.bsdOriginal; }; } diff --git a/pkgs/games/zdoom/default.nix b/pkgs/games/zdoom/default.nix index 3a301ed0f2b..ce25f3efda3 100644 --- a/pkgs/games/zdoom/default.nix +++ b/pkgs/games/zdoom/default.nix @@ -33,6 +33,7 @@ stdenv.mkDerivation { meta = { homepage = http://zdoom.org/; description = "Enhanced port of the official DOOM source code"; + license = stdenv.lib.licenses.unfree; maintainers = [ stdenv.lib.maintainers.lassulus ]; }; } From 85a895d60f7899df72e9000c113b5bf52ef1206f Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 11 Jul 2016 10:37:18 +0200 Subject: [PATCH 076/508] offlineimap: add nixos module (#16842) --- nixos/modules/module-list.nix | 1 + .../services/networking/offlineimap.nix | 73 +++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 nixos/modules/services/networking/offlineimap.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 67178e765c8..2ed711b79c4 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -368,6 +368,7 @@ ./services/networking/ntopng.nix ./services/networking/ntpd.nix ./services/networking/nylon.nix + ./services/networking/offlineimap.nix ./services/networking/oidentd.nix ./services/networking/openfire.nix ./services/networking/openntpd.nix diff --git a/nixos/modules/services/networking/offlineimap.nix b/nixos/modules/services/networking/offlineimap.nix new file mode 100644 index 00000000000..31ce9280f31 --- /dev/null +++ b/nixos/modules/services/networking/offlineimap.nix @@ -0,0 +1,73 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.offlineimap; +in { + + options.services.offlineimap = { + enable = mkEnableOption "Offlineimap, a software to dispose your mailbox(es) as a local Maildir(s)."; + + install = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Whether to install a user service for Offlineimap. Once + the service is started, emails will be fetched automatically. + + The service must be manually started for each user with + "systemctl --user start offlineimap" or globally through + services.offlineimap.enable. + ''; + }; + + package = mkOption { + type = types.package; + default = pkgs.offlineimap; + defaultText = "pkgs.offlineimap"; + description = "Offlineimap derivation to use."; + }; + + path = mkOption { + type = types.listOf types.path; + default = []; + example = literalExample "[ pkgs.pass pkgs.bash pkgs.notmuch ]"; + description = "List of derivations to put in Offlineimap's path."; + }; + + onCalendar = mkOption { + type = types.str; + default = "*:0/3"; # every 3 minutes + description = "How often is offlineimap started. Default is '*:0/3' meaning every 3 minutes. See systemd.time(7) for more information about the format."; + }; + + timeoutStartSec = mkOption { + type = types.str; + default = "120sec"; # Kill if still alive after 2 minutes + description = "How long waiting for offlineimap before killing it. Default is '120sec' meaning every 2 minutes. See systemd.time(7) for more information about the format."; + }; + }; + config = mkIf (cfg.enable || cfg.install) { + systemd.user.services.offlineimap = { + description = "Offlineimap: a software to dispose your mailbox(es) as a local Maildir(s)"; + serviceConfig = { + Type = "oneshot"; + ExecStart = "${cfg.package}/bin/offlineimap -u basic -o -1"; + TimeoutStartSec = cfg.timeoutStartSec; + }; + path = cfg.path; + }; + environment.systemPackages = [ "${cfg.package}" ]; + systemd.user.timers.offlineimap = { + description = "offlineimap timer"; + timerConfig = { + Unit = "offlineimap.service"; + OnCalendar = cfg.onCalendar; + # start immediately after computer is started: + Persistent = "true"; + }; + } // optionalAttrs cfg.enable { wantedBy = [ "default.target" ]; }; + }; +} From ad41b8fa197cbab795ea01ca7becf6548391ef5c Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Mon, 11 Jul 2016 10:36:13 +0200 Subject: [PATCH 077/508] mu: fix build of webkit support and re-enable it --- pkgs/tools/networking/mu/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/mu/default.nix b/pkgs/tools/networking/mu/default.nix index 5829dc9d550..fa1740e9d12 100644 --- a/pkgs/tools/networking/mu/default.nix +++ b/pkgs/tools/networking/mu/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, sqlite, pkgconfig, autoreconfHook , xapian, glib, gmime, texinfo , emacs, guile -, gtk3, webkit, libsoup, icu, withMug ? false /* doesn't build with current gtk3 */ }: +, gtk3, webkitgtk24x, libsoup, icu }: stdenv.mkDerivation rec { version = "0.9.16"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { buildInputs = [ sqlite pkgconfig xapian glib gmime texinfo emacs guile libsoup icu autoreconfHook - ] ++ stdenv.lib.optionals withMug [ gtk3 webkit ]; + gtk3 webkitgtk24x ]; preBuild = '' # Fix mu4e-builddir (set it to $out) @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ''; # Install mug and msg2pdf - postInstall = stdenv.lib.optionalString withMug '' + postInstall = '' cp -v toys/msg2pdf/msg2pdf $out/bin/ cp -v toys/mug/mug $out/bin/ ''; From 2aadeb2cb5dfd7a1df2db9e0a88de9a56681ab6c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 7 Jul 2016 11:20:30 +0200 Subject: [PATCH 078/508] Add App::St --- pkgs/top-level/perl-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 63e459a34d7..bfdf29cba5b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -304,6 +304,25 @@ let self = _self // overrides; _self = with self; { }; }; + AppSt = buildPerlPackage rec { + name = "App-St-1.1.2"; + src = fetchurl { + url = https://github.com/nferraz/st/archive/v1.1.2.tar.gz; + sha256 = "1j1iwcxl16m4x5kl1vcv0linb93r55ndh3jm0w6qf459jl4x38s6"; + }; + postInstall = + '' + sed -e "1 s|\(.*\)|\1 -I $out/lib/perl5/site_perl|" -i $out/bin/st + ($out/bin/st --help || true) | grep Usage + ''; + meta = { + description = "A command that computes simple statistics"; + license = stdenv.lib.licenses.mit; + homepage = https://github.com/nferraz/st; + maintainers = [ maintainers.eelco ]; + }; + }; + AttributeHandlers = buildPerlPackage { name = "Attribute-Handlers-0.99"; src = fetchurl { From 05bdc0c89f861aae1a7df5aaeb5de358daf79ec6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 7 Jul 2016 11:30:36 +0200 Subject: [PATCH 079/508] Remove unnecessary references to gcc5 These cause an unnecessary rebuild of gcc. --- pkgs/applications/audio/i-score/default.nix | 4 ++-- pkgs/development/tools/build-managers/icmake/default.nix | 4 ++-- pkgs/misc/emulators/dolphin-emu/master.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/audio/i-score/default.nix b/pkgs/applications/audio/i-score/default.nix index 17fadfe8b1f..97e8f5f1429 100644 --- a/pkgs/applications/audio/i-score/default.nix +++ b/pkgs/applications/audio/i-score/default.nix @@ -3,7 +3,7 @@ cln, cmake, fetchgit, - gcc5, + gcc, ginac, jamomacore, kde5, @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { cln cmake ginac - gcc5 + gcc jamomacore kde5.kdnssd libsndfile diff --git a/pkgs/development/tools/build-managers/icmake/default.nix b/pkgs/development/tools/build-managers/icmake/default.nix index e4bad4f500c..8fd519073cc 100644 --- a/pkgs/development/tools/build-managers/icmake/default.nix +++ b/pkgs/development/tools/build-managers/icmake/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, gcc5 }: +{ stdenv, fetchFromGitHub, gcc }: stdenv.mkDerivation rec { name = "icmake-${version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sourceRoot = "icmake-${version}-src/icmake"; - buildInputs = [ gcc5 ]; + buildInputs = [ gcc ]; preConfigure = '' patchShebangs ./ diff --git a/pkgs/misc/emulators/dolphin-emu/master.nix b/pkgs/misc/emulators/dolphin-emu/master.nix index 9743261c6b2..4d8b8ac0eb6 100644 --- a/pkgs/misc/emulators/dolphin-emu/master.nix +++ b/pkgs/misc/emulators/dolphin-emu/master.nix @@ -1,4 +1,4 @@ -{ stdenv, gcc5, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib +{ stdenv, gcc, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib , gettext, git, libpthreadstubs, libXrandr, libXext, readline , openal, libXdmcp, portaudio, fetchgit, libusb, libevdev , libpulseaudio ? null }: @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - buildInputs = [ gcc5 pkgconfig cmake bluez ffmpeg libao mesa gtk2 glib + buildInputs = [ gcc pkgconfig cmake bluez ffmpeg libao mesa gtk2 glib gettext libpthreadstubs libXrandr libXext readline openal libevdev git libXdmcp portaudio libusb libpulseaudio ]; From a265ad28425d5ffe925a92c3d7a51d9a0ac5c286 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 11 Jul 2016 12:40:58 +0100 Subject: [PATCH 080/508] firefox-developer-bin: fix hashes (#16860) the nightly tend to get replaced in-place on the FTP and so benefit from an update script as well --- .../browsers/firefox-bin/default.nix | 9 ++-- .../browsers/firefox-bin/dev_sources.nix | 12 +++++ .../firefox-bin/generate_sources_dev.rb | 53 +++++++++++++++++++ 3 files changed, 68 insertions(+), 6 deletions(-) create mode 100644 pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix create mode 100644 pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix index 26030e33e48..e9f6f816be5 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/default.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix @@ -42,12 +42,9 @@ assert stdenv.isLinux; let - generated = if channel == "stable" then (import ./sources.nix) - else if channel == "beta" then (import ./beta_sources.nix) - else if channel == "developer" then { version = "49.0a2"; sources = [ - { locale = "en-US"; arch = "linux-i686"; sha512 = "45dad182bf7a4e753c1be6b8f966393a06531e7b5530238d20cb67b26324e8f5d0eeec983a0855418f31187d3ae508c28810ab86269848b4e48ab2ca3b5d21e7"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "cfcbfc633b51612a62267c8a1afc25af212eb832d1fa876a1ffd82421e9378f96b3ac1488446f804518290abd99c21c9f10e4d0e0f699432aeb74b63305d7edc"; } - ]; } + generated = if channel == "stable" then (import ./sources.nix) + else if channel == "beta" then (import ./beta_sources.nix) + else if channel == "developer" then (import ./dev_sources.nix) else builtins.abort "Wrong channel! Channel must be one of `stable`, `beta` or `developer`"; inherit (generated) version sources; diff --git a/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix new file mode 100644 index 00000000000..f43810d53f0 --- /dev/null +++ b/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix @@ -0,0 +1,12 @@ +# This file is generated from generate_sources_dev.rb. DO NOT EDIT. +# Execute the following command to update the file. +# +# ruby generate_sources_dev.rb 49.0a2 > dev_sources.nix + +{ + version = "49.0a2"; + sources = [ + { locale = "en-US"; arch = "linux-i686"; sha512 = "85c4289e561d2246f96a05e3b8df011337984b9f176670826a705c2cd68a1284056ba507e4b6e4887595bf37f25386d9f7b28a20bc1f125865b9fd7b8be17eaa"; } + { locale = "en-US"; arch = "linux-x86_64"; sha512 = "2bf9518dbfbb48348f74929c19d03e8daf51020bf9ba6db577a202b6e98ad7ffb9e9a0b4ca92af010cd3f864ae84940b65438f4230e6de3165f72e4e7280086d"; } + ]; +} diff --git a/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb b/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb new file mode 100644 index 00000000000..37d5569efb0 --- /dev/null +++ b/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb @@ -0,0 +1,53 @@ +#!/usr/bin/env ruby +require "open-uri" + +version = + if ARGV.empty? + $stderr.puts("Usage: ruby generate_sources_dev.rb > dev_sources.nix") + exit(-1) + else + ARGV[0] + end + +base_url = "http://download-installer.cdn.mozilla.net/pub/firefox/nightly/latest-mozilla-aurora" + +arches = ["linux-i686", "linux-x86_64"] +locales = ["en-US"] +sources = [] + +Source = Struct.new(:hash, :arch, :locale, :filename) + +locales.each do |locale| + arches.each do |arch| + basename = "firefox-#{version}.#{locale}.#{arch}" + filename = basename + ".tar.bz2" + sha512 = open("#{base_url}/#{basename}.checksums").each_line + .find(filename).first + .split(" ").first + sources << Source.new(sha512, arch, locale, filename) + end +end + +sources = sources.sort_by do |source| + [source.locale, source.arch] +end + +puts(<<"EOH") +# This file is generated from generate_sources_dev.rb. DO NOT EDIT. +# Execute the following command to update the file. +# +# ruby generate_sources_dev.rb 49.0a2 > dev_sources.nix + +{ + version = "#{version}"; + sources = [ +EOH + +sources.each do |source| + puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|) +end + +puts(<<'EOF') + ]; +} +EOF From 5789f5875fc4f90058b67ae501fa0588c7e1e221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 11 Jul 2016 14:00:14 +0200 Subject: [PATCH 081/508] nix-repl: 2015-09-07 -> 2016-02-28 --- pkgs/tools/package-management/nix-repl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/nix-repl/default.nix b/pkgs/tools/package-management/nix-repl/default.nix index 8dfc9e6333e..43d0d60ac31 100644 --- a/pkgs/tools/package-management/nix-repl/default.nix +++ b/pkgs/tools/package-management/nix-repl/default.nix @@ -1,15 +1,15 @@ { lib, stdenv, fetchFromGitHub, nix, readline, boehmgc }: -let rev = "8a2f5f0607540ffe56b56d52db544373e1efb980"; in +let rev = "a1ea85e92b067a0a42354a28355c633eac7be65c"; in stdenv.mkDerivation { - name = "nix-repl-${lib.getVersion nix}-${lib.substring 0 7 rev}"; + name = "nix-repl-${lib.getVersion nix}-2016-02-28"; src = fetchFromGitHub { owner = "edolstra"; repo = "nix-repl"; inherit rev; - sha256 = "0cjablz01i0g9smnavhf86imwx1f9mnh5flax75i615ml71gsr88"; + sha256 = "0rf9711day64lgg6g6yqc5709x4sgj137zpqyn019k764i7m2xs8"; }; buildInputs = [ nix readline ]; From 871067222562bbb8616eb4ce97d595425e688c00 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Jul 2016 11:03:41 +0200 Subject: [PATCH 082/508] ena: Init at 20160629 This adds the Amazon Elastic Network Adapter kernel module required by EC2 x1.* instances. --- pkgs/os-specific/linux/ena/default.nix | 34 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/os-specific/linux/ena/default.nix diff --git a/pkgs/os-specific/linux/ena/default.nix b/pkgs/os-specific/linux/ena/default.nix new file mode 100644 index 00000000000..7a047e9f233 --- /dev/null +++ b/pkgs/os-specific/linux/ena/default.nix @@ -0,0 +1,34 @@ +{ lib, stdenv, fetchFromGitHub, kernel, kmod }: + +stdenv.mkDerivation rec { + name = "ena-20160629-${kernel.version}"; + + src = fetchFromGitHub { + owner = "amzn"; + repo = "amzn-drivers"; + rev = "b594ac1ea9e0c70e8e95803a0cfd9f5f06ac097e"; + sha256 = "03w6xgv3lfn28n38mj9cdi3px5zjyrbxnflpd3ggivkv6grf9fp7"; + }; + + configurePhase = + '' + cd kernel/linux/ena + substituteInPlace Makefile --replace '/lib/modules/$(BUILD_KERNEL)' ${kernel.dev}/lib/modules/${kernel.modDirVersion} + ''; + + installPhase = + '' + strip -S ena.ko + dest=$out/lib/modules/${kernel.modDirVersion}/misc + mkdir -p $dest + cp ena.ko $dest/ + xz $dest/ena.ko + ''; + + meta = { + description = "Amazon Elastic Network Adapter (ENA) driver for Linux"; + homepage = https://github.com/amzn/amzn-drivers; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.eelco ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a5d37c7762a..babd69fc46d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11027,6 +11027,8 @@ in ixgbevf = callPackage ../os-specific/linux/ixgbevf {}; + ena = callPackage ../os-specific/linux/ena {}; + v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { }; frandom = callPackage ../os-specific/linux/frandom { }; From 56badfee94c42b2f940c89ea8ae01ece18475384 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Jul 2016 12:15:39 +0200 Subject: [PATCH 083/508] amazon-image.nix: Add the ena driver This is necessary for Enhanced Networking on x1.* instances. --- nixos/modules/virtualisation/amazon-image.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix index da5575f4b6d..ebf398fa266 100644 --- a/nixos/modules/virtualisation/amazon-image.nix +++ b/nixos/modules/virtualisation/amazon-image.nix @@ -20,8 +20,12 @@ let cfg = config.ec2; in autoResize = true; }; - boot.extraModulePackages = [ config.boot.kernelPackages.ixgbevf ]; - boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" "ixgbevf" ]; + boot.extraModulePackages = + [ config.boot.kernelPackages.ixgbevf + config.boot.kernelPackages.ena + ]; + boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" ]; + boot.initrd.availableKernelModules = [ "ixgbevf" "ena" ]; boot.kernelParams = mkIf cfg.hvm [ "console=ttyS0" ]; # Prevent the nouveau kernel module from being loaded, as it From 1cd7dbc00b82d1a0d92dbdb4905cb9c48c6860ff Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Jul 2016 12:16:19 +0200 Subject: [PATCH 084/508] linux: Bump NR_CPUS The default limit (64) is too low for systems like EC2 x1.* instances or Xeon Phis, so let's increase it. --- pkgs/os-specific/linux/kernel/common-config.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 1e9f2cb6a65..62dd7caadbf 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -42,6 +42,12 @@ with stdenv.lib; SCHEDSTATS n DETECT_HUNG_TASK y + # Bump the maximum number of CPUs to support systems like EC2 x1.* + # instances and Xeon Phi. + ${optionalString (stdenv.system == "x86_64-linux") '' + NR_CPUS 384 + ''} + # Unix domain sockets. UNIX y From 7b9c493d6020d29b2229fffad35acf99c3b47a61 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Jul 2016 14:19:55 +0200 Subject: [PATCH 085/508] linux: Enable some kernel features This enables a few features that should be useful and safe (they're all used by the default Ubuntu kernel config), in particular zswap, wakelocks, kernel load address randomization, userfaultfd (useful for QEMU), paravirtualized spinlocks and automatic process group scheduling. Also removes some configuration conditional on kernel versions that we no longer support. --- .../linux/kernel/common-config.nix | 112 +++++++----------- 1 file changed, 41 insertions(+), 71 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 62dd7caadbf..37da42f8c0d 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -67,6 +67,7 @@ with stdenv.lib; ${optionalString (versionOlder version "3.10") '' USB_SUSPEND y ''} + PM_WAKELOCKS y # Support drivers that need external firmware. STANDALONE n @@ -98,9 +99,6 @@ with stdenv.lib; DONGLE y # Serial dongle support HIPPI y MTD_COMPLEX_MAPPINGS y # needed for many devices - ${optionalString (versionOlder version "3.2") '' - NET_POCKET y # enable pocket and portable adapters - ''} SCSI_LOWLEVEL y # enable lots of SCSI devices SCSI_LOWLEVEL_PCMCIA y SCSI_SAS_ATA y # added to enable detection of hard drive @@ -137,9 +135,7 @@ with stdenv.lib; HOSTAP_FIRMWARE_NVRAM? y ATH9K_PCI? y # Detect Atheros AR9xxx cards on PCI(e) bus ATH9K_AHB? y # Ditto, AHB bus - ${optionalString (versionAtLeast version "3.2") '' - B43_PHY_HT? y - ''} + B43_PHY_HT? y BCMA_HOST_PCI? y # Enable various FB devices. @@ -157,7 +153,7 @@ with stdenv.lib; FB_VESA y FRAMEBUFFER_CONSOLE y FRAMEBUFFER_CONSOLE_ROTATION y - ${optionalString (versionOlder version "3.9" || stdenv.system == "i686-linux") '' + ${optionalString (stdenv.system == "i686-linux") '' FB_GEODE y ''} @@ -168,11 +164,7 @@ with stdenv.lib; ''} # Allow specifying custom EDID on the kernel command line DRM_LOAD_EDID_FIRMWARE y - ${optionalString (versionOlder version "3.9") '' - DRM_RADEON_KMS? y - ''} - # Hybrid graphics support - VGA_SWITCHEROO y + VGA_SWITCHEROO y # Hybrid graphics support # Sound. SND_DYNAMIC_MINORS y @@ -231,9 +223,7 @@ with stdenv.lib; NFSD_V4_SECURITY_LABEL y ''} NFS_FSCACHE y - ${optionalString (versionAtLeast version "3.6") '' - NFS_SWAP y - ''} + NFS_SWAP y NFS_V3_ACL y ${optionalString (versionAtLeast version "3.11") '' NFS_V4_1 y # NFSv4.1 client support @@ -265,6 +255,7 @@ with stdenv.lib; DEBUG_SET_MODULE_RONX? y # Detect writes to read-only module pages # Security related features. + RANDOMIZE_BASE y STRICT_DEVMEM y # Filter access to /dev/mem SECURITY_SELINUX_BOOTPARAM_VALUE 0 # Disable SELinux by default DEVKMEM n # Disable /dev/kmem @@ -310,25 +301,25 @@ with stdenv.lib; BT_HCIUART_BCSP? y BT_HCIUART_H4? y # UART (H4) protocol support BT_HCIUART_LL? y - ${optionalString (versionAtLeast version "3.4") '' - BT_RFCOMM_TTY? y # RFCOMM TTY support - ''} + BT_RFCOMM_TTY? y # RFCOMM TTY support + CLEANCACHE? y CRASH_DUMP? n - ${optionalString (versionOlder version "3.1") '' - DMAR? n # experimental - ''} DVB_DYNAMIC_MINORS? y # we use udev - ${optionalString (versionAtLeast version "3.3") '' - EFI_STUB y # EFI bootloader in the bzImage itself - ''} + EFI_STUB y # EFI bootloader in the bzImage itself FHANDLE y # used by systemd + FRONTSWAP y FUSION y # Fusion MPT device support IDE_GD_ATAPI y # ATAPI floppy support + ${optionalString (versionAtLeast version "4.3") '' + IDLE_PAGE_TRACKING y + ''} IRDA_ULTRA y # Ultra (connectionless) protocol JOYSTICK_IFORCE_232? y # I-Force Serial joysticks and wheels JOYSTICK_IFORCE_USB? y # I-Force USB joysticks and wheels JOYSTICK_XPAD_FF? y # X-Box gamepad rumble support JOYSTICK_XPAD_LEDS? y # LED Support for Xbox360 controller 'BigX' LED + KEXEC_FILE y + KEXEC_JUMP y LDM_PARTITION y # Windows Logical Disk Manager (Dynamic Disk) support LEDS_TRIGGER_IDE_DISK y # LED IDE Disk Trigger LOGIRUMBLEPAD2_FF y # Logitech Rumblepad 2 force feedback @@ -349,12 +340,9 @@ with stdenv.lib; PPP_MULTILINK y # PPP multilink support PPP_FILTER y REGULATOR y # Voltage and Current Regulator Support - ${optionalString (versionAtLeast version "3.6") '' - RC_DEVICES? y # Enable IR devices - ''} - ${optionalString (versionAtLeast version "3.10") '' - RT2800USB_RT55XX y - ''} + RC_DEVICES? y # Enable IR devices + RT2800USB_RT55XX y + SCHED_AUTOGROUP y SCSI_LOGGING y # SCSI logging facility SERIAL_8250 y # 8250/16550 and compatible serial support SLIP_COMPRESSED y # CSLIP compressed headers @@ -369,6 +357,9 @@ with stdenv.lib; ''} USB_EHCI_ROOT_HUB_TT y # Root Hub Transaction Translators USB_EHCI_TT_NEWSCHED y # Improved transaction translator scheduling + ${optionalString (versionAtLeast version "4.3") '' + USERFAULTFD y + ''} X86_CHECK_BIOS_CORRUPTION y X86_MCE y @@ -379,16 +370,14 @@ with stdenv.lib; NAMESPACES? y # Required by 'unshare' used by 'nixos-install' RT_GROUP_SCHED? y CGROUP_DEVICE? y - ${if versionAtLeast version "3.6" then '' - MEMCG y - MEMCG_SWAP y - '' else '' - CGROUP_MEM_RES_CTLR y - CGROUP_MEM_RES_CTLR_SWAP y - ''} + MEMCG y + MEMCG_SWAP y ${optionalString (versionOlder version "4.7") "DEVPTS_MULTIPLE_INSTANCES y"} BLK_DEV_THROTTLING y CFQ_GROUP_IOSCHED y + ${optionalString (versionAtLeast version "4.3") '' + CGROUP_PIDS y + ''} # Enable staging drivers. These are somewhat experimental, but # they generally don't hurt. @@ -406,9 +395,7 @@ with stdenv.lib; FTRACE_SYSCALLS y SCHED_TRACER y STACK_TRACER y - ${optionalString (versionAtLeast version "3.10") '' - UPROBE_EVENT y - ''} + UPROBE_EVENT y ${optionalString (versionAtLeast version "4.4") '' BPF_SYSCALL y BPF_EVENTS y @@ -420,28 +407,18 @@ with stdenv.lib; DEVTMPFS y # Easier debugging of NFS issues. - ${optionalString (versionAtLeast version "3.4") '' - SUNRPC_DEBUG y - ''} + SUNRPC_DEBUG y # Virtualisation. PARAVIRT? y - ${if versionAtLeast version "3.10" then '' - HYPERVISOR_GUEST y - '' else '' - PARAVIRT_GUEST? y - ''} + HYPERVISOR_GUEST y + PARAVIRT_SPINLOCKS? y KVM_APIC_ARCHITECTURE y KVM_ASYNC_PF y - ${optionalString (versionOlder version "3.7") '' - KVM_CLOCK? y - ''} ${optionalString (versionAtLeast version "4.0") '' KVM_COMPAT? y ''} - ${optionalString (versionAtLeast version "3.10") '' - KVM_DEVICE_ASSIGNMENT? y - ''} + KVM_DEVICE_ASSIGNMENT? y ${optionalString (versionAtLeast version "4.0") '' KVM_GENERIC_DIRTYLOG_READ_PROTECT y ''} @@ -476,28 +453,22 @@ with stdenv.lib; ${optionalString (!stdenv.is64bit) '' HIGHMEM64G? y # We need 64 GB (PAE) support for Xen guest support. ''} - ${optionalString (versionAtLeast version "3.9" && stdenv.is64bit) '' + ${optionalString (stdenv.is64bit) '' VFIO_PCI_VGA y ''} VIRT_DRIVERS y # Media support. - ${optionalString (versionAtLeast version "3.6") '' - MEDIA_DIGITAL_TV_SUPPORT y - MEDIA_CAMERA_SUPPORT y - MEDIA_RC_SUPPORT y - ''} - ${optionalString (versionAtLeast version "3.7") '' - MEDIA_USB_SUPPORT y - ${optionalString (!(features.chromiumos or false)) '' - MEDIA_PCI_SUPPORT y - ''} + MEDIA_DIGITAL_TV_SUPPORT y + MEDIA_CAMERA_SUPPORT y + MEDIA_RC_SUPPORT y + MEDIA_USB_SUPPORT y + ${optionalString (!(features.chromiumos or false)) '' + MEDIA_PCI_SUPPORT y ''} # Our initrd init uses shebang scripts, so can't be modular. - ${optionalString (versionAtLeast version "3.10") '' - BINFMT_SCRIPT y - ''} + BINFMT_SCRIPT y # For systemd-binfmt BINFMT_MISC? y @@ -512,10 +483,9 @@ with stdenv.lib; TRANSPARENT_HUGEPAGE_MADVISE? y # zram support (e.g for in-memory compressed swap). - ${optionalString (versionAtLeast version "3.4") '' - ZSMALLOC y - ''} + ZSMALLOC y ZRAM m + ZSWAP y # Enable PCIe and USB for the brcmfmac driver BRCMFMAC_USB? y From ecc26d7a40747204ec0be45c6e051bfef605333c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Jul 2016 14:30:29 +0200 Subject: [PATCH 086/508] linux: Disable the old IDE subsystem This has long been deprecated in favour of the new ATA support (CONFIG_ATA). --- pkgs/os-specific/linux/kernel/common-config.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 37da42f8c0d..cac102351b3 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -10,7 +10,7 @@ `versionAtLeast`. Then do test your change by building all the kernels (or at least - their configs) in nixpkgs or else you will guarantee lots and lots + their configs) in Nixpkgs or else you will guarantee lots and lots of pain to users trying to switch to an older kernel because of some hardware problems with a new one. @@ -294,8 +294,6 @@ with stdenv.lib; ${optionalString (versionOlder version "4.4") '' B43_PCMCIA? y ''} - BLK_DEV_CMD640_ENHANCED y # CMD640 enhanced support - BLK_DEV_IDEACPI y # IDE ACPI support BLK_DEV_INTEGRITY y BSD_PROCESS_ACCT_V3 y BT_HCIUART_BCSP? y @@ -309,7 +307,7 @@ with stdenv.lib; FHANDLE y # used by systemd FRONTSWAP y FUSION y # Fusion MPT device support - IDE_GD_ATAPI y # ATAPI floppy support + IDE n # deprecated IDE support ${optionalString (versionAtLeast version "4.3") '' IDLE_PAGE_TRACKING y ''} @@ -321,7 +319,6 @@ with stdenv.lib; KEXEC_FILE y KEXEC_JUMP y LDM_PARTITION y # Windows Logical Disk Manager (Dynamic Disk) support - LEDS_TRIGGER_IDE_DISK y # LED IDE Disk Trigger LOGIRUMBLEPAD2_FF y # Logitech Rumblepad 2 force feedback LOGO n # not needed MEDIA_ATTACH y From 532211c68dc2bdab667739ad895a46a3f23491d1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Jul 2016 16:29:11 +0200 Subject: [PATCH 087/508] Really remove library functions Throwing a message like "removed 2016-02-29 because unused and broken" is unhelpful because it doesn't show what function was removed. --- lib/attrsets.nix | 1 - lib/lists.nix | 4 ---- 2 files changed, 5 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 636cb257d6b..f47e481c58a 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -457,7 +457,6 @@ rec { /*** deprecated stuff ***/ - deepSeqAttrs = throw "removed 2016-02-29 because unused and broken"; zipWithNames = zipAttrsWithNames; zip = builtins.trace "lib.zip is deprecated, use lib.zipAttrsWith instead" zipAttrsWith; diff --git a/lib/lists.nix b/lib/lists.nix index c810c8c2f5f..6712e5cc93f 100644 --- a/lib/lists.nix +++ b/lib/lists.nix @@ -374,8 +374,4 @@ rec { */ subtractLists = e: filter (x: !(elem x e)); - /*** deprecated stuff ***/ - - deepSeqList = throw "removed 2016-02-29 because unused and broken"; - } From 6a3e2f89fb9f3c206cceef94926806a4a09a16db Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 11 Jul 2016 18:07:55 +0300 Subject: [PATCH 088/508] steam: fix primus with new libstdc++ and add to steam-run --- pkgs/games/steam/chrootenv.nix | 40 ++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index ba163ebc3d2..9a766455055 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -8,19 +8,26 @@ }: let - commonTargetPkgs = pkgs: with pkgs; [ - steamPackages.steam-fonts - # Errors in output without those - pciutils - python2 - # Games' dependencies - xlibs.xrandr - which - # Needed by gdialog, including in the steam-runtime - perl - # Open URLs - xdg_utils - ]; + commonTargetPkgs = pkgs: with pkgs; + let primus2 = + if newStdcpp then primus else primus.override { + stdenv = overrideInStdenv stdenv [ useOldCXXAbi ]; + stdenv_i686 = overrideInStdenv pkgsi686Linux.stdenv [ useOldCXXAbi ]; + }; + in [ + steamPackages.steam-fonts + # Errors in output without those + pciutils + python2 + # Games' dependencies + xlibs.xrandr + which + # Needed by gdialog, including in the steam-runtime + perl + # Open URLs + xdg_utils + ] ++ lib.optional withJava jdk + ++ lib.optional withPrimus primus2; in buildFHSUserEnv rec { name = "steam"; @@ -29,12 +36,7 @@ in buildFHSUserEnv rec { steamPackages.steam # License agreement gnome3.zenity - ] ++ commonTargetPkgs pkgs - ++ lib.optional withJava jdk - ++ lib.optional withPrimus (primus.override { - stdenv = overrideInStdenv stdenv [ useOldCXXAbi ]; - stdenv_i686 = overrideInStdenv pkgsi686Linux.stdenv [ useOldCXXAbi ]; - }); + ] ++ commonTargetPkgs pkgs; multiPkgs = pkgs: with pkgs; [ # These are required by steam with proper errors From b25d21955e22bd10aff0e8a24d1d7f147aec0463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20E=2E=20Garc=C3=ADa?= Date: Mon, 11 Jul 2016 09:46:30 -0600 Subject: [PATCH 089/508] libqrencode: init at 3.4.4 * libqrencode: init at 3.4.4 * libqrencode: add maintainer #16861 --- lib/maintainers.nix | 1 + .../libraries/libqrencode/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++- 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/libqrencode/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index ca4dd4f98e8..44a68975bd0 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -15,6 +15,7 @@ adev = "Adrien Devresse "; Adjective-Object = "Maxwell Huang-Hobbs "; adnelson = "Allen Nelson "; + adolfogc = "Adolfo E. García Castro "; aespinosa = "Allan Espinosa "; aflatter = "Alexander Flatter "; aforemny = "Alexander Foremny "; diff --git a/pkgs/development/libraries/libqrencode/default.nix b/pkgs/development/libraries/libqrencode/default.nix new file mode 100644 index 00000000000..1d0463c090a --- /dev/null +++ b/pkgs/development/libraries/libqrencode/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, autoconf, automake, pkgconfig, + libtool, SDL2, libpng }: + +stdenv.mkDerivation rec { + name = "libqrencode-${version}"; + version = "3.4.4"; + + src = fetchurl { + url = "https://fukuchi.org/works/qrencode/qrencode-${version}.tar.gz"; + sha1 = "644054a76c8b593acb66a8c8b7dcf1b987c3d0b2"; + sha256 = "0wiagx7i8p9zal53smf5abrnh9lr31mv0p36wg017401jrmf5577"; + }; + + buildInputs = [ autoconf automake pkgconfig libtool SDL2 libpng ]; + + propagatedBuildInputs = [ SDL2 libpng ]; + + doCheck = true; + + meta = with stdenv.lib; { + homepage = "http://fukuchi.org/works/qrencode/"; + description = "A C library for encoding data in a QR Code symbol"; + + longDescription = '' + Libqrencode is a C library for encoding data in a QR Code symbol, + a kind of 2D symbology that can be scanned by handy terminals + such as a mobile phone with CCD. + ''; + + license = licenses.gpl2Plus; + maintainers = [ maintainers.adolfogc ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index babd69fc46d..2da504fc14d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2367,6 +2367,8 @@ in libqmi = callPackage ../development/libraries/libqmi { }; + libqrencode = callPackage ../development/libraries/libqrencode { }; + libmbim = callPackage ../development/libraries/libmbim { }; libmongo-client = callPackage ../development/libraries/libmongo-client { }; @@ -15605,7 +15607,7 @@ in soi = callPackage ../games/soi { lua = lua5_1; }; - + solarus = callPackage ../games/solarus { }; # You still can override by passing more arguments. From 60887fa193297f3fe635e646ecba08259978fa43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 11 Jul 2016 12:48:02 -0300 Subject: [PATCH 090/508] mate-icon-theme-faenza: 1.15.0 -> 1.15.1 (#16859) --- pkgs/desktops/mate/mate-icon-theme-faenza/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix index ea441f0cc09..e0f370fed76 100644 --- a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix +++ b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "mate-icon-theme-faenza-${version}"; version = "${major-ver}.${minor-ver}"; major-ver = "1.15"; - minor-ver = "0"; + minor-ver = "1"; src = fetchurl { url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; - sha256 = "0ypk61sjgqj0b1sina9947x1dg456baxhsyybmxrwpgy3pr06qlz"; + sha256 = "1x2jn86gcv6spnkvhjg0mzp5qhlb5dw4h8m8qp1hdgzzrzinfr3p"; }; nativeBuildInputs = [ autoreconfHook ]; From 1349cd4e8dac7d18e92e176e72d49bad9bc90472 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 12 Jul 2016 00:50:22 +0900 Subject: [PATCH 091/508] fcitx: refactor (#16858) --- nixos/modules/i18n/input-method/fcitx.nix | 2 +- pkgs/tools/inputmethods/fcitx/default.nix | 58 ++++----------------- pkgs/tools/inputmethods/fcitx/unwrapped.nix | 51 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 8 ++- 4 files changed, 64 insertions(+), 55 deletions(-) create mode 100644 pkgs/tools/inputmethods/fcitx/unwrapped.nix diff --git a/nixos/modules/i18n/input-method/fcitx.nix b/nixos/modules/i18n/input-method/fcitx.nix index bdefd2d2d59..e97bb9f80eb 100644 --- a/nixos/modules/i18n/input-method/fcitx.nix +++ b/nixos/modules/i18n/input-method/fcitx.nix @@ -4,7 +4,7 @@ with lib; let cfg = config.i18n.inputMethod.fcitx; - fcitxPackage = pkgs.fcitx-with-plugins.override { plugins = cfg.engines; }; + fcitxPackage = pkgs.fcitx.override { plugins = cfg.engines; }; fcitxEngine = types.package // { name = "fcitx-engine"; check = x: (lib.types.package.check x) && (attrByPath ["meta" "isFcitxEngine"] false x); diff --git a/pkgs/tools/inputmethods/fcitx/default.nix b/pkgs/tools/inputmethods/fcitx/default.nix index ba3a3f76ed9..69e4425d8c3 100644 --- a/pkgs/tools/inputmethods/fcitx/default.nix +++ b/pkgs/tools/inputmethods/fcitx/default.nix @@ -1,51 +1,11 @@ -{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext -, libxml2, enchant, isocodes, icu, libpthreadstubs -, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon -, dbus, gtk2, gtk3, qt4, kde5 -}: +{ callPackage, plugins ? [] }: -stdenv.mkDerivation rec { - name = "fcitx-${version}"; - version = "4.2.9.1"; - - src = fetchurl { - url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz"; - sha256 = "0xvcmm4yi7kagf55d0yl3ql5ssbkm9410fwbz3kd988pchichdsk"; +let + unwrapped = callPackage ./unwrapped.nix { }; + wrapped = callPackage ./wrapper.nix { + plugins = plugins; + fcitx = unwrapped; }; - - postUnpack = '' - ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/ECMFindModuleHelpers.cmake \ - $sourceRoot/cmake/ - ''; - - patches = [ ./fcitx-ecm.patch ]; - - postPatch = '' - substituteInPlace src/frontend/qt/CMakeLists.txt \ - --replace $\{QT_PLUGINS_DIR} $out/lib/qt4/plugins - ''; - - buildInputs = [ - cmake enchant gettext isocodes pkgconfig intltool icu - libpthreadstubs libXau libXdmcp libxkbfile libxkbcommon libxml2 - dbus cairo gtk2 gtk3 pango qt4 - ]; - - cmakeFlags = '' - -DENABLE_QT_IM_MODULE=ON - -DENABLE_GTK2_IM_MODULE=ON - -DENABLE_GTK3_IM_MODULE=ON - -DENABLE_GIR=OFF - -DENABLE_OPENCC=OFF - -DENABLE_PRESAGE=OFF - -DENABLE_XDGAUTOSTART=OFF - ''; - - meta = with stdenv.lib; { - homepage = "https://github.com/fcitx/fcitx"; - description = "A Flexible Input Method Framework"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ ericsagnes ]; - }; -} +in if plugins == [] + then unwrapped + else wrapped diff --git a/pkgs/tools/inputmethods/fcitx/unwrapped.nix b/pkgs/tools/inputmethods/fcitx/unwrapped.nix new file mode 100644 index 00000000000..ba3a3f76ed9 --- /dev/null +++ b/pkgs/tools/inputmethods/fcitx/unwrapped.nix @@ -0,0 +1,51 @@ +{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext +, libxml2, enchant, isocodes, icu, libpthreadstubs +, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon +, dbus, gtk2, gtk3, qt4, kde5 +}: + +stdenv.mkDerivation rec { + name = "fcitx-${version}"; + version = "4.2.9.1"; + + src = fetchurl { + url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz"; + sha256 = "0xvcmm4yi7kagf55d0yl3ql5ssbkm9410fwbz3kd988pchichdsk"; + }; + + postUnpack = '' + ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/ECMFindModuleHelpers.cmake \ + $sourceRoot/cmake/ + ''; + + patches = [ ./fcitx-ecm.patch ]; + + postPatch = '' + substituteInPlace src/frontend/qt/CMakeLists.txt \ + --replace $\{QT_PLUGINS_DIR} $out/lib/qt4/plugins + ''; + + buildInputs = [ + cmake enchant gettext isocodes pkgconfig intltool icu + libpthreadstubs libXau libXdmcp libxkbfile libxkbcommon libxml2 + dbus cairo gtk2 gtk3 pango qt4 + ]; + + cmakeFlags = '' + -DENABLE_QT_IM_MODULE=ON + -DENABLE_GTK2_IM_MODULE=ON + -DENABLE_GTK3_IM_MODULE=ON + -DENABLE_GIR=OFF + -DENABLE_OPENCC=OFF + -DENABLE_PRESAGE=OFF + -DENABLE_XDGAUTOSTART=OFF + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/fcitx/fcitx"; + description = "A Flexible Input Method Framework"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2da504fc14d..bb6fc978935 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1496,7 +1496,9 @@ in fatsort = callPackage ../tools/filesystems/fatsort { }; - fcitx = callPackage ../tools/inputmethods/fcitx { }; + fcitx = callPackage ../tools/inputmethods/fcitx { + plugins = []; + }; fcitx-engines = recurseIntoAttrs { @@ -1520,10 +1522,6 @@ in fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; - fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix { - plugins = [ ]; - }; - fcppt = callPackage ../development/libraries/fcppt/default.nix { }; fcron = callPackage ../tools/system/fcron { }; From b2b8a899450aeeaefce920a1a034a4cb8d800d9c Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Mon, 11 Jul 2016 16:53:41 +0100 Subject: [PATCH 092/508] linux-testing: 4.7-rc6 -> 4.7-rc7 (#16854) --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 27e3681fdba..37e5da5a905 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.7-rc6"; - modDirVersion = "4.7.0-rc6"; + version = "4.7-rc7"; + modDirVersion = "4.7.0-rc7"; extraMeta.branch = "4.7"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1kli8m6xkpdp45ryx6aq894q5dvrl1s7h3g1akk0l7xp6grshk8r"; + sha256 = "11c87rhxlrmag9hhg1m8zfff0d52yrzvhyjj9dxfa3nmxj4sfbb7"; }; features.iwlwifi = true; From dc5293d80b9c690dcb0c95d7174c16140f0fd089 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Mon, 11 Jul 2016 18:57:16 +0300 Subject: [PATCH 093/508] wine: 1.9.13 -> 1.9.14 (#16862) * Update wineUnstable: 1.9.13 -> 1.9.14 * Update staging: 1.9.13 -> 1.9.14 * Add myself as co-maintainer, because I am do regular updates. --- pkgs/misc/emulators/wine/base.nix | 2 +- pkgs/misc/emulators/wine/sources.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index 0d3fca6e1c8..e35e319a57f 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -102,6 +102,6 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) { homepage = "http://www.winehq.org/"; license = "LGPL"; description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix"; - maintainers = [stdenv.lib.maintainers.raskin]; + maintainers = with stdenv.lib.maintainers; [ avnik raskin ]; }; }) diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix index d124e296df9..9a437971e42 100644 --- a/pkgs/misc/emulators/wine/sources.nix +++ b/pkgs/misc/emulators/wine/sources.nix @@ -30,9 +30,9 @@ in rec { }; unstable = fetchurl rec { - version = "1.9.13"; + version = "1.9.14"; url = "mirror://sourceforge/wine/wine-${version}.tar.bz2"; - sha256 = "1nf06xgnda7y5ngnf8v14zaa0lnxzi1hxx7pf3jz2a0zswcq0rwv"; + sha256 = "0b65j8lc2axyc7lpa5rjr7vbjz4y78gkd7hhmvhra78pmwf9dgkz"; inherit (stable) mono; gecko32 = fetchurl rec { version = "2.44"; @@ -48,7 +48,7 @@ in rec { staging = fetchFromGitHub rec { inherit (unstable) version; - sha256 = "0iw14dwl91i5nd6wfr5i2vvii2w6j0sh95syc46z6yjgvxd14waq"; + sha256 = "0582ylrvl7racpb0il3wmbivb2d7lh6n3mymh19yw94qzgifwqrw"; owner = "wine-compholio"; repo = "wine-staging"; rev = "v${version}"; From 1b41283eb38094410faa70eded5215b809aa38ab Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 12 Jul 2016 01:05:23 +0900 Subject: [PATCH 094/508] wireguard: init at 20160708 (#16856) --- pkgs/os-specific/linux/wireguard/default.nix | 34 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/os-specific/linux/wireguard/default.nix diff --git a/pkgs/os-specific/linux/wireguard/default.nix b/pkgs/os-specific/linux/wireguard/default.nix new file mode 100644 index 00000000000..5328743d8b8 --- /dev/null +++ b/pkgs/os-specific/linux/wireguard/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchgit, libmnl, kernel }: + +stdenv.mkDerivation rec { + name = "wireguard-${version}"; + version = "20160708"; + + src = fetchgit { + url = "https://git.zx2c4.com/WireGuard"; + rev = "dcc2583fe0618931e51aedaeeddde356d123acb2"; + sha256 = "1ciyjpp8c3fv95y1cypk9qyqynp8cqyh2676afq2hd33110d37ni"; + }; + + preConfigure = '' + cd src + sed -i /depmod/d Makefile + ''; + + buildInputs = [ libmnl ]; + + KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; + + makeFlags = [ + "DESTDIR=$(out)" + "PREFIX=/" + "INSTALL_MOD_PATH=$(out)" + ]; + + meta = with stdenv.lib; { + homepage = https://www.wireguard.io/; + description = "Fast, modern, secure VPN tunnel"; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bb6fc978935..1c5045819ba 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11105,6 +11105,8 @@ in virtualboxGuestAdditions = callPackage ../applications/virtualization/virtualbox/guest-additions { }; + wireguard = callPackage ../os-specific/linux/wireguard {}; + x86_energy_perf_policy = callPackage ../os-specific/linux/x86_energy_perf_policy { }; zfs = callPackage ../os-specific/linux/zfs { From bc39354269a2aa6ff858ea233daac6f2d106461e Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Sat, 9 Jul 2016 22:01:02 +0200 Subject: [PATCH 095/508] elixir: 1.3.0 -> 1.3.1 --- pkgs/development/interpreters/elixir/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index fe78b966080..fc3070e55f1 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "elixir-${version}"; - version = "1.3.0"; + version = "1.3.1"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "elixir"; rev = "v${version}"; - sha256 = "06y8v239d5r3zr9s9mw19ws99qm7niicz69pqhawvg5qm4qxhvkr"; + sha256 = "0pihqgsnddrhhcpiphz170wgwlc59pd492iy4f66dajapm5k329d"; }; buildInputs = [ erlang rebar makeWrapper ]; From 8f98fcd73b61acfe60c1fed5825edc6c2c7153be Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Mon, 11 Jul 2016 19:10:43 +0300 Subject: [PATCH 096/508] lighthouse: init at 2016-01-26 (#16849) --- .../misc/lighthouse/Makefile.patch | 31 ++++++++++++ pkgs/applications/misc/lighthouse/default.nix | 49 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 82 insertions(+) create mode 100644 pkgs/applications/misc/lighthouse/Makefile.patch create mode 100644 pkgs/applications/misc/lighthouse/default.nix diff --git a/pkgs/applications/misc/lighthouse/Makefile.patch b/pkgs/applications/misc/lighthouse/Makefile.patch new file mode 100644 index 00000000000..0207299cc2c --- /dev/null +++ b/pkgs/applications/misc/lighthouse/Makefile.patch @@ -0,0 +1,31 @@ +# Description: Fix lighthouse Makefile +Index: Makefile +=================================================================== +--- ./Makefile 1970-01-01 02:00:01.000000000 +0200 ++++ ./Makefile 1970-01-01 02:00:01.000000000 +0200 +@@ -19,21 +19,10 @@ + endif + + # Library specific +-HAS_GDK := $(shell pkg-config --exists gdk-2.0 echo $?) +-ifdef $(HAS_GDK) +- CFLAGS+=`pkg-config --cflags gdk-2.0` +- LDFLAGS+=`pkg-config --libs gdk-2.0` +-else +- CFLAGS+=-DNO_GDK +-endif +-HAS_PANGO := $(shell pkg-config --exists pango echo $?) +-ifdef $(HAS_PANGO) +- CFLAGS+=`pkg-config --cflags pango` +- LDFLAGS+=`pkg-config --libs pango` +-else +- CFLAGS+=-DNO_PANGO +-endif +- ++CFLAGS+=$(shell pkg-config --cflags gdk-2.0) ++LDFLAGS+=$(shell pkg-config --libs gdk-2.0) ++CFLAGS+=$(shell pkg-config --cflags pango) ++LDFLAGS+=$(shell pkg-config --libs pango) + + all: lighthouse + diff --git a/pkgs/applications/misc/lighthouse/default.nix b/pkgs/applications/misc/lighthouse/default.nix new file mode 100644 index 00000000000..8400c01665e --- /dev/null +++ b/pkgs/applications/misc/lighthouse/default.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchFromGitHub, pkgconfig +, libX11, libxcb, cairo, gtk, pango, python27, python3 +}: + +stdenv.mkDerivation rec { + name = "lighthouse-${date}"; + date = "2016-01-26"; + + src = fetchFromGitHub { + owner = "emgram769"; + repo = "lighthouse"; + rev = "bf11f111572475e855b0329202a14c9e128c7e57"; + sha256 = "1ppika61vg4sc9mczbkjqy2mhgxqg57xrnsmmq0h2lyvj0yhg3qn"; + }; + + buildInputs = [ + pkgconfig libX11 libxcb cairo gtk pango python27 python3 + ]; + + patches = [ ./Makefile.patch ]; + + lighthouseInstaller = '' + #!${stdenv.shell} + cp -r $out/share/lighthouse/.config/lighthouse \$HOME/.config + chmod -R +w \$HOME/.config/lighthouse + ''; + + installPhase = '' + mkdir -p $out/bin + cp lighthouse $out/bin + chmod +x config/lighthouse/cmd* + chmod +x config/lighthouse/google.py + patchShebangs config/lighthouse/ + patchShebangs config/lighthouse/scripts/ + mkdir -p $out/share/lighthouse/.config + cp -r config/lighthouse $out/share/lighthouse/.config + echo "${lighthouseInstaller}" > $out/bin/lighthouse-install + chmod +x $out/bin/lighthouse-install + ''; + + meta = with stdenv.lib; { + description = "A simple flexible popup dialog to run on X"; + homepage = https://github.com/emgram769/lighthouse; + license = licenses.mit; + maintainers = with maintainers; [ ramkromberg ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c5045819ba..cdd6bbeb4d9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13521,6 +13521,8 @@ in }; ledger = self.ledger3; + lighthouse = callPackage ../applications/misc/lighthouse { }; + lighttable = callPackage ../applications/editors/lighttable {}; links2 = callPackage ../applications/networking/browsers/links2 { }; From 8c81c234d3a3fa9aa38d8ae1c427c66a083c3bce Mon Sep 17 00:00:00 2001 From: Scott Stevenson Date: Mon, 11 Jul 2016 17:11:31 +0100 Subject: [PATCH 097/508] rcm: 1.2.3 -> 1.3.0 (#16847) --- pkgs/tools/misc/rcm/default.nix | 6 +- pkgs/tools/misc/rcm/fix-rcmlib-path.patch | 116 +++++++++------------- 2 files changed, 51 insertions(+), 71 deletions(-) diff --git a/pkgs/tools/misc/rcm/default.nix b/pkgs/tools/misc/rcm/default.nix index 59eccbb1ab6..efc42ee73ec 100644 --- a/pkgs/tools/misc/rcm/default.nix +++ b/pkgs/tools/misc/rcm/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation { - name = "rcm-1.2.3"; + name = "rcm-1.3.0"; src = fetchurl { - url = https://thoughtbot.github.io/rcm/dist/rcm-1.2.3.tar.gz; - sha256 = "0gwpclbc152jkclj3w83s2snx3dcgljwr75q1z8czl3yar7d8bsh"; + url = https://thoughtbot.github.io/rcm/dist/rcm-1.3.0.tar.gz; + sha256 = "ddcf638b367b0361d8e063c29fd573dbe1712d1b83e8d5b3a868e4aa45ffc847"; }; patches = [ ./fix-rcmlib-path.patch ]; diff --git a/pkgs/tools/misc/rcm/fix-rcmlib-path.patch b/pkgs/tools/misc/rcm/fix-rcmlib-path.patch index 45bd32a2d2b..e7d600d2a1f 100644 --- a/pkgs/tools/misc/rcm/fix-rcmlib-path.patch +++ b/pkgs/tools/misc/rcm/fix-rcmlib-path.patch @@ -1,68 +1,48 @@ -*** rcm-1.2.3/bin/lsrc.in.orig 2014-05-09 04:57:39.000000000 -0700 ---- rcm-1.2.3/bin/lsrc.in 2015-01-24 14:27:48.786595479 -0800 -*************** -*** 1,6 **** - #!@SHELL@ - -! : ${RCM_LIB:=$(dirname "$0")/../share/rcm} - . "$RCM_LIB/rcm.sh" - - pushdir() { ---- 1,6 ---- - #!@SHELL@ - -! RCM_LIB=@rcm@/share/rcm - . "$RCM_LIB/rcm.sh" - - pushdir() { -*** rcm-1.2.3/bin/mkrc.in.orig 2014-05-09 04:57:39.000000000 -0700 ---- rcm-1.2.3/bin/mkrc.in 2015-01-24 14:27:48.786595479 -0800 -*************** -*** 1,6 **** - #!@SHELL@ - -! : ${RCM_LIB:=$(dirname "$0")/../share/rcm} - . "$RCM_LIB/rcm.sh" - - destination() { ---- 1,6 ---- - #!@SHELL@ - -! RCM_LIB=@rcm@/share/rcm - . "$RCM_LIB/rcm.sh" - - destination() { -*** rcm-1.2.3/bin/rcdn.in.orig 2014-05-09 04:57:39.000000000 -0700 ---- rcm-1.2.3/bin/rcdn.in 2015-01-24 14:27:48.786595479 -0800 -*************** -*** 1,6 **** - #!@SHELL@ - -! : ${RCM_LIB:=$(dirname "$0")/../share/rcm} - . "$RCM_LIB/rcm.sh" - - remove_link() { ---- 1,6 ---- - #!@SHELL@ - -! RCM_LIB=@rcm@/share/rcm - . "$RCM_LIB/rcm.sh" - - remove_link() { -*** rcm-1.2.3/bin/rcup.in.orig 2014-05-09 04:57:39.000000000 -0700 ---- rcm-1.2.3/bin/rcup.in 2015-01-24 14:27:48.786595479 -0800 -*************** -*** 1,6 **** - #!@SHELL@ - -! : ${RCM_LIB:=$(dirname "$0")/../share/rcm} - . "$RCM_LIB/rcm.sh" - - link_or_copy() { ---- 1,6 ---- - #!@SHELL@ - -! RCM_LIB=@rcm@/share/rcm - . "$RCM_LIB/rcm.sh" - - link_or_copy() { +diff --git a/bin/lsrc.in b/bin/lsrc.in +index fcf5fbe..119d659 100755 +--- a/bin/lsrc.in ++++ b/bin/lsrc.in +@@ -1,6 +1,6 @@ + #!@SHELL@ + +-: ${RCM_LIB:=$(dirname "$0")/../share/rcm} ++RCM_LIB=@rcm@/share/rcm + . "$RCM_LIB/rcm.sh" + + pushdir() { +diff --git a/bin/mkrc.in b/bin/mkrc.in +index da22a63..a6bb0ad 100755 +--- a/bin/mkrc.in ++++ b/bin/mkrc.in +@@ -1,6 +1,6 @@ + #!@SHELL@ + +-: ${RCM_LIB:=$(dirname "$0")/../share/rcm} ++RCM_LIB=@rcm@/share/rcm + . "$RCM_LIB/rcm.sh" + + destination() { +diff --git a/bin/rcdn.in b/bin/rcdn.in +index ae7aad8..c210599 100755 +--- a/bin/rcdn.in ++++ b/bin/rcdn.in +@@ -1,6 +1,6 @@ + #!@SHELL@ + +-: ${RCM_LIB:=$(dirname "$0")/../share/rcm} ++RCM_LIB=@rcm@/share/rcm + . "$RCM_LIB/rcm.sh" + + remove_link() { +diff --git a/bin/rcup.in b/bin/rcup.in +index bdae664..2076f53 100755 +--- a/bin/rcup.in ++++ b/bin/rcup.in +@@ -1,6 +1,6 @@ + #!@SHELL@ + +-: ${RCM_LIB:=$(dirname "$0")/../share/rcm} ++RCM_LIB=@rcm@/share/rcm + . "$RCM_LIB/rcm.sh" + + print_ln_v() { From 811cf56f5f006274ea016db9674f566bfa2cc640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gammels=C3=A6ter?= Date: Mon, 11 Jul 2016 19:35:00 +0200 Subject: [PATCH 098/508] mypy-lang: init at 0.4.2 --- lib/maintainers.nix | 1 + pkgs/development/tools/mypy-lang/default.nix | 21 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 24 insertions(+) create mode 100644 pkgs/development/tools/mypy-lang/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 44a68975bd0..3e4229bf441 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -232,6 +232,7 @@ markus1189 = "Markus Hauck "; markWot = "Markus Wotringer "; martijnvermaat = "Martijn Vermaat "; + martingms = "Martin Gammelsæter "; matejc = "Matej Cotman "; mathnerd314 = "Mathnerd314 "; matthiasbeyer = "Matthias Beyer "; diff --git a/pkgs/development/tools/mypy-lang/default.nix b/pkgs/development/tools/mypy-lang/default.nix new file mode 100644 index 00000000000..d5a5095a262 --- /dev/null +++ b/pkgs/development/tools/mypy-lang/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, python35Packages }: + +python35Packages.buildPythonApplication rec { + name = "mypy-lang-${version}"; + version = "0.4.2"; + + # Tests not included in pip package. + doCheck = false; + + src = fetchurl { + url = "mirror://pypi/m/mypy-lang/${name}.tar.gz"; + sha256 = "12vwgzbpv0n403dvzas5ckw0f62slqk5j3024y65hi9n95r34rws"; + }; + + meta = with stdenv.lib; { + description = "Optional static typing for Python"; + homepage = "http://www.mypy-lang.org"; + license = licenses.mit; + maintainers = with maintainers; [ martingms ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cdd6bbeb4d9..621aaca850c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6705,6 +6705,8 @@ in grabserial = callPackage ../development/tools/grabserial { }; + mypy-lang = callPackage ../development/tools/mypy-lang { }; + ### DEVELOPMENT / LIBRARIES From 15d28334a716351371e4074a1e963a02193fe3fd Mon Sep 17 00:00:00 2001 From: mimadrid Date: Mon, 11 Jul 2016 22:06:34 +0200 Subject: [PATCH 099/508] filezilla: 3.18.0 -> 3.19.0 --- pkgs/applications/networking/ftp/filezilla/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 4b7b56c69ea..5d92f7455d6 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext , pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }: -let version = "3.18.0"; in +let version = "3.19.0"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "1qnpbx2684r529ldih6fi5anjlcgqn2xfcls0q38iadrk1qnqr1p"; + sha256 = "0827z1jmn8pkzrcpjgh5yh2r23vgv73yb4rikraxa9i7l118g9l2"; }; configureFlags = [ From 2eb8aab42cf8623704904b41f4ffe9783bad7b07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 6 Jul 2016 18:50:05 +0200 Subject: [PATCH 100/508] nixos/systemd: disable timer units with service A disabled systemd service with a "startAt" attribute, like this: systemd.services.foo-service = { enable = false; startAt = "*-*-* 05:15:00"; ... }; will cause the following errors in the system journal: systemd[1]: foo-service.timer: Refusing to start, unit to trigger not loaded. systemd[1]: Failed to start foo-service.timer. Fix it by not generating the corresponding timer unit when the service is disabled. --- nixos/modules/system/boot/systemd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index b7c09d2e4bf..5c8cce5066a 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -764,7 +764,7 @@ in { wantedBy = [ "timers.target" ]; timerConfig.OnCalendar = service.startAt; }) - (filterAttrs (name: service: service.startAt != "") cfg.services); + (filterAttrs (name: service: service.enable && service.startAt != "") cfg.services); # Generate timer units for all services that have a ‘startAt’ value. systemd.user.timers = From 963327aacb67322c8cc1ace863e7747823aa89e0 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Mon, 11 Jul 2016 22:49:16 +0200 Subject: [PATCH 101/508] vimPlugins: updating plugin and adding floobits plugin --- pkgs/misc/vim-plugins/default.nix | 333 +++++++++++++------------ pkgs/misc/vim-plugins/vim-plugin-names | 3 +- pkgs/misc/vim-plugins/vim-utils.nix | 2 +- 3 files changed, 175 insertions(+), 163 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 8ded4ca98cb..a34690853fc 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -173,11 +173,11 @@ rec { }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2016-06-12"; + name = "Syntastic-2016-07-08"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "d6b96c079be137c83009827b543a83aa113cc011"; - sha256 = "1hb1vs0sqzpjbh4l2q1rfhh4mxvhn08pin3glba26p37639w9qqc"; + rev = "87f3e80b443870ce821f82dd1b3dba5bd66b51b2"; + sha256 = "09prhzp58470naj8ws2m1pjgj1h675jsiyc6vmfdjsqk6ly2ypg0"; }; dependencies = []; @@ -217,22 +217,22 @@ rec { }; The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "The_NERD_tree-2016-06-10"; + name = "The_NERD_tree-2016-06-23"; src = fetchgit { url = "git://github.com/scrooloose/nerdtree"; - rev = "d280b15ba9388ab93f3401b26877a13fdb8ed816"; - sha256 = "19mlvmlg1lccr2kkigbggv3jfl0bdc5r6lpa2jds1j20gxp9zhwi"; + rev = "2e2b649232d6ae4d02d74793e5da0ee08480ad8d"; + sha256 = "1rfm6w60bk168y1l9hjjxd4840j1jr1h0s77lsdjr9wxpxbw59ml"; }; dependencies = []; }; UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "UltiSnips-2016-05-16"; + name = "UltiSnips-2016-07-07"; src = fetchgit { url = "git://github.com/SirVer/ultisnips"; - rev = "1c6b4f75a006c4411d01a1234cabda3eb4aded1a"; - sha256 = "0m9sfq9d9qvrx5valg0xz9bi0y2zi3790rg1qlnin4h1gbj5axjb"; + rev = "e8c485eb3c7e2c4c3ddc62beb79011f026a3ca04"; + sha256 = "03cdpz136ry6v7h0sddlyvgxwvp3bl1ir7451v3sd6q867ywvbs7"; }; dependencies = []; @@ -250,11 +250,11 @@ rec { }; WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "WebAPI-2016-05-12"; + name = "WebAPI-2016-07-06"; src = fetchgit { url = "git://github.com/mattn/webapi-vim"; - rev = "ca89bd5867e76b154d4eca325b5a9ad6509fccc5"; - sha256 = "138rplbmvxicxjkkbvskck3b91rill53y22yrnnd9rj7zh9hj0zm"; + rev = "e3fa93f29a3a0754204002775e140d8a9acfd7fd"; + sha256 = "0z6s3cnipcww4q33d4dcp0p8jw29izghcrj75fxy6dmy1yw2fbcr"; }; dependencies = []; @@ -288,11 +288,11 @@ rec { }; ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-py-matcher-2016-01-13"; + name = "ctrlp-py-matcher-2016-06-22"; src = fetchgit { url = "git://github.com/FelikZ/ctrlp-py-matcher"; - rev = "8a803267a741cff3d6147650745f83c8f2125578"; - sha256 = "0d5a7cqjh58l8qgj92s06f2ia83w51g4cic61qxd6sykv9xqiz17"; + rev = "fb831ff903d5622b39f400fc8ba80f9bbd225307"; + sha256 = "0zamyhxn910q6yyja6ypc92pxr47n28yzb6h90x20z0q2wka5842"; }; dependencies = []; @@ -321,33 +321,33 @@ rec { }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2016-05-11"; + name = "fugitive-2016-07-06"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "3439f999b138254e4bb56187fc91f91f545b4b12"; - sha256 = "0b617wljhcbz6w789j72lp4riplcb6m3b2h8x84awp2rls6k130b"; + rev = "c00ebd75ac23f4080c0d0bf9453b16304a3fb316"; + sha256 = "0j8vy6n70m02k2iq4y4nbpc0jnzk1ag51qnnbxj7aad4hkn8hban"; }; dependencies = []; }; ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ghcmod-2016-01-25"; + name = "ghcmod-2016-06-19"; src = fetchgit { url = "git://github.com/eagletmt/ghcmod-vim"; - rev = "815616e8b7d64677d6092e95bc6a3e83d2e035d4"; - sha256 = "00pl4zimbhcfpjg326qkjxr4s4d21kzl4j617382rvqbingrm8is"; + rev = "1d192d13d68ab59f9f46497a0909bf24a7b7dfff"; + sha256 = "0bzahgzagnf0a9zv86jhdf8nc3p0yfz9izv5n3lc8gc12cp47d0a"; }; dependencies = []; }; vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-autoformat-2016-06-10"; + name = "vim-autoformat-2016-07-08"; src = fetchgit { url = "git://github.com/Chiel92/vim-autoformat"; - rev = "9742ae2dfb46b26b9aed39491afe3d3ecb5eafd0"; - sha256 = "0lagj6977vbjvzk01sf43hhmj1jh7d2sa478igjmkw8j3gwvxcmq"; + rev = "06251ab31789b6c478358306ab0e476c7d03b0d5"; + sha256 = "0q749lbz1zzajdwyyznyg7h4mf2sdd0sq77dr24szs4f937zy007"; }; dependencies = []; @@ -365,22 +365,11 @@ rec { }; deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "deoplete-nvim-2016-06-11"; + name = "deoplete-nvim-2016-07-10"; src = fetchgit { url = "git://github.com/Shougo/deoplete.nvim"; - rev = "eac8020ef6f740df9109fa557b46a488f98103f1"; - sha256 = "0fsg9mr23qsqhvzjmj626nd873zqwyxzvr5b1i97l0g6zwq3q8i8"; - }; - dependencies = []; - - }; - - deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "deoplete-jedi-2016-06-5"; - src = fetchgit { - url = "git://github.com/zchee/deoplete-jedi"; - rev = "36aec0d7166f9e18e05b45468e161f01909d77ec"; - sha256 = "0h8vn7r5fkwvbxhqx6xh95iq1klz9ppbax9l3rxlfkp3w67kkj2k"; + rev = "8102bbb73f942b232b6bcc00b8699fbe3b3f370c"; + sha256 = "083056maiscxyyln09659qv3c7kayps2vm697p459yyhfyir742f"; }; dependencies = []; @@ -420,11 +409,11 @@ rec { }; neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neomake-2016-06-08"; + name = "neomake-2016-07-11"; src = fetchgit { url = "git://github.com/benekastah/neomake"; - rev = "0de96a8a906d254ee3b5e6cd1e9838f1c1cc59c5"; - sha256 = "1adq47ra0vf5kak7m65gyaxi1jkbdi7647bb73785j3sx5q41v0f"; + rev = "14e894edc35d17b927e5540ceb6d101bbda9f51c"; + sha256 = "1ccgfvvxsl213zlgf801yxwg51kpi5z37z175w4gh9cj8953mgxh"; }; dependencies = []; @@ -442,55 +431,55 @@ rec { }; vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-tmux-navigator-2016-06-03"; + name = "vim-tmux-navigator-2016-07-07"; src = fetchgit { url = "git://github.com/christoomey/vim-tmux-navigator"; - rev = "57701ac650990010ea97b1b4d64779d0b60c769b"; - sha256 = "0kl9as63h8bfkmqhq9myma6z7xvp30hiqcnxham4cvd6vhph3b7j"; + rev = "d0123a8679cebec89ddd385756b25e4c812556b6"; + sha256 = "1bk3saff0lxzl1zrv97klx8f4kqvr01ypv13vg5andc1ylk2nqqf"; }; dependencies = []; }; spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "spacevim-2016-06-08"; + name = "spacevim-2016-07-07"; src = fetchgit { url = "git://github.com/ctjhoa/spacevim"; - rev = "c8811a397249508432199786abbbd41429b6c90b"; - sha256 = "0a41pjc6qd378y8sg2sp65k0s32ssn9pkk6yyss92k97rlx2bsjp"; + rev = "714cc22f8c4544676a9cc2a4ac075b630ffa5b34"; + sha256 = "0l66h05hridjihjp4g94zq3mrfjs4pywzlb5wh95yvcdix8kyzzm"; }; dependencies = []; }; ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-vim-2016-06-08"; + name = "ctrlp-vim-2016-07-08"; src = fetchgit { url = "git://github.com/ctrlpvim/ctrlp.vim"; - rev = "cd99e43613202d56b2adfc8f9bd216734a9601fd"; - sha256 = "0inlwdl27rsjq9jaa37w21kgbvf6v8351xzqz6y2f6s5ciwbhfm3"; + rev = "b9fa920b4abbb54799927a3bc57869fdd556321a"; + sha256 = "1h8cm9mihd3jngmb6x60hxyr0g3swg6xhq8jw36xskb1ygdvbxzp"; }; dependencies = []; }; vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-jade-2016-02-11"; + name = "vim-jade-2016-06-28"; src = fetchgit { url = "git://github.com/digitaltoad/vim-jade"; - rev = "0a7ec2edaa3f7fbe353f8fd5bf06d3c043d70c81"; - sha256 = "0qlwbywnx6sl2xacdialpmg1d2wmjkdsdklz97k8086glkairs10"; + rev = "f3950a72ea92f2c372846e763dad1f1151a38fb1"; + sha256 = "1wa7zf24szmwchk608s5ikv14jzch9nl8isrn9ji9sz2511w50wp"; }; dependencies = []; }; neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neco-ghc-2016-05-07"; + name = "neco-ghc-2016-07-01"; src = fetchgit { url = "git://github.com/eagletmt/neco-ghc"; - rev = "b91b30f145d4daaf7e50d083e377bd9fbfdc670b"; - sha256 = "1fnxqqp4p7kxzs7svia33wikrzyav41qlncjpmbz6ss8jb9bk18b"; + rev = "7f02a9c25fb272a87d2be092826e2cd3094c620d"; + sha256 = "1fcfk45qb96h6y4zb3p0104iyqc85q1synn9ah56zp6hnkkyffbw"; }; dependencies = []; @@ -530,11 +519,11 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2016-06-11"; + name = "vim-go-2016-07-07"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "6efcfb275c8f7779bfc0738da730dfab19f157fe"; - sha256 = "14n7phv3b4s7fhz94ziafakd0wl6n4z3a12i5qq2hdavi98kd640"; + rev = "ab01e7e5a6bf858c1f519a831a4db1d978b92298"; + sha256 = "1g76hasdyncjds6yl38dkb5nwp6sb8aqzp9d7xxhwarlnnihj1la"; }; dependencies = []; @@ -551,12 +540,23 @@ rec { }; + floobits-neovim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "floobits-neovim-2016-06-20"; + src = fetchgit { + url = "git://github.com/floobits/floobits-neovim"; + rev = "cd9247f2ddeab1f9da247d495127b1a836415783"; + sha256 = "12r0xmb5fl6gj47dr8xwiw0pan4xdwjxjjnyi5smfy4sg29lzwl7"; + }; + dependencies = []; + + }; + psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "psc-ide-vim-2016-04-26"; + name = "psc-ide-vim-2016-07-06"; src = fetchgit { url = "git://github.com/frigoeu/psc-ide-vim"; - rev = "27c000f0f27c7a4d05f001320ddcf1ae15b22eb7"; - sha256 = "1vgxf5kziv00mi346zw3b2dnxygxk0jyxg41y6w1j22yrp9id1k2"; + rev = "8704b993fe7dced73aa871244fbf7cd2fbafb759"; + sha256 = "1wvs5v59aai3q2lgavaav073gz609944j8xbck34xyyq2naqmhaq"; }; dependencies = []; @@ -596,11 +596,11 @@ rec { }; calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "calendar-vim-2016-05-19"; + name = "calendar-vim-2016-07-06"; src = fetchgit { url = "git://github.com/itchyny/calendar.vim"; - rev = "f49bd337a4643bb58df0fa4df230d60bdfeef022"; - sha256 = "06hzvcpkgz51jl6zj67ycga5p9n1y6kk335d3cha24divp4ll1jb"; + rev = "e5ecd6c6635b0b8c3bc11d3a28f48e0b224e1391"; + sha256 = "0v611z5a24201194j592bpyid27cyfir66xr0pss71yk35wk9agy"; }; dependencies = []; @@ -651,11 +651,11 @@ rec { }; vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-orgmode-2016-05-15"; + name = "vim-orgmode-2016-07-08"; src = fetchgit { url = "git://github.com/jceb/vim-orgmode"; - rev = "e0d56a6e93798b7a503bb4ab86fec016cd74d466"; - sha256 = "0704wli8n1x4v40mdfj0icjarr52iqvw2byzsvyzb420wpf1nqpb"; + rev = "54057d58888ad29672cd0cd782be5fc8b1a3a709"; + sha256 = "134dsnfpkzq9gd3d8b9pvy7c5yvy9yxjyvidg927ha1lpilf4kp9"; }; dependencies = []; @@ -728,33 +728,33 @@ rec { }; fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fzf-vim-2016-06-14"; + name = "fzf-vim-2016-07-02"; src = fetchgit { url = "git://github.com/junegunn/fzf.vim"; - rev = "0867178d9963e9f971c7799b0820aab985676c3c"; - sha256 = "09d9v4anraxp6bk54mkx4w7j256b21m7ik77l647j3bnyn0z3wf8"; + rev = "e0182d33716068ffb1b53f7a8931fe1b5594f382"; + sha256 = "0hg6yzm11qwgq6cbf1ldb9i3p4r8h6f5ykvlrqh5znyzlxxf27vz"; }; dependencies = []; }; limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "limelight-vim-2016-05-17"; + name = "limelight-vim-2016-06-24"; src = fetchgit { url = "git://github.com/junegunn/limelight.vim"; - rev = "e93c8013bb66d4b6622e24e0e3a97e71a032d9ec"; - sha256 = "1xq3fa44fz3dfl52y0ygm21pa8b121b5lsdflcvn0igvisdkzl6g"; + rev = "106fb5749d227a0de72e36068ed72798c6fd48e6"; + sha256 = "0fp4yp50n5v5zx3a7afh9wip4nwcfhmdgdzwpnl79jvild1z9fgh"; }; dependencies = []; }; vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-peekaboo-2016-05-31"; + name = "vim-peekaboo-2016-07-08"; src = fetchgit { url = "git://github.com/junegunn/vim-peekaboo"; - rev = "35ee385d451d06c93177d6bb268dcefd19b091da"; - sha256 = "1ix03w0rcn5l8ljszhsn53gsqmpsk12qv1s6imd5nhdf66njhlks"; + rev = "13e44380895b4a0e52a710a7056ad40514ff5927"; + sha256 = "12pa03dj4plc6za93skcrn3zhz2faw578a78038dwh3fd608rwyd"; }; dependencies = []; @@ -794,11 +794,11 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2016-06-14"; + name = "vimtex-2016-07-10"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "1211d5725331a221329f8cd98756c8ef68556fd9"; - sha256 = "0hjajg8ls2gl0jjrcb7m5qrvvzlm86jac8786fi56iql3r1yvlil"; + rev = "c16bd147092bfe7ac63f39cd449f36e14e42e948"; + sha256 = "18p7vmas0754r9n227v68wry285vr4y90v3kxcnn9hl60xxb3ba9"; }; dependencies = []; @@ -831,11 +831,11 @@ rec { }; vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-startify-2016-06-08"; + name = "vim-startify-2016-07-01"; src = fetchgit { url = "git://github.com/mhinz/vim-startify"; - rev = "dbaa0254249a5d9685ffc9513557bb811fad65b4"; - sha256 = "1l65ah2k437rhp3rr81fgrwwr7vvipfrj5vlixx49zxgzy489wr4"; + rev = "84a296eb5c36dc263ab67db3202e57fa783473b0"; + sha256 = "0pv15n8mpzgkp7b0fqpjbv24yn8fswwryxi6lzavjhrbqzmv7mxw"; }; dependencies = []; @@ -875,11 +875,11 @@ rec { }; haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "haskell-vim-2016-05-17"; + name = "haskell-vim-2016-07-06"; src = fetchgit { url = "git://github.com/neovimhaskell/haskell-vim"; - rev = "f73cdcdf72e9200420fc74491b6cd215512c3330"; - sha256 = "1fgcfcslb6p84xcv1ighd8i4p4960vac7f7zpvl0d7bpp75ci07b"; + rev = "a9ceb3d812488c1cee8a2b763cca0e4a48bfd14c"; + sha256 = "022ckyc85i8f6r32z2grn41s9g4fg1a7fqprzbgs2kbi9k2igqni"; }; dependencies = []; @@ -897,22 +897,22 @@ rec { }; vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-watchdogs-2016-05-29"; + name = "vim-watchdogs-2016-06-26"; src = fetchgit { url = "git://github.com/osyo-manga/vim-watchdogs"; - rev = "a1136db1d8806a03fc8ea81aa60e82d4cba57fb5"; - sha256 = "1qk0wg11x6xwakqqbnx47ma5arsam55jqag0hxsf6is2yjqxb825"; + rev = "7c89466b2b7fd9b87e0189e4ac66b84f2cfbc842"; + sha256 = "09swjrfrqvciw7blqd1ssklxs09x0sd7ixphy07az7cxfmpdpi4r"; }; dependencies = []; }; vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-racer-2016-05-31"; + name = "vim-racer-2016-06-27"; src = fetchgit { url = "git://github.com/racer-rust/vim-racer"; - rev = "392e5818039a13f0cc3f819afcbb31291b1635a4"; - sha256 = "0fs3zlsc1h4a58m0xlv11g5vzfvhjrinnmxh7xmgjnnd4njx8iax"; + rev = "a72b26bb25cb65be29fd1912e9344eaa860fce5e"; + sha256 = "01xg6mmnlx5l37rsb7w0dbgy36pd6zyq7gcigdbj0pgqd39w30fv"; }; dependencies = []; @@ -930,66 +930,66 @@ rec { }; rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "rust-vim-2016-06-05"; + name = "rust-vim-2016-06-21"; src = fetchgit { url = "git://github.com/rust-lang/rust.vim"; - rev = "e064f270e85e0cbb7bd643aeda3e7088378341f7"; - sha256 = "04s3c1hwxcprvzn8wx39f9mg3rmgwvqvinqwbfm591pjpialvmpk"; + rev = "5dd7ab99103c05a56e059b39ad9f63274d2ae72e"; + sha256 = "0az35kfcpavz6sbh6mf0mmv7mp5zbnqmnljpmlm1srn6rr9rah2q"; }; dependencies = []; }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2016-06-07"; + name = "neocomplete-vim-2016-06-26"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "14698b37d10b8ae18a4850aa784fdd3130e4ba3e"; - sha256 = "08bg6yafp68gh82afzzn9msb7adydihdvxyzigvjzr94bzv4n4ab"; + rev = "71800331948b1bc3c3d79dbbf203a274cd5b6f56"; + sha256 = "132bksxnj50yc2d8hx5sh4xbhzh0shidrvzlalb7gfhkanpg443w"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2016-05-26"; + name = "neosnippet-snippets-2016-06-26"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "dbce664a473e2344d2cc4e494fb5e408452646e2"; - sha256 = "008brypf2jc9kl1gqyl1x2b1qx0bzvvfc0qqg0aniva2hwsda38k"; + rev = "17219351bcbec3708295c72c8280471eed12b8fe"; + sha256 = "08lrqsl9cqkx42llgv0mc54nsmdrv68bpzip2snr58klaj444nir"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2016-06-11"; + name = "neosnippet-vim-2016-07-10"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "23eac4b080bb9788fbe61a0b93c7cf39e533f490"; - sha256 = "01hbglhvgkfq78hxyh32afi4q47y6l3lm7yn4cz532cqd7ac78ij"; + rev = "9492fbb7e9016243af3c1987b91f0bffcf4cc8e7"; + sha256 = "0p2d762z0s9ayrc4kcqr7s1hmcghd04z818szqdn6v6rsr9lyln8"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2016-06-11"; + name = "unite-vim-2016-06-30"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "27a97d3eacd209c4f6e15c98e9217a4f6c438ac5"; - sha256 = "14d87skqrsdb61nqpdch584hi0hpb5a0nqf35q5727pz6ckch32f"; + rev = "faeff916c6af683990d3afe571047ebdb8bf2a4b"; + sha256 = "1a29h4450z2g3599g8ln1l10h2lfwf7qr5j15hkrg7z23i5xgrj7"; }; dependencies = []; }; vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimproc-vim-2016-06-11"; + name = "vimproc-vim-2016-07-10"; src = fetchgit { url = "git://github.com/shougo/vimproc.vim"; - rev = "c2f6b82af60a4e7acde0e8dc4e6b6f5dc1cc8e1d"; - sha256 = "1h79c0fskvalasji290qz89y1s9c1mic7h1p82p1im036jvmkf22"; + rev = "b2255c66a3dc04fba1adbda3e380facff45fe6ec"; + sha256 = "09fabq1j3grd8d8xz0y9i5y756mqzs9n7icvnlmi6hbjzkv1rkx6"; }; dependencies = []; buildInputs = [ which ]; @@ -1025,11 +1025,11 @@ rec { }; vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-hardtime-2016-05-03"; + name = "vim-hardtime-2016-07-05"; src = fetchgit { url = "git://github.com/takac/vim-hardtime"; - rev = "acf59c8df88e1445c145dfca626957d54a1310c3"; - sha256 = "1q7lhj6ll3lycsxqj0ymm7pb6m1sdglgip7wkirjv357yxl7y7kr"; + rev = "93ed99803df721648a9b93f0ccd4afe3d8d95a4e"; + sha256 = "0as6kbdg2jqkxphxyv6ik6qxyp245hl52aqmx5gjd4vi3pryg0gl"; }; dependencies = []; @@ -1058,11 +1058,11 @@ rec { }; vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-quickrun-2016-06-09"; + name = "vim-quickrun-2016-07-02"; src = fetchgit { url = "git://github.com/thinca/vim-quickrun"; - rev = "bb4daff0342ce3311b7f6c2fd3e2160f2be9e374"; - sha256 = "11baxdcqr8854ijp0gkwwjl9navv8x1dv53p2isiq5vpqiq4n3mw"; + rev = "5149ecd1502b7fc2583cb8799ac1a0c72c41f828"; + sha256 = "1y32s42wgcq8qssm7yr578vvamvlb4kkdb1k5mhp0hmwskj2v7xp"; }; dependencies = []; @@ -1113,11 +1113,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-06-13"; + name = "youcompleteme-2016-07-11"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "871387bd2a2ed9270ccc17ed63dde99c840deab5"; - sha256 = "19ll1nh6nxl31zdajz9kdgw18mvsy4d630435z604rxik2rgbh3d"; + rev = "c44489af16de6ae86294de7dd194bd6e53adaf1e"; + sha256 = "1m8m6wyics1mlxcxzq83ql8l4vd16cfbhc418vmxflx3178ifr36"; }; dependencies = []; buildInputs = [ @@ -1153,22 +1153,22 @@ rec { }; vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-themes-2016-06-06"; + name = "vim-airline-themes-2016-07-08"; src = fetchgit { url = "git://github.com/vim-airline/vim-airline-themes"; - rev = "796478723c01a275269b96f63ee5cd5b44a342f4"; - sha256 = "1irvzv1sq12y2q6yjb26b89j5pxs5cia35dax093q6h88ywq709g"; + rev = "aa95f935047323dbcbe2fed210bd3a0356a3c32b"; + sha256 = "0mz1wb8bwcyd21wcvkdd58dbga78pdrcxnxwmvf0pi8ywix7aw01"; }; dependencies = []; }; vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-2016-05-24"; + name = "vim-pandoc-2016-07-11"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc"; - rev = "cca2326046fd9bf44276e6d44f106c90d80eca25"; - sha256 = "106dxdll11sj5vi34a0nq5kmfbp13g80ix26m6k9snxjx2y79y3s"; + rev = "18461740f6915540e4833a71ab54a8205c9898b8"; + sha256 = "00mawpl3wwj223g7bcmx4ghfysvxg9d3iqk1h8azykgccp6wg7p6"; }; dependencies = []; @@ -1274,11 +1274,11 @@ rec { }; vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-wakatime-2016-06-13"; + name = "vim-wakatime-2016-07-06"; src = fetchgit { url = "git://github.com/wakatime/vim-wakatime"; - rev = "cd074dcff51f12d1658902d4fe0d9f311ac94a2d"; - sha256 = "0sq7n9w4nadc0psr74g7bmgv87bqlzsmyrr4iyalz108bdgxahav"; + rev = "31b1a5d78244605fcab024edc20e6a0c059e449f"; + sha256 = "0k5bnckv1882r9445p74a4iqys72imy23w87c1shq1gxps47cwms"; }; dependencies = []; buildInputs = [ python ]; @@ -1301,6 +1301,17 @@ rec { ''; }; + deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "deoplete-jedi-2016-07-10"; + src = fetchgit { + url = "git://github.com/zchee/deoplete-jedi"; + rev = "e7f0a94ea64b86d2b4946d30b6cedb38133d6603"; + sha256 = "05j1lfqxagndglyh337b6v2l4zmpa9fwrkgr0g4kk1s6f0lmla2b"; + }; + dependencies = []; + + }; + goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "goyo-2016-04-03"; src = fetchgit { @@ -1390,11 +1401,11 @@ rec { }; snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "snipmate-2016-06-08"; + name = "snipmate-2016-06-15"; src = fetchgit { url = "git://github.com/garbas/vim-snipmate"; - rev = "0c20e4136a298a73e21047d12cc5049595fb8445"; - sha256 = "1x9skkywr5shrvb9bm3mjww6kmjmck7y8g0mn9yq8psqag9j3l21"; + rev = "ee433e43c76c768c95ad6d9af67c4cd4b40f7eac"; + sha256 = "0rfis0rck0rk69nfzkrj6fm00hhdj75mvp809nw8vr14ldj2bvs7"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1423,11 +1434,11 @@ rec { }; table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "table-mode-2016-05-08"; + name = "table-mode-2016-07-11"; src = fetchgit { url = "git://github.com/dhruvasagar/vim-table-mode"; - rev = "b613e39bd08ecebdb9b18100dae518050f496048"; - sha256 = "1bachhk21x507q8xp4a6a8lpsqs2miv97lnjjf6q9qh0crxhv3z8"; + rev = "96236638a80fe73fa649824c9df25831a0042373"; + sha256 = "1c5xnm63hqw0jycwakdljs0f3mp26rjvd4llijrznpr9z2cvki8f"; }; dependencies = []; @@ -1455,11 +1466,11 @@ rec { }; tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "tlib-2016-04-06"; + name = "tlib-2016-06-28"; src = fetchgit { url = "git://github.com/tomtom/tlib_vim"; - rev = "34b13299b5da7ad66ea387027d458bd54127687c"; - sha256 = "0dwcwqxbfq7gy3iy5smx3zqp2v62p8166vj02bhrrr5zkv8rqnb3"; + rev = "5636472e5dba1a4104376ce6bd93cc2546e02483"; + sha256 = "0cjb7q5aa77ff8r503sn2j35x5w80fkgvmv42nrpxqhz0ldkn5vp"; }; dependencies = []; @@ -1488,11 +1499,11 @@ rec { }; vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-async-2013-10-18"; + name = "vim-addon-async-2016-06-15"; src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-async"; - rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c"; - sha256 = "0b95l4ig8as82swhavsdica93bv5j55kvldfl7frkfp5zwcwi90f"; + rev = "4fcdf0c8a0da8b9dc2d5ad25e2cf7692cfbc10f3"; + sha256 = "1qa8ivh93ln30jbdwm9xg50yinvysvhricrkfjgg4v5nvk5sxj5n"; }; dependencies = ["vim-addon-signs"]; @@ -1686,22 +1697,22 @@ rec { }; vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-2016-06-07"; + name = "vim-airline-2016-07-04"; src = fetchgit { url = "git://github.com/vim-airline/vim-airline"; - rev = "7b9b68f15dc50ef3c6382bd9df3a5e70c9ddcee9"; - sha256 = "0k6imrfgp62qminwd7ilsq106dy49nwn2fsm88v546mwc9a2bccd"; + rev = "4d0c4f6b1e3fee30873b0c9734fbe83f4d74b81c"; + sha256 = "15fdd6i8p7w0xcj5b3zl8nqn7bx9wqg6s7pq9xj32ya7rg49f5bn"; }; dependencies = []; }; vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-coffee-script-2015-04-20"; + name = "vim-coffee-script-2016-06-29"; src = fetchgit { url = "git://github.com/kchmck/vim-coffee-script"; - rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42"; - sha256 = "1x2kk9jm3948avvz3ywakmhdr3x99qfa54fk1pfphny3mrfv4l65"; + rev = "0f4bd9776cfd0fd2a394a4b1991630698e4fdc2d"; + sha256 = "18n1xbs59s71zvavjcg7an8y5dhq6agrb2rc2j6y48y7na0kf8sf"; }; dependencies = []; @@ -1730,11 +1741,11 @@ rec { }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2016-06-09"; + name = "vim-gitgutter-2016-06-27"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "09b9144002e938844df74f48ac72c1e3118e7d39"; - sha256 = "10yyzib9znhqz298h3f67n9hz1fvm5yk6958bisimf9bg9w9rn1v"; + rev = "b5f23e986747a6f4b1dc1196d2a5bd3dc7c8c2b6"; + sha256 = "0z3f4yamkv3fmqnrr00j86xwrrfv199fiabpjqnk583b5kcbn90j"; }; dependencies = []; @@ -1774,33 +1785,33 @@ rec { }; vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signature-2016-06-09"; + name = "vim-signature-2016-07-09"; src = fetchgit { url = "git://github.com/kshenoy/vim-signature"; - rev = "782ed5284ddf6ef3695f8b3314facd8c6113c725"; - sha256 = "1s6n6qdn3f89h4gi8nflz84y9l59rrfn43rgn257kxsq0df0kmx2"; + rev = "e2fca5f3b0474e7174e08b32c89634ac6f53bfe2"; + sha256 = "0ik68qzx0pqsvsla6y593cwab4iw3xy1sl8kb4kq89lhvv1wgxmg"; }; dependencies = []; }; vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signify-2016-06-08"; + name = "vim-signify-2016-06-19"; src = fetchgit { url = "git://github.com/mhinz/vim-signify"; - rev = "cb975a8c6fbf08385eba8d0bbc1168ae53be460a"; - sha256 = "00vi90zfkx94i0n0x4fjiz6bxfl2whxsclp8zxd4mivcqsw500jy"; + rev = "76bde232d163c99a8e72b517d8ef770b0d79849e"; + sha256 = "1yzq5ll7yx38872mpph976mn9yqyyypfif5vjhgvlk4l2an18qk6"; }; dependencies = []; }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2016-06-09"; + name = "vim-snippets-2016-07-06"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "e840b91a4e86cda657519eba00766a29a614e1e2"; - sha256 = "11pns71zpg9nh3mf2g24k194371jhkkv7b3in8r9av107ijky3sb"; + rev = "d285c86221e917d13c6cbf89f347627ea9fe1796"; + sha256 = "1dxzl2d9kxn7vhxpz0shd2qsn6mgvbj9gn9rym8j9v4wjn2zvqws"; }; dependencies = []; @@ -1840,11 +1851,11 @@ rec { }; vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vinegar-2016-01-30"; + name = "vinegar-2016-06-30"; src = fetchgit { url = "git://github.com/tpope/vim-vinegar"; - rev = "75fc3824bc09053f22735d6726c5cfd614c15642"; - sha256 = "19jl854wylmfdr9k4bfyffkz8bl4vpx1znnxzx0qj7cz2s3i9z0r"; + rev = "bd7f7b7929260072864462c04dde3b9f4c5e0d23"; + sha256 = "09shzlc9dagqlb5558nvm33b4bkk9cy34kp7zgnybphyy72wf31h"; }; dependencies = []; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 7069a8021f3..b2a2a542bf5 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -22,7 +22,6 @@ "github:Chiel92/vim-autoformat" "github:LnL7/vim-nix" "github:Shougo/deoplete.nvim" -"github:zchee/deoplete-jedi" "github:ajh17/Spacegray.vim" "github:alvan/vim-closetag" "github:ap/vim-css-color" @@ -38,6 +37,7 @@ "github:esneider/YUNOcommit.vim" "github:fatih/vim-go" "github:flazz/vim-colorschemes" +"github:floobits/floobits-neovim" "github:frigoeu/psc-ide-vim" "github:google/vim-jsonnet" "github:hecal3/vim-leader-guide" @@ -102,6 +102,7 @@ "github:vim-scripts/wombat256.vim" "github:wakatime/vim-wakatime" "github:wincent/command-t" +"github:zchee/deoplete-jedi" "goyo" "matchit.zip" "pathogen" diff --git a/pkgs/misc/vim-plugins/vim-utils.nix b/pkgs/misc/vim-plugins/vim-utils.nix index f39d7093c73..acb5b4fcbe1 100644 --- a/pkgs/misc/vim-plugins/vim-utils.nix +++ b/pkgs/misc/vim-plugins/vim-utils.nix @@ -330,7 +330,7 @@ rec { vimHelpTags = '' vimHelpTags(){ if [ -d "$1/doc" ]; then - ${vim}/bin/vim -N -u NONE -i NONE -n -e -s -c "helptags $1/doc" +quit! + ${vim}/bin/vim -N -u NONE -i NONE -n -E -s -c "helptags $1/doc" +quit! || echo "docs to build failed" fi } ''; From 36725623f9cd6f501c3c9277dd8dfd168bbad699 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 12 Jul 2016 00:55:48 +0300 Subject: [PATCH 102/508] liboauth: propagate inputs wanted by pkgconfig --- pkgs/development/libraries/liboauth/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/liboauth/default.nix b/pkgs/development/libraries/liboauth/default.nix index f62fb400199..855d921206e 100644 --- a/pkgs/development/libraries/liboauth/default.nix +++ b/pkgs/development/libraries/liboauth/default.nix @@ -9,7 +9,9 @@ stdenv.mkDerivation rec { sha256 = "07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd"; }; - buildInputs = [ pkgconfig nss nspr ]; + nativeBuildInputs = [ pkgconfig ]; + + propagatedBuildInputs = [ nss nspr ]; configureFlags = [ "--enable-nss" ]; From ec73d072aeb8b86a071efde74de422e9dd105455 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 12 Jul 2016 00:55:57 +0300 Subject: [PATCH 103/508] lgogdownloader: 2.26 -> 2.28 --- pkgs/games/lgogdownloader/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/games/lgogdownloader/default.nix b/pkgs/games/lgogdownloader/default.nix index 2f15f324581..5c7cad8aa95 100644 --- a/pkgs/games/lgogdownloader/default.nix +++ b/pkgs/games/lgogdownloader/default.nix @@ -1,19 +1,20 @@ -{ stdenv, fetchFromGitHub, curl, boost, jsoncpp, liboauth, rhash, tinyxml, htmlcxx, help2man }: +{ stdenv, fetchFromGitHub, cmake, pkgconfig, curl, boost, liboauth, jsoncpp +, htmlcxx, rhash, tinyxml, help2man }: stdenv.mkDerivation rec { name = "lgogdownloader-${version}"; - version = "2.26"; + version = "2.28"; src = fetchFromGitHub { owner = "Sude-"; repo = "lgogdownloader"; rev = "v${version}"; - sha256 = "0277g70nvq7bh42gnry7lz7wqhw8wl2hq6sfxwhn8x4ybkalj2gx"; + sha256 = "1xn6pfvxz496sj5jiqyzqj6vn6vrzyks9f6xha8g4vy6hkw717ag"; }; - buildInputs = [ curl boost jsoncpp liboauth rhash tinyxml htmlcxx help2man ]; + nativeBuildInputs = [ cmake pkgconfig help2man ]; - makeFlags = [ "release" "PREFIX=$(out)" ]; + buildInputs = [ curl boost liboauth jsoncpp htmlcxx rhash tinyxml ]; meta = { homepage = https://github.com/Sude-/lgogdownloader; From a0009e1ae5f68e19ee6dd3a61941d3c188fe2a62 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 11 Jul 2016 23:14:30 +0000 Subject: [PATCH 104/508] kotlin: 1.0.2 -> 1.0.3 --- pkgs/development/compilers/kotlin/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index 871d4d568cd..ba546f6f51f 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre, unzip }: stdenv.mkDerivation rec { - version = "1.0.2"; + version = "1.0.3"; name = "kotlin-${version}"; src = fetchurl { - url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip"; - sha256 = "1m3j1ca0kvryqarvpscrb9mvmsscd1sc8vfjsz03br6h2hwmnr3z"; + url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip"; + sha256 = "15ywjv46i2d7zgg2b3vdklc6agr62nvn0gkz7k9hql78ccfmyq9p"; }; propagatedBuildInputs = [ jre ] ; From f7ab48a401e93ce0b040710cf56ec30d3db25365 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 11 Jul 2016 23:15:51 +0000 Subject: [PATCH 105/508] feh: 2.15.4 -> 2.16.1 --- pkgs/applications/graphics/feh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 2d7b8874246..a20a1be77f8 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -2,11 +2,11 @@ , libXinerama, curl, libexif, perlPackages }: stdenv.mkDerivation rec { - name = "feh-2.15.4"; + name = "feh-2.16.1"; src = fetchurl { url = "http://feh.finalrewind.org/${name}.tar.bz2"; - sha256 = "b8a9c29f37b1349228b19866f712b677e2a150837bc46be8c5d6348dd4850758"; + sha256 = "1cxnc8dxyl7s4qnkvdjaqx7gdvc6brxpq0qbg91mljg47fd2hmbf"; }; outputs = [ "out" "doc" ]; From 9672c366519ac8381688764618f7a2f8c71f6f72 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 11 Jul 2016 23:12:32 +0000 Subject: [PATCH 106/508] conky: 1.10.1 -> 1.10.3 --- pkgs/os-specific/linux/conky/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix index 660c0bc0572..37ad34d8b64 100644 --- a/pkgs/os-specific/linux/conky/default.nix +++ b/pkgs/os-specific/linux/conky/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, pkgconfig, cmake # dependencies -, glib +, glib, libXinerama # optional features without extra dependencies , mpdSupport ? true @@ -62,13 +62,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "conky-${version}"; - version = "1.10.1"; + version = "1.10.3"; src = fetchFromGitHub { owner = "brndnmtthws"; repo = "conky"; rev = "v${version}"; - sha256 = "0k93nqx8mxz2z84zzwpwfp7v7dwxwg1di1a2yb137lk7l157azw6"; + sha256 = "0sa2jl159jk5p2hr37adwq84m0ynva7v87qrwj1xv0kw8l4qzhjs"; }; postPatch = '' @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lgcc_s"; - buildInputs = [ pkgconfig glib cmake ] + buildInputs = [ pkgconfig glib cmake libXinerama ] ++ optionals docsSupport [ docbook2x libxslt man less ] ++ optional ncursesSupport ncurses ++ optional x11Support xlibsWrapper From fc29868d24823e9a322a4ca112b2e35d0168f29b Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Tue, 12 Jul 2016 02:06:47 +0200 Subject: [PATCH 107/508] pythonPackages.Flootty: init at 3.2.0 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c4dacb957fb..d9e624b0489 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6100,6 +6100,22 @@ in modules // { propagatedBuildInputs = with self; [ rpkg offtrac urlgrabber fedora_cert ]; }); + Flootty = buildPythonPackage rec { + name = "Flootty-3.2.0"; + + src = pkgs.fetchurl { + url = "mirror://pypi/F/Flootty/${name}.tar.gz"; + sha256 = "14n2q2k388xbmp5rda5ss879bg5cbibk4zzz7c8mrjsmxhgagmmg"; + }; + + meta = with pkgs.stdenv.lib; { + description = "Floobits collaborative terminal"; + homepage = "https://github.com/Floobits/flootty/"; + maintainers = with maintainers; [ garbas ]; + license = licenses.asl20; + }; + }; + flowlogs_reader = buildPythonPackage rec { name = "flowlogs_reader-1.0.0"; From e54223e8bbfac1a661c5caa1c5b654edad4ca211 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Tue, 12 Jul 2016 13:27:41 +0800 Subject: [PATCH 108/508] siege: 4.0.1 -> 4.0.2 --- pkgs/tools/networking/siege/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/siege/default.nix b/pkgs/tools/networking/siege/default.nix index c4d68ee399a..c188dd477fe 100644 --- a/pkgs/tools/networking/siege/default.nix +++ b/pkgs/tools/networking/siege/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, openssl, zlib }: stdenv.mkDerivation rec { - name = "siege-4.0.1"; + name = "siege-4.0.2"; src = fetchurl { url = "http://download.joedog.org/siege/${name}.tar.gz"; - sha256 = "0dr8k64s7zlhy3w8n1br0h6xd06p09p9809l9rp13isf10jp5pgx"; + sha256 = "0ivc6ah9n2888qgh8dicszhr3mjs42538lfx7dlhxvvvakwq3yvy"; }; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; From 47da65923b92306fdcaacced6dd4aa2066e670e5 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 12 Jul 2016 07:54:58 +0000 Subject: [PATCH 109/508] kernel: 4.6.3 -> 4.6.4 (#16875) --- pkgs/os-specific/linux/kernel/linux-4.6.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.6.nix b/pkgs/os-specific/linux/kernel/linux-4.6.nix index d5ea9039891..c0849942f4f 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.6.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.6.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.6.3"; + version = "4.6.4"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0rq9cciabw5gfi2z30fcwh6z4zm2fgp938xmblfw59hyjj98h60k"; + sha256 = "0zpz29hgwdwkil6rakn08bdq77qjcz8q18qlkfc43s84f4fd8s45"; }; kernelPatches = args.kernelPatches; From 71ad2ed226dd4e686401903bf8e99749e2160426 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 12 Jul 2016 07:55:17 +0000 Subject: [PATCH 110/508] oh-my-zsh: 2016-06-18 -> 2016-07-05 (#16874) --- pkgs/shells/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index 5191e7cd45c..5a1c74fe442 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-06-18"; + version = "2016-07-05"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "d012402dada1ec7d8796f2f4b04744d817137b4d"; - sha256 = "1965k91jdhjpy2dkklzwcxmq6qqjc7cnwl8x670g51jr4ihawkx1"; + rev = "644bc641ad48c74c88631d79d48ec9b6f3f5a3e5"; + sha256 = "1lmblfcd68pnc38bn6yjqs7sap5qinj37xv881a1rx4q0w38an07"; }; phases = "installPhase"; From b5a95b181297da1f2bb720cc0f3338d16a8c4355 Mon Sep 17 00:00:00 2001 From: Alex Berg Date: Tue, 12 Jul 2016 00:57:26 -0700 Subject: [PATCH 111/508] Improve overrideDerivation docs. (#16867) * Improve overrideDerivation docs. Explain how antiquotation in a package's attribute behaves when overriding the package. * Edit antiquotation note. Fix closing-element. --- doc/functions.xml | 52 ++++++++++++++++++++++++++++++----------------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/doc/functions.xml b/doc/functions.xml index 73b178b061f..908e9571ed6 100644 --- a/doc/functions.xml +++ b/doc/functions.xml @@ -89,27 +89,27 @@ in ... <pkg>.overrideDerivation - Do not use this function in Nixpkgs. Because it breaks - package abstraction and doesn’t provide error checking for - function arguments, it is only intended for ad-hoc customisation - (such as in ~/.nixpkgs/config.nix). - - - - Additionally, overrideDerivation forces an evaluation - of the Derivation which can be quite a performance penalty if there are many - overrides used. + Do not use this function in Nixpkgs as it evaluates a Derivation + before modifying it, which breaks package abstraction and removes + error-checking of function arguments. In addition, this + evaluation-per-function application incurs a performance penalty, + which can become a problem if many overrides are used. + It is only intended for ad-hoc customisation, such as in + ~/.nixpkgs/config.nix. - The function overrideDerivation is usually available for all the - derivations in the nixpkgs expression (pkgs). + The function overrideDerivation creates a new derivation + based on an existing one by overriding the original's attributes with + the attribute set produced by the specified function. + This function is available on all + derivations defined using the makeOverridable function. + Most standard derivation-producing functions, such as + stdenv.mkDerivation, are defined using this + function, which means most packages in the nixpkgs expression, + pkgs, have this function. - - It is used to create a new derivation by overriding the attributes of - the original derivation according to the given function. - Example usage: @@ -125,9 +125,9 @@ in ... - In the above example, the name, src and patches of the derivation - will be overridden, while all other attributes will be retained from the - original derivation. + In the above example, the name, src, + and patches of the derivation will be overridden, while + all other attributes will be retained from the original derivation. @@ -135,6 +135,20 @@ in ... the original derivation. + + + A package's attributes are evaluated *before* being modified by + the overrideDerivation function. + For example, the name attribute reference + in url = "mirror://gnu/hello/${name}.tar.gz"; + is filled-in *before* the overrideDerivation function + modifies the attribute set. This means that overriding the + name attribute, in this example, *will not* change the + value of the url attribute. Instead, we need to override + both the name *and* url attributes. + + +
From bab3d4c3e0feb592c54fa9150d30b3b481008944 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Tue, 12 Jul 2016 11:15:51 +0200 Subject: [PATCH 112/508] i3lock: 2.7 -> 2.8 --- pkgs/applications/window-managers/i3/lock.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 56e0643811f..d9ea14828dd 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -2,11 +2,11 @@ pam, libX11, libev, cairo, libxkbcommon, libxkbfile }: stdenv.mkDerivation rec { - name = "i3lock-2.7"; + name = "i3lock-2.8"; src = fetchurl { url = "http://i3wm.org/i3lock/${name}.tar.bz2"; - sha256 = "1qlgafbyqjpqdfs50f2y0xphn2jdigafkqqsmpikk97cs0z1i0k8"; + sha256 = "028fc0f74df10826514d5a4ed38f6895935d1f5d47ca9fcffc64b076aaf6e2f4"; }; buildInputs = [ which pkgconfig libxcb xcbutilkeysyms xcbutilimage pam libX11 From 6c77af6f606543b82762d5e063738bfc96d8b5f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gammels=C3=A6ter?= Date: Tue, 12 Jul 2016 11:22:24 +0200 Subject: [PATCH 113/508] mypy-lang: Add missing lxml dependency --- pkgs/development/tools/mypy-lang/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/mypy-lang/default.nix b/pkgs/development/tools/mypy-lang/default.nix index d5a5095a262..d5baf994944 100644 --- a/pkgs/development/tools/mypy-lang/default.nix +++ b/pkgs/development/tools/mypy-lang/default.nix @@ -12,6 +12,8 @@ python35Packages.buildPythonApplication rec { sha256 = "12vwgzbpv0n403dvzas5ckw0f62slqk5j3024y65hi9n95r34rws"; }; + propagatedBuildInputs = with python35Packages; [ lxml ]; + meta = with stdenv.lib; { description = "Optional static typing for Python"; homepage = "http://www.mypy-lang.org"; From 103ae011732a3e9a0fe5db2668d9ff2dd7a17d49 Mon Sep 17 00:00:00 2001 From: Renzo Carbonara Date: Tue, 12 Jul 2016 08:37:11 -0300 Subject: [PATCH 114/508] zoom-us: init at 2.0.52458.0531 (#15607) --- .../instant-messengers/zoom-us/default.nix | 105 ++++++++++++++++++ pkgs/development/libraries/icu/54.1.nix | 12 ++ pkgs/top-level/all-packages.nix | 3 + 3 files changed, 120 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/zoom-us/default.nix create mode 100644 pkgs/development/libraries/icu/54.1.nix diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix new file mode 100644 index 00000000000..7f4a27cf9a2 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -0,0 +1,105 @@ +{ alsaLib +, fetchurl +, gcc +, glib +, gst_plugins_base +, gstreamer +, icu_54_1 +, libpulseaudio +, libuuid +, libxml2 +, libxslt +, makeQtWrapper +, qt55 +, sqlite +, stdenv +, xlibs +, xorg +, zlib +}: + +stdenv.mkDerivation rec { + name = "zoom-us"; + meta = { + homepage = http://zoom.us; + description = "zoom.us instant messenger"; + license = stdenv.lib.licenses.unfree; + platforms = stdenv.lib.platforms.linux; + }; + + version = "2.0.52458.0531"; + src = fetchurl { + url = "https://zoom.us/client/latest/zoom_${version}_x86_64.tar.xz"; + sha256 = "16d64pn9j27v3fnh4c9i32vpkr10q1yr26w14964n0af1mv5jf7a"; + }; + + phases = [ "unpackPhase" "installPhase" ]; + nativeBuildInputs = [ makeQtWrapper ]; + libPath = stdenv.lib.makeLibraryPath [ + alsaLib + gcc.cc + glib + gst_plugins_base + gstreamer + icu_54_1 + libpulseaudio + libuuid + libxml2 + libxslt + qt55.qtbase + qt55.qtdeclarative + qt55.qtscript + qt55.qtwebkit + sqlite + xlibs.xcbutilkeysyms + xorg.libX11 + xorg.libxcb + xorg.libXcomposite + xorg.libXext + xorg.libXfixes + xorg.libXrender + xorg.xcbutilimage + zlib + ]; + installPhase = '' + mkdir -p $out/share + cp -r \ + application-x-zoom.png \ + audio \ + imageformats \ + chrome.bmp \ + config-dump.sh \ + dingdong1.pcm \ + dingdong.pcm \ + doc \ + Droplet.pcm \ + Droplet.wav \ + platforminputcontexts \ + platforms \ + platformthemes \ + Qt \ + QtMultimedia \ + QtQml \ + QtQuick \ + QtQuick.2 \ + QtWebKit \ + QtWebProcess \ + ring.pcm \ + ring.wav \ + version.txt \ + xcbglintegrations \ + zcacert.pem \ + zoom \ + Zoom.png \ + ZXMPPROOT.cer \ + $out/share + + patchelf \ + --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ + --set-rpath ${libPath} \ + $out/share/zoom + wrapQtProgram "$out/share/zoom" + mkdir -p $out/bin + ln -s $out/share/zoom $out/bin/zoom-us + ''; + } diff --git a/pkgs/development/libraries/icu/54.1.nix b/pkgs/development/libraries/icu/54.1.nix new file mode 100644 index 00000000000..4d780341b3a --- /dev/null +++ b/pkgs/development/libraries/icu/54.1.nix @@ -0,0 +1,12 @@ +{ stdenv, fetchurl, fixDarwinDylibNames }: + +let + icu = import ./default.nix { inherit stdenv fetchurl fixDarwinDylibNames; }; +in + stdenv.lib.overrideDerivation icu (attrs: { + src = fetchurl { + url = "http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.tgz"; + md5 = "e844caed8f2ca24c088505b0d6271bc0"; + }; + }) + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 621aaca850c..2909258a72b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7561,6 +7561,7 @@ in hyena = callPackage ../development/libraries/hyena { }; icu = callPackage ../development/libraries/icu { }; + icu_54_1 = callPackage ../development/libraries/icu/54.1.nix { }; id3lib = callPackage ../development/libraries/id3lib { }; @@ -17344,4 +17345,6 @@ in maphosts = callPackage ../tools/networking/maphosts {}; zuki-themes = callPackage ../misc/themes/zuki { }; + + zoom-us = qt55.callPackage ../applications/networking/instant-messengers/zoom-us {}; } From 0fa00cce01c4924365a4e1d70e9bcec9ca2c0185 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 12 Jul 2016 13:38:01 +0200 Subject: [PATCH 115/508] awscli: 1.10.38 -> 1.10.46 --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d9e624b0489..08014b2de30 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1359,13 +1359,13 @@ in modules // { awscli = buildPythonPackage rec { name = "awscli-${version}"; - version = "1.10.38"; + version = "1.10.46"; namePrefix = ""; src = pkgs.fetchurl { url = "mirror://pypi/a/awscli/${name}.tar.gz"; - sha256 = "01d14snp3h4dkbwyviyprhcl8qcngc6nyzwy3k3nxvm1ia9hvz2n"; + sha256 = "1d2xjhdmjna9zxa4ybk7cjypib5yq2gd3w5fgpb4lfs6bh3mr554"; }; # No tests included @@ -2746,12 +2746,12 @@ in modules // { }; botocore = buildPythonPackage rec { - version = "1.4.28"; # This version is required by awscli + version = "1.4.36"; # This version is required by awscli name = "botocore-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/b/botocore/${name}.tar.gz"; - sha256 = "1qfvcb7japa3y1j4b86af9ph8q8mbq2mrx6xfhlqcf2x399l2phl"; + sha256 = "0mkydnbbn0x97nfzwqia68zw2y5j7i9yzpq5kasvc80n2z999h39"; }; propagatedBuildInputs = From 9d58f894cdd8cb606078b2b434662fb229cc4fd4 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 12 Jul 2016 06:48:33 -0500 Subject: [PATCH 116/508] lfe: init at 1.1.1 (#16865) This is a first pass at adding an LFE package. N.B. man pages are ignored for now. --- lib/maintainers.nix | 1 + pkgs/development/interpreters/lfe/default.nix | 62 +++++++++++++++++++ .../interpreters/lfe/setup-hook.sh | 5 ++ pkgs/top-level/all-packages.nix | 4 +- 4 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/interpreters/lfe/default.nix create mode 100644 pkgs/development/interpreters/lfe/setup-hook.sh diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 3e4229bf441..ae06c524bde 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -422,6 +422,7 @@ wscott = "Wayne Scott "; wyvie = "Elijah Rum "; yarr = "Dmitry V. "; + yurrriq = "Eric Bailey "; z77z = "Marco Maggesi "; zagy = "Christian Zagrodnick "; zef = "Zef Hemel "; diff --git a/pkgs/development/interpreters/lfe/default.nix b/pkgs/development/interpreters/lfe/default.nix new file mode 100644 index 00000000000..f3a54aef8ab --- /dev/null +++ b/pkgs/development/interpreters/lfe/default.nix @@ -0,0 +1,62 @@ +{ stdenv, fetchFromGitHub, erlang, makeWrapper, coreutils, bash }: + +stdenv.mkDerivation rec { + name = "lfe-${version}"; + version = "1.1.1"; + + src = fetchFromGitHub { + owner = "rvirding"; + repo = "lfe"; + rev = version; + sha256 = "0w1vpjqj8ni43gi84i0mcml4gfaqhmmd9s46di37cngpdw86i3bz"; + }; + + buildInputs = [ erlang makeWrapper ]; + + setupHook = ./setup-hook.sh; + + # These installPhase tricks are based on Elixir's Makefile. + # TODO: Make, upload, and apply a patch. + installPhase = '' + local libdir=$out/lib/lfe + local ebindir=$libdir/ebin + local bindir=$libdir/bin + + rm -Rf $ebindir + install -m755 -d $ebindir + install -m644 ebin/* $ebindir + + install -m755 -d $bindir + for bin in bin/lfe{,c,doc,script}; do install -m755 $bin $bindir; done + + install -m755 -d $out/bin + for file in $bindir/*; do ln -sf $file $out/bin/; done + ''; + + # Thanks again, Elixir. + postFixup = '' + # LFE binaries are shell scripts which run erl and lfe. + # Add some stuff to PATH so the scripts can run without problems. + for f in $out/bin/*; do + wrapProgram $f \ + --prefix PATH ":" "${erlang}/bin:${coreutils}/bin:${bash}/bin:$out/bin" + substituteInPlace $f --replace "/usr/bin/env" "${coreutils}/bin/env" + done + ''; + + meta = with stdenv.lib; { + description = "The best of Erlang and of Lisp; at the same time!"; + longDescription = '' + LFE, Lisp Flavoured Erlang, is a lisp syntax front-end to the Erlang + compiler. Code produced with it is compatible with "normal" Erlang + code. An LFE evaluator and shell is also included. + ''; + + homepage = "http://lfe.io"; + downloadPage = "https://github.com/rvirding/lfe/releases"; + + license = licenses.asl20; + maintainers = with maintainers; [ yurrriq ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/interpreters/lfe/setup-hook.sh b/pkgs/development/interpreters/lfe/setup-hook.sh new file mode 100644 index 00000000000..2405dcea15f --- /dev/null +++ b/pkgs/development/interpreters/lfe/setup-hook.sh @@ -0,0 +1,5 @@ +addLfeLibPath() { + addToSearchPath ERL_LIBS $1/lib/lfe/lib +} + +envHooks+=(addLfeLibPath) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2909258a72b..f2ea7a07ca6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2366,7 +2366,7 @@ in libqmi = callPackage ../development/libraries/libqmi { }; libqrencode = callPackage ../development/libraries/libqrencode { }; - + libmbim = callPackage ../development/libraries/libmbim { }; libmongo-client = callPackage ../development/libraries/libmongo-client { }; @@ -5651,6 +5651,8 @@ in elixir = callPackage ../development/interpreters/elixir { debugInfo = true; }; + lfe = callPackage ../development/interpreters/lfe { }; + groovy = callPackage ../development/interpreters/groovy { }; guile_1_8 = callPackage ../development/interpreters/guile/1.8.nix { }; From 2b47d24007c649414e59c884fe6d999a2b3990d1 Mon Sep 17 00:00:00 2001 From: Eric Litak Date: Tue, 12 Jul 2016 02:21:00 -0700 Subject: [PATCH 117/508] factorio: 0.12.35 -> 0.13.8 --- nixos/modules/services/games/factorio.nix | 4 ++-- pkgs/games/factorio/default.nix | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/games/factorio.nix b/nixos/modules/services/games/factorio.nix index 10f3daea69e..90834c5b260 100644 --- a/nixos/modules/services/games/factorio.nix +++ b/nixos/modules/services/games/factorio.nix @@ -78,7 +78,7 @@ in test -e ${stateDir}/saves/${cfg.saveName}.zip || \ ${pkgs.factorio-headless}/bin/factorio \ --config=${cfg.configFile} \ - --create=${cfg.saveName} + --create=${stateDir}/saves/${cfg.saveName}.zip ''; serviceConfig = { @@ -93,7 +93,7 @@ in "${pkgs.factorio-headless}/bin/factorio" "--config=${cfg.configFile}" "--port=${toString cfg.port}" - "--start-server=${cfg.saveName}" + "--start-server=${stateDir}/saves/${cfg.saveName}.zip" ]; }; }; diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix index 1447fed2a82..cb04e9c4750 100644 --- a/pkgs/games/factorio/default.nix +++ b/pkgs/games/factorio/default.nix @@ -8,7 +8,7 @@ assert releaseType == "alpha" || releaseType == "headless"; with stdenv.lib; let - version = "0.12.35"; + version = "0.13.8"; isHeadless = releaseType == "headless"; arch = if stdenv.system == "x86_64-linux" then { @@ -25,12 +25,12 @@ let url = "https://www.factorio.com/get-download/${version}/${releaseType}/${arch.inUrl}"; name = "factorio_${releaseType}_${arch.inTar}-${version}.tar.gz"; # TODO take this from 302 redirection somehow? fetchurl doesn't help. x64 = { - headless = fetchurl { inherit name url; sha256 = "1pdfd6qpzdzxsz1pvf1qasw5p6mzidi2q5d5m8x0gqyxaqdg175b"; }; - alpha = authenticatedFetch { inherit url; sha256 = "1r2q5hvx8248vfl7jg9jr0sk9kxhh5lg4qlv828j44dmgsxyhn1y"; }; + headless = fetchurl { inherit name url; sha256 = "0dliympqnnawfw65n5gnda9mljyqwshmq2hvplf1h8nrp1rw3pgj"; }; + alpha = authenticatedFetch { inherit url; sha256 = "12safa8b4g5cpwxbkf8ldkb17lgf33rslr7p81l7gr1lyzfnf82c"; }; }; i386 = { headless = abort "Factorio 32-bit headless binaries are not available for download."; - alpha = authenticatedFetch { inherit url; sha256 = "1f3hl6m59zvmjrph0kj7fh1axdahgan1v5v3y4rdc6idamvr7rrf"; }; + alpha = authenticatedFetch { inherit url; sha256 = "0m4m183avnqxkw28vb7za14dsmcd01sdldgga0br1clilxmgph2w"; }; }; }; From 416120e0c74351d61c1b0d508581a1ddbaeb7de9 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 12 Jul 2016 15:15:09 +0200 Subject: [PATCH 118/508] grsecurity: 4.6.3-201607070721 -> 4.6.4-201607112205 --- pkgs/os-specific/linux/kernel/linux-grsecurity.nix | 4 ++-- pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity.nix index d5ea9039891..c0849942f4f 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.6.3"; + version = "4.6.4"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0rq9cciabw5gfi2z30fcwh6z4zm2fgp938xmblfw59hyjj98h60k"; + sha256 = "0zpz29hgwdwkil6rakn08bdq77qjcz8q18qlkfc43s84f4fd8s45"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 103e2235532..a5de48298e1 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -93,9 +93,9 @@ rec { grsecurity_4_4 = throw "grsecurity stable is no longer supported"; grsecurity_testing = grsecPatch - { kver = "4.6.3"; - grrev = "201607070721"; - sha256 = "1858zc77x1qbwwfhjlmffd21w4adsw9f3sycg6bksw2jxrhlzww5"; + { kver = "4.6.4"; + grrev = "201607112205"; + sha256 = "16j01qqa7yi5yvli1lkl8ffybhy4697nyi18lbl5329zd09xq2ww"; }; # This patch relaxes grsec constraints on the location of usermode helpers, From d9724bcdbfc5e04297f0cab6e31f20a47a33fd11 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 12 Jul 2016 14:29:13 +0000 Subject: [PATCH 119/508] doc: add man page for nixos-version (#16869) --- nixos/doc/manual/man-nixos-version.xml | 102 ++++++++++++++++++ nixos/doc/manual/man-pages.xml | 1 + .../modules/installer/tools/nixos-version.sh | 3 + 3 files changed, 106 insertions(+) create mode 100644 nixos/doc/manual/man-nixos-version.xml diff --git a/nixos/doc/manual/man-nixos-version.xml b/nixos/doc/manual/man-nixos-version.xml new file mode 100644 index 00000000000..db7440977c9 --- /dev/null +++ b/nixos/doc/manual/man-nixos-version.xml @@ -0,0 +1,102 @@ + + + + nixos-version + 8 + NixOS + + + + nixos-version + show the version of nixpkgs NixOS was built from + + + + + nixos-version + + + + + +Description + +This command describes the version of nixpkgs used to build +NixOS. + +By default the output includes: + + + The NixOS release + Number of commits since the release + Git SHA of the released commit + Codename of the NixOS release + + + +Example + +Here is an example output, and corresponding information: +$ nixos-version +16.03.1011.6317da4 (Emu) + + + + + + + + Attribute + Value + + + + + NixOS Release + 16.03 + + + Commit Count + 1011 + + + Commit SHA + 6317da4 + + + Release Codename + Emu + + + + + + + + + + + +Options + +This command accepts the following options: + + + + + + + + The output will be the full hash of the git commit +$ nixos-version --hash +6317da40006f6bc2480c6781999c52d88dde2acf + + + + + + + + diff --git a/nixos/doc/manual/man-pages.xml b/nixos/doc/manual/man-pages.xml index 97a2c16d406..e945e0e6263 100644 --- a/nixos/doc/manual/man-pages.xml +++ b/nixos/doc/manual/man-pages.xml @@ -27,5 +27,6 @@ + diff --git a/nixos/modules/installer/tools/nixos-version.sh b/nixos/modules/installer/tools/nixos-version.sh index 51aa2dd8232..e4e4f5c446c 100644 --- a/nixos/modules/installer/tools/nixos-version.sh +++ b/nixos/modules/installer/tools/nixos-version.sh @@ -1,6 +1,9 @@ #! @shell@ case "$1" in + --help) + exec man nixos-version + exit 1 --hash|--revision) echo "@nixosRevision@" ;; From a347b944d986b05d6f0b67541904ef5f0a143661 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Tue, 12 Jul 2016 16:50:56 +0200 Subject: [PATCH 120/508] gnome-tweak-tools: fix missing gi module I changed from python3Packages to python2Packages because I couldn't make it work with python3Packages. This seems similar to: https://github.com/NixOS/nixpkgs/pull/16747#discussion_r69937281 --- .../3.20/misc/gnome-tweak-tool/default.nix | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix index 986d4058af9..e6c4b8c8202 100644 --- a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix @@ -1,9 +1,11 @@ -{ stdenv, intltool, fetchurl, python, pygobject3, atk +{ stdenv, intltool, fetchurl, atk , pkgconfig, gtk3, glib, libsoup -, bash, makeWrapper, itstool, libxml2, python3Packages -, gnome3, librsvg, gdk_pixbuf, file, libnotify }: +, bash, makeWrapper, itstool, libxml2, python2Packages +, gnome3, librsvg, gdk_pixbuf, file, libnotify, gobjectIntrospection, wrapGAppsHook }: -stdenv.mkDerivation rec { +let + python = python2Packages.python.withPackages ( ps: with ps; [ pygobject3 ] ); +in stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; doCheck = true; @@ -15,17 +17,15 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 gnome3.gsettings_desktop_schemas makeWrapper file gdk_pixbuf gnome3.defaultIconTheme librsvg - python pygobject3 libnotify gnome3.gnome_shell + libnotify gnome3.gnome_shell libsoup gnome3.gnome_settings_daemon gnome3.nautilus - gnome3.gnome_desktop ]; + gnome3.gnome_desktop wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/gnome-tweak-tool" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --suffix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix PYTHONPATH : "$PYTHONPATH:$(toPythonPath $out)" - ''; + propagatedBuildInputs = [ python gobjectIntrospection ]; + + PYTHONPATH = "$out/${python.python.sitePackages}"; + + wrapPrefixVariables = [ "PYTHONPATH" ]; patches = [ ./find_gsettings.patch From 02db7d98210d47664f444dafcb8cee7d9c9a6cfa Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 12 Jul 2016 16:40:36 +0200 Subject: [PATCH 121/508] Create AMIs with Enhanced Networking Fixes #15956. --- nixos/maintainers/scripts/ec2/create-amis.sh | 80 +++++++++++++------- 1 file changed, 52 insertions(+), 28 deletions(-) diff --git a/nixos/maintainers/scripts/ec2/create-amis.sh b/nixos/maintainers/scripts/ec2/create-amis.sh index 192f608e138..9246871222e 100755 --- a/nixos/maintainers/scripts/ec2/create-amis.sh +++ b/nixos/maintainers/scripts/ec2/create-amis.sh @@ -51,10 +51,11 @@ for type in hvm pv; do echo "doing $name in $region..." if [ -n "$prevAmi" ]; then - ami=$(ec2-copy-image \ + ami=$(aws ec2 copy-image \ --region "$region" \ - --source-region "$prevRegion" --source-ami-id "$prevAmi" \ - --name "$name" --description "$description" | cut -f 2) + --source-region "$prevRegion" --source-image-id "$prevAmi" \ + --name "$name" --description "$description" | json -q .ImageId) + if [ "$ami" = null ]; then break; fi else if [ $store = s3 ]; then @@ -85,12 +86,12 @@ for type in hvm pv; do ec2-upload-bundle \ -m $imageDir/$type.raw.manifest.xml \ -b "$bucket/$bucketDir" \ - -a "$EC2_ACCESS_KEY" -s "$EC2_SECRET_KEY" \ + -a "$AWS_ACCESS_KEY_ID" -s "$AWS_SECRET_ACCESS_KEY" \ --location EU touch $imageDir/uploaded fi - extraFlags="$bucket/$bucketDir/$type.raw.manifest.xml" + extraFlags="--image-location $bucket/$bucketDir/$type.raw.manifest.xml" else @@ -115,7 +116,8 @@ for type in hvm pv; do if [ -z "$snapId" -a -z "$volId" -a -z "$taskId" ]; then echo "importing $vhdFile..." taskId=$(ec2-import-volume $vhdFile --no-upload -f vhd \ - -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY" \ + -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \ + -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY" \ --region "$region" -z "${region}a" \ --bucket "$bucket" --prefix "$bucketDir/" \ | tee /dev/stderr \ @@ -125,15 +127,16 @@ for type in hvm pv; do if [ -z "$snapId" -a -z "$volId" ]; then ec2-resume-import $vhdFile -t "$taskId" --region "$region" \ - -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY" + -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \ + -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY" fi # Wait for the volume creation to finish. if [ -z "$snapId" -a -z "$volId" ]; then echo "waiting for import to finish..." while true; do - volId=$(ec2-describe-conversion-tasks "$taskId" --region "$region" | sed 's/.*VolumeId.*\(vol-[0-9a-f]\+\).*/\1/ ; t ; d') - if [ -n "$volId" ]; then break; fi + volId=$(aws ec2 describe-conversion-tasks --conversion-task-ids "$taskId" --region "$region" | jq -r .ConversionTasks[0].ImportVolume.Volume.Id) + if [ "$volId" != null ]; then break; fi sleep 10 done @@ -143,22 +146,24 @@ for type in hvm pv; do # Delete the import task. if [ -n "$volId" -a -n "$taskId" ]; then echo "removing import task..." - ec2-delete-disk-image -t "$taskId" --region "$region" -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY" || true + ec2-delete-disk-image -t "$taskId" --region "$region" \ + -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \ + -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY" || true rm -f $stateDir/$region.$type.task-id fi # Create a snapshot. if [ -z "$snapId" ]; then echo "creating snapshot..." - snapId=$(ec2-create-snapshot "$volId" --region "$region" | cut -f 2) + snapId=$(aws ec2 create-snapshot --volume-id "$volId" --region "$region" --description "$description" | jq -r .SnapshotId) + if [ "$snapId" = null ]; then exit 1; fi echo -n "$snapId" > $stateDir/$region.$type.snap-id - ec2-create-tags "$snapId" -t "Name=$description" --region "$region" fi # Wait for the snapshot to finish. echo "waiting for snapshot to finish..." while true; do - status=$(ec2-describe-snapshots "$snapId" --region "$region" | head -n1 | cut -f 4) + status=$(aws ec2 describe-snapshots --snapshot-ids "$snapId" --region "$region" | jq -r .Snapshots[0].State) if [ "$status" = completed ]; then break; fi sleep 10 done @@ -166,35 +171,50 @@ for type in hvm pv; do # Delete the volume. if [ -n "$volId" ]; then echo "deleting volume..." - ec2-delete-volume "$volId" --region "$region" || true + aws ec2 delete-volume --volume-id "$volId" --region "$region" || true rm -f $stateDir/$region.$type.vol-id fi - extraFlags="-b /dev/sda1=$snapId:$vhdFileLogicalGigaBytes:true:gp2" + blockDeviceMappings="DeviceName=/dev/sda1,Ebs={SnapshotId=$snapId,VolumeSize=$vhdFileLogicalGigaBytes,DeleteOnTermination=true,VolumeType=gp2}" + extraFlags="" if [ $type = pv ]; then - extraFlags+=" --root-device-name=/dev/sda1" + extraFlags+=" --root-device-name /dev/sda1" + else + extraFlags+=" --root-device-name /dev/sda1" + extraFlags+=" --sriov-net-support simple" + extraFlags+=" --ena-support" fi - extraFlags+=" -b /dev/sdb=ephemeral0 -b /dev/sdc=ephemeral1 -b /dev/sdd=ephemeral2 -b /dev/sde=ephemeral3" + blockDeviceMappings+=" DeviceName=/dev/sdb,VirtualName=ephemeral0" + blockDeviceMappings+=" DeviceName=/dev/sdc,VirtualName=ephemeral1" + blockDeviceMappings+=" DeviceName=/dev/sdd,VirtualName=ephemeral2" + blockDeviceMappings+=" DeviceName=/dev/sde,VirtualName=ephemeral3" + fi + + if [ $type = hvm ]; then + extraFlags+=" --sriov-net-support simple" + extraFlags+=" --ena-support" fi # Register the AMI. if [ $type = pv ]; then - kernel=$(ec2-describe-images -o amazon --filter "manifest-location=*pv-grub-hd0_1.04-$arch*" --region "$region" | cut -f 2) - [ -n "$kernel" ] + kernel=$(aws ec2 describe-images --owner amazon --filters "Name=name,Values=pv-grub-hd0_1.04-$arch.gz" | jq -r .Images[0].ImageId) + if [ "$kernel" = null ]; then break; fi echo "using PV-GRUB kernel $kernel" extraFlags+=" --virtualization-type paravirtual --kernel $kernel" else extraFlags+=" --virtualization-type hvm" fi - ami=$(ec2-register \ - -n "$name" \ - -d "$description" \ + ami=$(aws ec2 register-image \ + --name "$name" \ + --description "$description" \ --region "$region" \ --architecture "$arch" \ - $extraFlags | cut -f 2) + --block-device-mappings $blockDeviceMappings \ + $extraFlags | jq -r .ImageId) + if [ "$ami" = null ]; then break; fi fi echo -n "$ami" > $amiFile @@ -204,19 +224,23 @@ for type in hvm pv; do ami=$(cat $amiFile) fi + echo "region = $region, type = $type, store = $store, ami = $ami" + if [ -z "$NO_WAIT" -o -z "$prevAmi" ]; then - echo "waiting for AMI..." + echo -n "waiting for AMI..." while true; do - status=$(ec2-describe-images "$ami" --region "$region" | head -n1 | cut -f 5) + status=$(aws ec2 describe-images --image-ids "$ami" --region "$region" | jq -r .Images[0].State) if [ "$status" = available ]; then break; fi sleep 10 + echo -n '.' done + echo - ec2-modify-image-attribute \ - --region "$region" "$ami" -l -a all + # Make the image public. + aws ec2 modify-image-attribute \ + --image-id "$ami" --region "$region" --launch-permission 'Add={Group=all}' fi - echo "region = $region, type = $type, store = $store, ami = $ami" if [ -z "$prevAmi" ]; then prevAmi="$ami" prevRegion="$region" From 1e9b8bfb310c50ed9a3f10239dff5313d3886021 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 12 Jul 2016 16:57:52 +0200 Subject: [PATCH 122/508] Copy AMIs in parallel --- nixos/maintainers/scripts/ec2/create-amis.sh | 57 +++++++++++++------- 1 file changed, 39 insertions(+), 18 deletions(-) diff --git a/nixos/maintainers/scripts/ec2/create-amis.sh b/nixos/maintainers/scripts/ec2/create-amis.sh index 9246871222e..8c6dbce049b 100755 --- a/nixos/maintainers/scripts/ec2/create-amis.sh +++ b/nixos/maintainers/scripts/ec2/create-amis.sh @@ -13,8 +13,11 @@ echo "NixOS version is $version ($major)" rm -f ec2-amis.nix +types="hvm pv" +stores="ebs s3" +regions="eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 sa-east-1" -for type in hvm pv; do +for type in $types; do link=$stateDir/$type imageFile=$link/nixos.qcow2 system=x86_64-linux @@ -31,7 +34,7 @@ for type in hvm pv; do --arg configuration "{ imports = [ ]; ec2.hvm = $hvmFlag; }" fi - for store in ebs s3; do + for store in $stores; do bucket=nixos-amis bucketDir="$version-$type-$store" @@ -39,7 +42,7 @@ for type in hvm pv; do prevAmi= prevRegion= - for region in eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 sa-east-1; do + for region in $regions; do name=nixos-$version-$arch-$type-$store description="NixOS $system $version ($type-$store)" @@ -226,25 +229,43 @@ for type in hvm pv; do echo "region = $region, type = $type, store = $store, ami = $ami" - if [ -z "$NO_WAIT" -o -z "$prevAmi" ]; then - echo -n "waiting for AMI..." - while true; do - status=$(aws ec2 describe-images --image-ids "$ami" --region "$region" | jq -r .Images[0].State) - if [ "$status" = available ]; then break; fi - sleep 10 - echo -n '.' - done - echo - - # Make the image public. - aws ec2 modify-image-attribute \ - --image-id "$ami" --region "$region" --launch-permission 'Add={Group=all}' - fi - if [ -z "$prevAmi" ]; then prevAmi="$ami" prevRegion="$region" fi + done + + done + +done + +for type in $types; do + link=$stateDir/$type + system=x86_64-linux + arch=x86_64 + + for store in $stores; do + + for region in $regions; do + + name=nixos-$version-$arch-$type-$store + amiFile=$stateDir/$region.$type.$store.ami-id + ami=$(cat $amiFile) + + echo "region = $region, type = $type, store = $store, ami = $ami" + + echo -n "waiting for AMI..." + while true; do + status=$(aws ec2 describe-images --image-ids "$ami" --region "$region" | jq -r .Images[0].State) + if [ "$status" = available ]; then break; fi + sleep 10 + echo -n '.' + done + echo + + # Make the image public. + aws ec2 modify-image-attribute \ + --image-id "$ami" --region "$region" --launch-permission 'Add={Group=all}' echo " \"$major\".$region.$type-$store = \"$ami\";" >> ec2-amis.nix done From 94cc18e9aaacf705afc61e8f9836fa8f7a1cdf51 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 12 Jul 2016 17:09:49 +0200 Subject: [PATCH 123/508] Add AMIs in ap-northeast-2 and ap-south-1 --- nixos/maintainers/scripts/ec2/create-amis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/maintainers/scripts/ec2/create-amis.sh b/nixos/maintainers/scripts/ec2/create-amis.sh index 8c6dbce049b..e26caa19164 100755 --- a/nixos/maintainers/scripts/ec2/create-amis.sh +++ b/nixos/maintainers/scripts/ec2/create-amis.sh @@ -15,7 +15,7 @@ rm -f ec2-amis.nix types="hvm pv" stores="ebs s3" -regions="eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 sa-east-1" +regions="eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 ap-northeast-2 sa-east-1 ap-south-1" for type in $types; do link=$stateDir/$type From 9aa3e78ab206556754186cc2b88aea5009af0f7c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 12 Jul 2016 17:24:15 +0200 Subject: [PATCH 124/508] Update 16.03 AMIs --- nixos/modules/virtualisation/ec2-amis.nix | 80 +++++++++++++---------- 1 file changed, 44 insertions(+), 36 deletions(-) diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix index 5257aaf6202..bdf6ed4dcd2 100644 --- a/nixos/modules/virtualisation/ec2-amis.nix +++ b/nixos/modules/virtualisation/ec2-amis.nix @@ -90,40 +90,48 @@ "15.09".us-west-2.pv-ebs = "ami-005fb160"; "15.09".us-west-2.pv-s3 = "ami-cd55bbad"; - "16.03".ap-northeast-1.hvm-ebs = "ami-b6edf5d8"; - "16.03".ap-northeast-1.hvm-s3 = "ami-b1e3fbdf"; - "16.03".ap-northeast-1.pv-ebs = "ami-6190880f"; - "16.03".ap-northeast-1.pv-s3 = "ami-908d95fe"; - "16.03".ap-southeast-1.hvm-ebs = "ami-35b16656"; - "16.03".ap-southeast-1.hvm-s3 = "ami-41be6922"; - "16.03".ap-southeast-1.pv-ebs = "ami-4cb96e2f"; - "16.03".ap-southeast-1.pv-s3 = "ami-3bb96e58"; - "16.03".ap-southeast-2.hvm-ebs = "ami-debc91bd"; - "16.03".ap-southeast-2.hvm-s3 = "ami-55bc9136"; - "16.03".ap-southeast-2.pv-ebs = "ami-b38ba6d0"; - "16.03".ap-southeast-2.pv-s3 = "ami-9e8ba6fd"; - "16.03".eu-central-1.hvm-ebs = "ami-7c967413"; - "16.03".eu-central-1.hvm-s3 = "ami-b29072dd"; - "16.03".eu-central-1.pv-ebs = "ami-7a947615"; - "16.03".eu-central-1.pv-s3 = "ami-729b791d"; - "16.03".eu-west-1.hvm-ebs = "ami-ff27a98c"; - "16.03".eu-west-1.hvm-s3 = "ami-6c21af1f"; - "16.03".eu-west-1.pv-ebs = "ami-a33cb2d0"; - "16.03".eu-west-1.pv-s3 = "ami-ec38b69f"; - "16.03".sa-east-1.hvm-ebs = "ami-5bef6637"; - "16.03".sa-east-1.hvm-s3 = "ami-55f87139"; - "16.03".sa-east-1.pv-ebs = "ami-76e56c1a"; - "16.03".sa-east-1.pv-s3 = "ami-e1f8718d"; - "16.03".us-east-1.hvm-ebs = "ami-4bfd1926"; - "16.03".us-east-1.hvm-s3 = "ami-60c5210d"; - "16.03".us-east-1.pv-ebs = "ami-c0c92dad"; - "16.03".us-east-1.pv-s3 = "ami-f9d63294"; - "16.03".us-west-1.hvm-ebs = "ami-13aad473"; - "16.03".us-west-1.hvm-s3 = "ami-e1a8d681"; - "16.03".us-west-1.pv-ebs = "ami-c0a6d8a0"; - "16.03".us-west-1.pv-s3 = "ami-6aa9d70a"; - "16.03".us-west-2.hvm-ebs = "ami-265dad46"; - "16.03".us-west-2.hvm-s3 = "ami-cd40b0ad"; - "16.03".us-west-2.pv-ebs = "ami-7b4aba1b"; - "16.03".us-west-2.pv-s3 = "ami-0849b968"; + "16.03".ap-northeast-1.hvm-ebs = "ami-40619d21"; + "16.03".ap-northeast-1.hvm-s3 = "ami-ce629eaf"; + "16.03".ap-northeast-1.pv-ebs = "ami-ef639f8e"; + "16.03".ap-northeast-1.pv-s3 = "ami-a1609cc0"; + "16.03".ap-northeast-2.hvm-ebs = "ami-deca00b0"; + "16.03".ap-northeast-2.hvm-s3 = "ami-a3b77dcd"; + "16.03".ap-northeast-2.pv-ebs = "ami-7bcb0115"; + "16.03".ap-northeast-2.pv-s3 = "ami-a2b77dcc"; + "16.03".ap-south-1.hvm-ebs = "ami-0dff9562"; + "16.03".ap-south-1.hvm-s3 = "ami-13f69c7c"; + "16.03".ap-south-1.pv-ebs = "ami-0ef39961"; + "16.03".ap-south-1.pv-s3 = "ami-e0c8a28f"; + "16.03".ap-southeast-1.hvm-ebs = "ami-5e964a3d"; + "16.03".ap-southeast-1.hvm-s3 = "ami-4d964a2e"; + "16.03".ap-southeast-1.pv-ebs = "ami-ec9b478f"; + "16.03".ap-southeast-1.pv-s3 = "ami-999b47fa"; + "16.03".ap-southeast-2.hvm-ebs = "ami-9f7359fc"; + "16.03".ap-southeast-2.hvm-s3 = "ami-987359fb"; + "16.03".ap-southeast-2.pv-ebs = "ami-a2705ac1"; + "16.03".ap-southeast-2.pv-s3 = "ami-a3705ac0"; + "16.03".eu-central-1.hvm-ebs = "ami-17a45178"; + "16.03".eu-central-1.hvm-s3 = "ami-f9a55096"; + "16.03".eu-central-1.pv-ebs = "ami-c8a550a7"; + "16.03".eu-central-1.pv-s3 = "ami-6ea45101"; + "16.03".eu-west-1.hvm-ebs = "ami-b5b3d5c6"; + "16.03".eu-west-1.hvm-s3 = "ami-c986e0ba"; + "16.03".eu-west-1.pv-ebs = "ami-b083e5c3"; + "16.03".eu-west-1.pv-s3 = "ami-3c83e54f"; + "16.03".sa-east-1.hvm-ebs = "ami-f6eb7f9a"; + "16.03".sa-east-1.hvm-s3 = "ami-93e773ff"; + "16.03".sa-east-1.pv-ebs = "ami-cbb82ca7"; + "16.03".sa-east-1.pv-s3 = "ami-abb82cc7"; + "16.03".us-east-1.hvm-ebs = "ami-c123a3d6"; + "16.03".us-east-1.hvm-s3 = "ami-bc25a5ab"; + "16.03".us-east-1.pv-ebs = "ami-bd25a5aa"; + "16.03".us-east-1.pv-s3 = "ami-a325a5b4"; + "16.03".us-west-1.hvm-ebs = "ami-748bcd14"; + "16.03".us-west-1.hvm-s3 = "ami-a68dcbc6"; + "16.03".us-west-1.pv-ebs = "ami-048acc64"; + "16.03".us-west-1.pv-s3 = "ami-208dcb40"; + "16.03".us-west-2.hvm-ebs = "ami-8263a0e2"; + "16.03".us-west-2.hvm-s3 = "ami-925c9ff2"; + "16.03".us-west-2.pv-ebs = "ami-5e61a23e"; + "16.03".us-west-2.pv-s3 = "ami-734c8f13"; } From fd0373c589ad1b9fde13b858a1b3e9a70b8c30df Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 10 Jul 2016 11:33:21 +0200 Subject: [PATCH 125/508] kde plasma: 5.6.5 -> 5.7.0 --- maintainers/scripts/generate-kde-plasma.sh | 2 +- .../ark/0001-fix-start-from-plasma.patch | 10 + .../{ark.nix => ark/default.nix} | 3 + .../kde-5/applications-16.04/default.nix | 2 +- pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix | 18 - pkgs/desktops/kde-5/plasma-5.6/srcs.nix | 333 ------------------ .../{plasma-5.6 => plasma-5.7}/bluedevil.nix | 0 .../{plasma-5.6 => plasma-5.7}/breeze-gtk.nix | 0 .../{plasma-5.6 => plasma-5.7}/breeze-qt4.nix | 0 .../{plasma-5.6 => plasma-5.7}/breeze-qt5.nix | 0 .../{plasma-5.6 => plasma-5.7}/default.nix | 2 +- .../kactivitymanagerd.nix | 0 .../kde-cli-tools.nix | 0 .../kde-gtk-config/0001-follow-symlinks.patch | 0 .../kde-gtk-config/default.nix | 0 .../kdecoration.nix | 0 .../kdeplasma-addons.nix | 0 .../{plasma-5.6 => plasma-5.7}/kgamma5.nix | 0 .../{plasma-5.6 => plasma-5.7}/khotkeys.nix | 0 .../kinfocenter.nix | 0 .../{plasma-5.6 => plasma-5.7}/kmenuedit.nix | 0 .../{plasma-5.6 => plasma-5.7}/kscreen.nix | 0 .../kscreenlocker.nix | 0 .../ksshaskpass.nix | 0 .../{plasma-5.6 => plasma-5.7}/ksysguard.nix | 0 .../kwayland-integration.nix} | 8 +- .../0001-qdiriterator-follow-symlinks.patch | 4 +- .../kwin/default.nix | 0 .../{plasma-5.6 => plasma-5.7}/kwrited.nix | 0 .../{plasma-5.6 => plasma-5.7}/libkscreen.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../libksysguard/default.nix | 0 .../{plasma-5.6 => plasma-5.7}/milou.nix | 0 .../{plasma-5.6 => plasma-5.7}/oxygen.nix | 0 .../0001-qt-5.5-QML-import-paths.patch | 0 .../plasma-desktop/0002-hwclock.patch | 0 .../plasma-desktop/0003-tzdir.patch | 0 .../plasma-desktop/default.nix | 10 +- .../plasma-integration.nix | 4 +- .../plasma-mediacenter.nix | 0 ...-mobile-broadband-provider-info-path.patch | 0 .../plasma-nm/default.nix | 0 .../{plasma-5.6 => plasma-5.7}/plasma-pa.nix | 0 .../plasma-workspace-wallpapers.nix | 0 .../plasma-workspace/default.nix | 0 .../plasma-workspace/qml-import-path.patch | 13 - .../plasma-workspace/series | 0 .../polkit-kde-agent.nix | 0 pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix | 18 + pkgs/desktops/kde-5/plasma-5.7/srcs.nix | 325 +++++++++++++++++ .../startkde/default.nix | 0 .../startkde/startkde.sh | 0 .../systemsettings.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 54 files changed, 374 insertions(+), 380 deletions(-) create mode 100644 pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch rename pkgs/desktops/kde-5/applications-16.04/{ark.nix => ark/default.nix} (92%) delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/bluedevil.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/breeze-gtk.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/breeze-qt4.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/breeze-qt5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/default.nix (98%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kactivitymanagerd.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kde-cli-tools.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kde-gtk-config/0001-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kde-gtk-config/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kdecoration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kdeplasma-addons.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kgamma5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/khotkeys.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kinfocenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kmenuedit.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kscreenlocker.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/ksshaskpass.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/ksysguard.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6/kwayland.nix => plasma-5.7/kwayland-integration.nix} (57%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kwin/0001-qdiriterator-follow-symlinks.patch (89%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kwin/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/kwrited.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/libkscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/libksysguard/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/libksysguard/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/milou.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/oxygen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/0001-qt-5.5-QML-import-paths.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/0002-hwclock.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/0003-tzdir.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-desktop/default.nix (85%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-integration.nix (67%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-mediacenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-nm/0001-mobile-broadband-provider-info-path.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-nm/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-pa.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace-wallpapers.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace/qml-import-path.patch (88%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/plasma-workspace/series (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/polkit-kde-agent.nix (100%) create mode 100644 pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.7/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/startkde/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/startkde/startkde.sh (100%) rename pkgs/desktops/kde-5/{plasma-5.6 => plasma-5.7}/systemsettings.nix (100%) diff --git a/maintainers/scripts/generate-kde-plasma.sh b/maintainers/scripts/generate-kde-plasma.sh index fa804758f09..ad916f3a25b 100755 --- a/maintainers/scripts/generate-kde-plasma.sh +++ b/maintainers/scripts/generate-kde-plasma.sh @@ -1,3 +1,3 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/plasma/5.6.5/ -A '*.tar.xz' +./fetch-kde-qt.sh http://download.kde.org/stable/plasma/5.7.0/ -A '*.tar.xz' diff --git a/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch b/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch new file mode 100644 index 00000000000..7590e49c498 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch @@ -0,0 +1,10 @@ +--- a/app/org.kde.ark.desktop.cmake ++++ b/app/org.kde.ark.desktop.cmake +@@ -154,7 +154,6 @@ + Terminal=false + X-DBUS-StartupType=Multi + X-DBUS-ServiceName=org.kde.ark +-X-KDE-HasTempFileOption=true + Categories=Qt;KDE;Utility;Archiving;Compression;X-KDE-Utilities-File; + InitialPreference=3 + Comment=Work with file archives diff --git a/pkgs/desktops/kde-5/applications-16.04/ark.nix b/pkgs/desktops/kde-5/applications-16.04/ark/default.nix similarity index 92% rename from pkgs/desktops/kde-5/applications-16.04/ark.nix rename to pkgs/desktops/kde-5/applications-16.04/ark/default.nix index 331c8c647ca..4e68488b323 100644 --- a/pkgs/desktops/kde-5/applications-16.04/ark.nix +++ b/pkgs/desktops/kde-5/applications-16.04/ark/default.nix @@ -35,6 +35,9 @@ kdeApp { khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice kpty kwidgetsaddons libarchive ]; + patches = [ + ./0001-fix-start-from-plasma.patch + ]; postInstall = '' wrapQtProgram "$out/bin/ark" \ --prefix PATH : "${PATH}" diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications-16.04/default.nix index d66285deb8b..0db0c72a6f1 100644 --- a/pkgs/desktops/kde-5/applications-16.04/default.nix +++ b/pkgs/desktops/kde-5/applications-16.04/default.nix @@ -31,7 +31,7 @@ let kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; - ark = callPackage ./ark.nix {}; + ark = callPackage ./ark/default.nix {}; baloo-widgets = callPackage ./baloo-widgets.nix {}; dolphin = callPackage ./dolphin.nix {}; dolphin-plugins = callPackage ./dolphin-plugins.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix deleted file mode 100644 index 8f3b354b947..00000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix +++ /dev/null @@ -1,18 +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 - ]; - propagatedBuildInputs = [ - kconfig kdbusaddons knotifyconfig solid udev kactivities kauth - kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen - plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix b/pkgs/desktops/kde-5/plasma-5.6/srcs.nix deleted file mode 100644 index 8307730a550..00000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix +++ /dev/null @@ -1,333 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - bluedevil = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/bluedevil-5.6.5.tar.xz"; - sha256 = "0zf9m02m039g2cpzaij56mnnffcq9bqa40xyq30r9sx5ji1wbnhx"; - name = "bluedevil-5.6.5.tar.xz"; - }; - }; - breeze = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-5.6.5.tar.xz"; - sha256 = "0wzzixhpij8zb0jq6lsl7h3q22hfzpfz98pddlhnkf27dgmbd7zd"; - name = "breeze-5.6.5.tar.xz"; - }; - }; - breeze-grub = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-grub-5.6.5.tar.xz"; - sha256 = "1khr8bqid58jq150snpszg3w1rnjh35y5fi20gwwa60hka556978"; - name = "breeze-grub-5.6.5.tar.xz"; - }; - }; - breeze-gtk = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-gtk-5.6.5.tar.xz"; - sha256 = "0k4510jw89i1spb6gckf190mrspasxnwfwqddaxxrjdan4qklcbv"; - name = "breeze-gtk-5.6.5.tar.xz"; - }; - }; - breeze-plymouth = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/breeze-plymouth-5.6.5.tar.xz"; - sha256 = "05ajv326ylbja9483k0ka6flqpk341knfaxgq056dfqlmiaq2cjp"; - name = "breeze-plymouth-5.6.5.tar.xz"; - }; - }; - discover = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/discover-5.6.5.tar.xz"; - sha256 = "1k5jlq329k5scljdadj8yny5wxhz14c7jxx5wagazb28fq6yf3vj"; - name = "discover-5.6.5.tar.xz"; - }; - }; - kactivitymanagerd = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kactivitymanagerd-5.6.5.tar.xz"; - sha256 = "1l0iyh6palbbw59xv6mhjv4y6c3v2xlqqk95rhhfcbpaq0kv0abh"; - name = "kactivitymanagerd-5.6.5.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kde-cli-tools-5.6.5.tar.xz"; - sha256 = "0fmlckjpc202n4ahc69mqjn6iv3xd0z9macvacx5fi2spc1i60kk"; - name = "kde-cli-tools-5.6.5.tar.xz"; - }; - }; - kdecoration = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kdecoration-5.6.5.tar.xz"; - sha256 = "084a2ip5x15f9sdlh7icnbvbsczkc7h71qd4zzr7z9lmqk1b3sp1"; - name = "kdecoration-5.6.5.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kde-gtk-config-5.6.5.tar.xz"; - sha256 = "06nk5z1aqiwyd3vhpnmfjjpmsq6r32gx6dgij2la3c2y552d3hlx"; - name = "kde-gtk-config-5.6.5.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kdeplasma-addons-5.6.5.tar.xz"; - sha256 = "19ijpvra2f5dbcjdl0g2lq0rivh6cvmgpryvsyhjyk740ys915kz"; - name = "kdeplasma-addons-5.6.5.tar.xz"; - }; - }; - kgamma5 = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kgamma5-5.6.5.tar.xz"; - sha256 = "0qic1alkdzl6gxacm3i3m8xb5dxpd1hbixd8ixr1cabbviash1nw"; - name = "kgamma5-5.6.5.tar.xz"; - }; - }; - khotkeys = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/khotkeys-5.6.5.tar.xz"; - sha256 = "1zsdpdibv2pnm6vgj28d09cpss8nizmacrnxxlilvizhmiyvrpla"; - name = "khotkeys-5.6.5.tar.xz"; - }; - }; - kinfocenter = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kinfocenter-5.6.5.tar.xz"; - sha256 = "1ci9avkbix6366gvfc3vpwp3r5hwabk1vl29ajl40agrs7kgs9cl"; - name = "kinfocenter-5.6.5.tar.xz"; - }; - }; - kmenuedit = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kmenuedit-5.6.5.tar.xz"; - sha256 = "1fxnmb07shbpnhwk7aw5lspaih79ldkkx69bwgrv99c2h7gbsbhg"; - name = "kmenuedit-5.6.5.tar.xz"; - }; - }; - kscreen = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kscreen-5.6.5.tar.xz"; - sha256 = "16cnf0kmvp67jid3y4w2b2dxzidx8k8zld280svp249wwjyh3wzr"; - name = "kscreen-5.6.5.tar.xz"; - }; - }; - kscreenlocker = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kscreenlocker-5.6.5.tar.xz"; - sha256 = "01hbjvkkhjb63ij3xqyg49s3w8ig68pqrback7r5iv1hsbybxw66"; - name = "kscreenlocker-5.6.5.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/ksshaskpass-5.6.5.tar.xz"; - sha256 = "1qaja7alyx9czczkg2cpbc24jdvmsp8f9djsavgb650k6mv5h4va"; - name = "ksshaskpass-5.6.5.tar.xz"; - }; - }; - ksysguard = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/ksysguard-5.6.5.tar.xz"; - sha256 = "0ji4q8js5g57vrirbq6nah9gwp6bzcn986pjig1l0q5sm7al95jq"; - name = "ksysguard-5.6.5.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwallet-pam-5.6.5.tar.xz"; - sha256 = "0ad2q9kwnaabv6klazg17ilsiy0ckkkcay3q2d51crn1d8kbv3gm"; - name = "kwallet-pam-5.6.5.tar.xz"; - }; - }; - kwayland = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwayland-5.6.5.tar.xz"; - sha256 = "1niac5g7jdyl0b840njppnw8lbl08a6g4npyxhplvr6mv744h6b9"; - name = "kwayland-5.6.5.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwayland-integration-5.6.5.tar.xz"; - sha256 = "1sf6d9062q191q5b4bngk9abnfx3ys8fmkgc04xp8pl5zq5f2m7h"; - name = "kwayland-integration-5.6.5.tar.xz"; - }; - }; - kwin = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwin-5.6.5.tar.xz"; - sha256 = "113q9m373wmi2dmi2v6im74gd6ava7xrwapkcxq0phyr53w5ihz4"; - name = "kwin-5.6.5.tar.xz"; - }; - }; - kwrited = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/kwrited-5.6.5.tar.xz"; - sha256 = "19ra2pbr34ap309vxbssrkkykf2vki0829a6bqhgc482yw582k1r"; - name = "kwrited-5.6.5.tar.xz"; - }; - }; - libkscreen = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/libkscreen-5.6.5.tar.xz"; - sha256 = "1651cj5mkpx7x43na4n9qvvm8r9zadfm3fmpvrv92idf7f3jg4hr"; - name = "libkscreen-5.6.5.tar.xz"; - }; - }; - libksysguard = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/libksysguard-5.6.5.tar.xz"; - sha256 = "048hfxsjddqmw31w2cdzw72xwxrrnx0v6zzxq9514b5j7ak4f9jc"; - name = "libksysguard-5.6.5.tar.xz"; - }; - }; - milou = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/milou-5.6.5.tar.xz"; - sha256 = "066k7dpjs5nrimqxfxk1krc8w771nkqjb9dinqqqrl3njn7rwvxf"; - name = "milou-5.6.5.tar.xz"; - }; - }; - oxygen = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/oxygen-5.6.5.tar.xz"; - sha256 = "12qz947xy6xr8hzm46dy6m5hp8chmzc8ayczyy84xw5239piqa1c"; - name = "oxygen-5.6.5.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-desktop-5.6.5.tar.xz"; - sha256 = "1lxvnymiivkrch7z64i5vkck5723jvv5la9hrqdlzjl8qjp2gfk6"; - name = "plasma-desktop-5.6.5.tar.xz"; - }; - }; - plasma-integration = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-integration-5.6.5.tar.xz"; - sha256 = "1s473jg7xjw4jma7nn770q3cxj01d7bm2kf45fra5lbj6ipp3s20"; - name = "plasma-integration-5.6.5.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-mediacenter-5.6.5.tar.xz"; - sha256 = "056wzqqhvkc6d53040g0pn22arjz9pcxdgqr8x0bqps5cq7gf846"; - name = "plasma-mediacenter-5.6.5.tar.xz"; - }; - }; - plasma-nm = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-nm-5.6.5.tar.xz"; - sha256 = "1cmrd06l6mp478ixnwj93brkfz8gaw7081df4r4x6ql4vrga3a80"; - name = "plasma-nm-5.6.5.tar.xz"; - }; - }; - plasma-pa = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-pa-5.6.5.tar.xz"; - sha256 = "19b43mwjhvvi1wpa68c1g2mk76rqlfg0h8gf51xgd7y3qjv462h0"; - name = "plasma-pa-5.6.5.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-sdk-5.6.5.tar.xz"; - sha256 = "0v92b03ff40wkdps88aqkihs1cx4ggwg43x2cm6cdsa3gc84vyn8"; - name = "plasma-sdk-5.6.5.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.6.5.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-workspace-5.6.5.1.tar.xz"; - sha256 = "158lmnvvqbl3k5485yirw22vqb15qxfd1m0gc83p0hsi2lv7v7j5"; - name = "plasma-workspace-5.6.5.1.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/plasma-workspace-wallpapers-5.6.5.tar.xz"; - sha256 = "1pkyqsaxqah8h9r8ay449g20135sjw5qsbdp0i0ahprzw07wwijr"; - name = "plasma-workspace-wallpapers-5.6.5.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/polkit-kde-agent-1-5.6.5.tar.xz"; - sha256 = "1f7mzxfr463ac0cfpb653x8civ1ciwhkklndxv7mq37m5ssk4dah"; - name = "polkit-kde-agent-1-5.6.5.tar.xz"; - }; - }; - powerdevil = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/powerdevil-5.6.5.tar.xz"; - sha256 = "07x0n311qbisycsrjjd9lkcwxcxlira0qkz1akg5xxll9q2a6qb7"; - name = "powerdevil-5.6.5.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/sddm-kcm-5.6.5.tar.xz"; - sha256 = "07r20s0373y630x1vjrfgm740sgg8v6qsza4r3my1qbsdj3xwzky"; - name = "sddm-kcm-5.6.5.tar.xz"; - }; - }; - systemsettings = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/systemsettings-5.6.5.tar.xz"; - sha256 = "01z3q8rp8barb7lyfiwcrwn407pxz17z22y46czxc7j56n4ixgim"; - name = "systemsettings-5.6.5.tar.xz"; - }; - }; - user-manager = { - version = "5.6.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.6.5/user-manager-5.6.5.tar.xz"; - sha256 = "1fzfcq2kqrwja7y1ij8s7sbwlybharv6wqh62w7xza7pssz9yr7y"; - name = "user-manager-5.6.5.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix b/pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix rename to pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix rename to pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix rename to pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix rename to pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.7/default.nix similarity index 98% rename from pkgs/desktops/kde-5/plasma-5.6/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/default.nix index d356dd4bd2f..d0b6ef1f6c9 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/default.nix @@ -74,7 +74,7 @@ let kscreenlocker = callPackage ./kscreenlocker.nix {}; ksshaskpass = callPackage ./ksshaskpass.nix {}; ksysguard = callPackage ./ksysguard.nix {}; - kwayland = callPackage ./kwayland.nix {}; + kwayland-integration = callPackage ./kwayland-integration.nix {}; kwin = callPackage ./kwin {}; kwrited = callPackage ./kwrited.nix {}; libkscreen = callPackage ./libkscreen.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix b/pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix rename to pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix rename to pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix b/pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix rename to pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix rename to pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix b/pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix rename to pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix b/pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix rename to pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix b/pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix rename to pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix b/pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix rename to pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix b/pkgs/desktops/kde-5/plasma-5.7/kscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kscreen.nix rename to pkgs/desktops/kde-5/plasma-5.7/kscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix rename to pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix rename to pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix b/pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix rename to pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix b/pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix similarity index 57% rename from pkgs/desktops/kde-5/plasma-5.6/kwayland.nix rename to pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix index 3c2788237fc..9045227a51a 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix @@ -1,14 +1,16 @@ { plasmaPackage , extra-cmake-modules -, wayland +, kidletime +, kwayland +, kwindowsystem }: plasmaPackage { - name = "kwayland"; + name = "kwayland-integration"; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ - wayland + kidletime kwindowsystem kwayland ]; } diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch similarity index 89% rename from pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch index 797a32fc5f8..7a70fec0d2d 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch +++ b/pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch @@ -9,8 +9,8 @@ Subject: [PATCH] qdiriterator follow symlinks 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 +--- a/plugins/kdecorations/aurorae/src/aurorae.cpp ++++ b/plugins/kdecorations/aurorae/src/aurorae.cpp @@ -211,7 +211,7 @@ void Helper::init() // so let's try to locate our plugin: QString pluginPath; diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix b/pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix b/pkgs/desktops/kde-5/plasma-5.7/kwrited.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/kwrited.nix rename to pkgs/desktops/kde-5/plasma-5.7/kwrited.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix b/pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix rename to pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/milou.nix b/pkgs/desktops/kde-5/plasma-5.7/milou.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/milou.nix rename to pkgs/desktops/kde-5/plasma-5.7/milou.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix b/pkgs/desktops/kde-5/plasma-5.7/oxygen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/oxygen.nix rename to pkgs/desktops/kde-5/plasma-5.7/oxygen.nix 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.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix similarity index 85% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix index 2a1d95806c1..3a61651644f 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix @@ -1,6 +1,6 @@ { plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils -, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons +, attica, baloo, boost, fontconfig, kactivities, kactivities-stats +, kauth, kcmutils, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons , kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications , knotifyconfig, kpeople, krunner, kwallet, kwin, phonon , plasma-framework, plasma-workspace, qtdeclarative, qtx11extras @@ -21,9 +21,9 @@ plasmaPackage rec { 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 + xf86inputsynaptics xkeyboard_config xinput baloo kactivities + kactivities-stats kauth kdeclarative kdelibs4support kemoticons kglobalaccel + ki18n kpeople krunner kwin plasma-framework plasma-workspace qtdeclarative qtquickcontrols qtx11extras ksysguard ]; patches = [ diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix similarity index 67% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix index 7bc41986a4f..97d30dcd773 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix +++ b/pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix @@ -1,5 +1,5 @@ { plasmaPackage, extra-cmake-modules -, kconfig, kconfigwidgets, kiconthemes, kio, kwayland +, breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, kwayland , libXcursor }: @@ -11,7 +11,7 @@ plasmaPackage { extra-cmake-modules ]; buildInputs = [ - kconfig kconfigwidgets kiconthemes kio kwayland + breeze-qt5 kconfig kconfigwidgets kiconthemes kio kwayland libXcursor ]; } diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix 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.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch similarity index 88% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch index 7842109669a..12eb65caa71 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch +++ b/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch @@ -89,16 +89,3 @@ Index: plasma-workspace-5.6.3/applets/notifications/package/contents/ui/main.qml MouseEventListener { id: notificationsApplet -Index: plasma-workspace-5.6.3/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 - - 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.7/plasma-workspace/series similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series rename to pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/series diff --git a/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix rename to pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix new file mode 100644 index 00000000000..cbb2b9b019f --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix @@ -0,0 +1,18 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, bluez-qt, kactivities +, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n +, kidletime, kio, knotifyconfig, kwayland, libkscreen, networkmanager-qt +, plasma-workspace, qtx11extras, solid, udev +}: + +plasmaPackage { + name = "powerdevil"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + propagatedBuildInputs = [ + kconfig kdbusaddons knotifyconfig solid udev bluez-qt kactivities kauth + kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen + networkmanager-qt plasma-workspace qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.7/srcs.nix b/pkgs/desktops/kde-5/plasma-5.7/srcs.nix new file mode 100644 index 00000000000..2f017f0d52b --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.7/srcs.nix @@ -0,0 +1,325 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + bluedevil = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/bluedevil-5.7.0.tar.xz"; + sha256 = "10f507hj31asg08kz5c5j5g2qlzmn57x68jrbgx80hdrji6jv6qn"; + name = "bluedevil-5.7.0.tar.xz"; + }; + }; + breeze = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-5.7.0.tar.xz"; + sha256 = "1sy400m8lkdqna926fxfq3nmcfsrd877b841an686qf9lb7iga2l"; + name = "breeze-5.7.0.tar.xz"; + }; + }; + breeze-grub = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-grub-5.7.0.tar.xz"; + sha256 = "0lgf13kbv1mcl57hwm0al87xslwvc7cgnj4k8f3026fjf78dqzr8"; + name = "breeze-grub-5.7.0.tar.xz"; + }; + }; + breeze-gtk = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-gtk-5.7.0.tar.xz"; + sha256 = "1h9hvhln5mwsi4fn7a7csf7gn6qlvx4d6bmxij2qsjm4i14izxhb"; + name = "breeze-gtk-5.7.0.tar.xz"; + }; + }; + breeze-plymouth = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/breeze-plymouth-5.7.0.tar.xz"; + sha256 = "1kq3ys1dvw2asgda6p9qbb2kkgskpvhjyp0xj4mgi5yaklz0bxgv"; + name = "breeze-plymouth-5.7.0.tar.xz"; + }; + }; + discover = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/discover-5.7.0.tar.xz"; + sha256 = "0j3339g6lrf44hg3xbvzh01pygcawrrf1c9vhijimrrd197qcqwg"; + name = "discover-5.7.0.tar.xz"; + }; + }; + kactivitymanagerd = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kactivitymanagerd-5.7.0.tar.xz"; + sha256 = "0j2rf4qlha7cdwgdnvxrhlc90j2m8qacyhii27zdjz9iwv48zyjq"; + name = "kactivitymanagerd-5.7.0.tar.xz"; + }; + }; + kde-cli-tools = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kde-cli-tools-5.7.0.tar.xz"; + sha256 = "05g4q6lf7mkm8ys39qhwqavy2g2xc17ahsfc037wkcpka47m6i3m"; + name = "kde-cli-tools-5.7.0.tar.xz"; + }; + }; + kdecoration = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kdecoration-5.7.0.tar.xz"; + sha256 = "1i43b572yd3s0bgfvj97r18p0yk01skwmwqqzripb80pygw9yzvc"; + name = "kdecoration-5.7.0.tar.xz"; + }; + }; + kde-gtk-config = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kde-gtk-config-5.7.0.tar.xz"; + sha256 = "01y4m3lyrfb0hngbmk6r3xpbak9r534vf1fqgf22956sdfrl5g2p"; + name = "kde-gtk-config-5.7.0.tar.xz"; + }; + }; + kdeplasma-addons = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kdeplasma-addons-5.7.0.tar.xz"; + sha256 = "0kv0c2yxikbpdkr82n16pw016gsvbpmhp8kgbzdjdaqinicw4p2b"; + name = "kdeplasma-addons-5.7.0.tar.xz"; + }; + }; + kgamma5 = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kgamma5-5.7.0.tar.xz"; + sha256 = "1scqi61agl8f1pmq29v32fs126x0ddw933q6yjswy1w2a0nn0i02"; + name = "kgamma5-5.7.0.tar.xz"; + }; + }; + khotkeys = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/khotkeys-5.7.0.tar.xz"; + sha256 = "0l27frmam6amgay42vb4pl98l81pb6xasnwd9ww3069sr9kiq0vi"; + name = "khotkeys-5.7.0.tar.xz"; + }; + }; + kinfocenter = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kinfocenter-5.7.0.tar.xz"; + sha256 = "1bs3yl916s4dpci481dk81193mmh7kd9vqq535q74w0hx8khcwlf"; + name = "kinfocenter-5.7.0.tar.xz"; + }; + }; + kmenuedit = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kmenuedit-5.7.0.tar.xz"; + sha256 = "0l7vibvy50v5hqpv6zb2j7c2nf0jbd88vwxhbv6rg150f3qy9awb"; + name = "kmenuedit-5.7.0.tar.xz"; + }; + }; + kscreen = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kscreen-5.7.0.tar.xz"; + sha256 = "1qiwz220lff8l48ysfasx0zysv9m1mm2dsk60j84rcr3v5jwim6h"; + name = "kscreen-5.7.0.tar.xz"; + }; + }; + kscreenlocker = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kscreenlocker-5.7.0.tar.xz"; + sha256 = "0yg4k1v31fkqh23myd4lfc59b04qydgiym2hahdz66vnvkkdcvdv"; + name = "kscreenlocker-5.7.0.tar.xz"; + }; + }; + ksshaskpass = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/ksshaskpass-5.7.0.tar.xz"; + sha256 = "0jv0i1gz36vv690x69isw6v856vjrbkjisy2gwd7z0l3986z54l0"; + name = "ksshaskpass-5.7.0.tar.xz"; + }; + }; + ksysguard = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/ksysguard-5.7.0.tar.xz"; + sha256 = "093ksjk6gy5j2hgfwlw6vspd22gqnb28aby9x8nvrx9idaxldlrj"; + name = "ksysguard-5.7.0.tar.xz"; + }; + }; + kwallet-pam = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwallet-pam-5.7.0.tar.xz"; + sha256 = "0d1aba9mjb52cy8abm8ais5ypcfs3xny62dzjb7fd5ac1mdld0bz"; + name = "kwallet-pam-5.7.0.tar.xz"; + }; + }; + kwayland-integration = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwayland-integration-5.7.0.tar.xz"; + sha256 = "1p2l98dd7dl1knshivk27qc2cfpvar26vci4lpxxwhg6psqdsnam"; + name = "kwayland-integration-5.7.0.tar.xz"; + }; + }; + kwin = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwin-5.7.0.tar.xz"; + sha256 = "1mpdcr4dva447jigdfxvrhpd2mh67s83w3mzw28f9xb1r7zcfzpm"; + name = "kwin-5.7.0.tar.xz"; + }; + }; + kwrited = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/kwrited-5.7.0.tar.xz"; + sha256 = "1wz56v9f3an65x17wj8bdg4f27a0j1mrsaz1v9gqks86cbmkkr5k"; + name = "kwrited-5.7.0.tar.xz"; + }; + }; + libkscreen = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/libkscreen-5.7.0.tar.xz"; + sha256 = "0g5xs8sajzkmn91n0y92mi71zjadpn35k2sxw8b12ilp9r5qzkqc"; + name = "libkscreen-5.7.0.tar.xz"; + }; + }; + libksysguard = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/libksysguard-5.7.0.tar.xz"; + sha256 = "1i3sl8wnfg1sl5psbfikw57w1d4bac6d61slkga60mp5z0jw4vss"; + name = "libksysguard-5.7.0.tar.xz"; + }; + }; + milou = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/milou-5.7.0.tar.xz"; + sha256 = "1i778zang4rk3kvd1z7aszrcsxa3l1k2d5xiv2zqf2z6hnranvbd"; + name = "milou-5.7.0.tar.xz"; + }; + }; + oxygen = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/oxygen-5.7.0.tar.xz"; + sha256 = "05vz4zixg9nfrydd2i7jjkv082vgmhxlv3v109vgkr652dh9kncf"; + name = "oxygen-5.7.0.tar.xz"; + }; + }; + plasma-desktop = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-desktop-5.7.0.tar.xz"; + sha256 = "0f8pi90g1msrfzd769d7c26lxbq07hf7va5d9mclq3kfhk2wm951"; + name = "plasma-desktop-5.7.0.tar.xz"; + }; + }; + plasma-integration = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-integration-5.7.0.tar.xz"; + sha256 = "0rhm0p6350jibqflh3f5b7df3rnm9k5p02sgna6p6gm5b2w145ii"; + name = "plasma-integration-5.7.0.tar.xz"; + }; + }; + plasma-mediacenter = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-mediacenter-5.7.0.tar.xz"; + sha256 = "1xva1lyyafik6kq7f1s9fddvb7n35paz0lmcyzqbaxs149xz6r96"; + name = "plasma-mediacenter-5.7.0.tar.xz"; + }; + }; + plasma-nm = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-nm-5.7.0.tar.xz"; + sha256 = "1aa8wv4jdmjjwmvn0pd80p0byyys498xi3i4fqy84r8spmb6xb9i"; + name = "plasma-nm-5.7.0.tar.xz"; + }; + }; + plasma-pa = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-pa-5.7.0.tar.xz"; + sha256 = "15hziwyyvz9mqcyqnjwc49a31v2d2ysa7gaydkb8dizgqfd4pcs8"; + name = "plasma-pa-5.7.0.tar.xz"; + }; + }; + plasma-sdk = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-sdk-5.7.0.tar.xz"; + sha256 = "0cbjbp9m0l3lik1j0x1czn4whd2h140954dlgqb87k4d55lxpxjh"; + name = "plasma-sdk-5.7.0.tar.xz"; + }; + }; + plasma-workspace = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-5.7.0.tar.xz"; + sha256 = "047pqpwi2zgyyp592wbxqxai5j5hvxbnw01s79q4i4wpsq10b2fa"; + name = "plasma-workspace-5.7.0.tar.xz"; + }; + }; + plasma-workspace-wallpapers = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-wallpapers-5.7.0.tar.xz"; + sha256 = "1f2nmnprj8pb6wl3svfmsgivl2565mabpmqyaywwfblhi5ycxj52"; + name = "plasma-workspace-wallpapers-5.7.0.tar.xz"; + }; + }; + polkit-kde-agent = { + version = "1-5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/polkit-kde-agent-1-5.7.0.tar.xz"; + sha256 = "0cxjgmhrb26ghqlrdj4kksw5g7b90pfhfsz4jia85szk2nssivl3"; + name = "polkit-kde-agent-1-5.7.0.tar.xz"; + }; + }; + powerdevil = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/powerdevil-5.7.0.tar.xz"; + sha256 = "1wc59vzzjbjr5brwnmlcnibh5hii61001hbc7hma3gngzr7j0b6m"; + name = "powerdevil-5.7.0.tar.xz"; + }; + }; + sddm-kcm = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/sddm-kcm-5.7.0.tar.xz"; + sha256 = "14jnyv7fs2bscmb0iw3pdxzmk4qyv0czzlpszi1qd1i7k0f2dngy"; + name = "sddm-kcm-5.7.0.tar.xz"; + }; + }; + systemsettings = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/systemsettings-5.7.0.tar.xz"; + sha256 = "13k325r7vy6l4a6lwrbhgm60bdmn91yjkld7zsd2xyxbw27vis3p"; + name = "systemsettings-5.7.0.tar.xz"; + }; + }; + user-manager = { + version = "5.7.0"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.0/user-manager-5.7.0.tar.xz"; + sha256 = "16h7ifwa8dpn0yrg8cisi570dm2wigmb50pgxh9h8smfzgc0vg7k"; + name = "user-manager-5.7.0.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix b/pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix rename to pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh rename to pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh diff --git a/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix b/pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix rename to pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7c8549faf8..ae9d92c908e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16143,7 +16143,7 @@ in kde5 = let frameworks = import ../desktops/kde-5/frameworks-5.22 { inherit pkgs; }; - plasma = import ../desktops/kde-5/plasma-5.6 { inherit pkgs; }; + plasma = import ../desktops/kde-5/plasma-5.7 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: { plasma = plasma self; From b42ff8182a6ca9c3a7d8b38f8ddc8fde3039f4d5 Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 10 Jul 2016 11:36:14 +0200 Subject: [PATCH 126/508] kde frameworks: 5.22 -> 5.24 --- .../scripts/generate-kde-frameworks.sh | 2 +- pkgs/desktops/kde-5/frameworks-5.22/srcs.nix | 581 ------------------ .../attica.nix | 0 .../baloo.nix | 0 .../bluez-qt.nix | 0 .../breeze-icons.nix | 0 .../default.nix | 1 + .../extra-cmake-modules/default.nix | 0 .../extra-cmake-modules/nix-lib-path.patch | 0 .../extra-cmake-modules/series | 0 .../extra-cmake-modules/setup-hook.sh | 0 .../frameworkintegration.nix | 0 .../kactivities-stats.nix | 0 .../kactivities.nix | 0 .../kapidox.nix | 0 .../karchive.nix | 0 .../kauth/cmake-install-paths.patch | 0 .../kauth/default.nix | 0 .../kauth/series | 0 .../kbookmarks.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../kcmutils/default.nix | 0 .../kcodecs.nix | 0 .../kcompletion.nix | 0 .../kconfig.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../kconfigwidgets/default.nix | 0 .../kcoreaddons.nix | 0 .../kcrash.nix | 0 .../kdbusaddons.nix | 0 .../kdeclarative.nix | 0 .../kded.nix | 0 .../kdelibs4support/default.nix | 0 .../kdelibs4support/nix-kde-include-dir.patch | 0 .../kdelibs4support/series | 0 .../kdelibs4support/setup-hook.sh | 0 .../kdesignerplugin.nix | 0 .../kdesu.nix | 0 .../kdnssd.nix | 0 .../kdoctools/default.nix | 0 .../kdoctools-no-find-docbook-xml.patch | 0 .../kdoctools/setup-hook.sh | 0 .../kemoticons.nix | 0 .../kfilemetadata/cmake-install-paths.patch | 0 .../kfilemetadata/default.nix | 0 .../kfilemetadata/series | 0 .../kglobalaccel.nix | 0 .../kguiaddons.nix | 0 .../khtml.nix | 0 .../ki18n.nix | 0 .../kiconthemes/default-theme-breeze.patch | 2 +- .../kiconthemes/default.nix | 4 +- .../kiconthemes/series | 0 .../kidletime.nix | 0 .../kimageformats.nix | 0 .../kinit/default.nix | 0 .../kinit/kinit-libpath.patch | 0 .../kinit/series | 0 .../kio/default.nix | 0 .../kio/samba-search-path.patch | 0 .../kio/series | 0 .../kitemmodels.nix | 0 .../kitemviews.nix | 0 .../kjobwidgets.nix | 0 .../kjs.nix | 0 .../kjsembed.nix | 0 .../kmediaplayer.nix | 0 .../knewstuff.nix | 0 .../knotifications.nix | 0 .../knotifyconfig.nix | 0 .../kpackage/allow-external-paths.patch | 0 .../kpackage/default.nix | 0 .../qdiriterator-follow-symlinks.patch | 0 .../kpackage/series | 0 .../kparts.nix | 0 .../kpeople.nix | 0 .../kplotting.nix | 0 .../kpty.nix | 0 .../kross.nix | 0 .../krunner.nix | 0 .../kservice/default.nix | 0 .../kservice/no-canonicalize-path.patch | 0 .../qdiriterator-follow-symlinks.patch | 0 .../kservice/series | 0 .../kservice/setup-hook.sh | 0 .../ktexteditor/default.nix | 0 .../ktexteditor/no-qcoreapplication.patch | 0 .../ktexteditor/series | 0 .../ktextwidgets.nix | 0 .../kunitconversion.nix | 0 .../kwallet.nix | 0 .../kde-5/frameworks-5.24/kwayland.nix | 14 + .../kwidgetsaddons.nix | 0 .../kwindowsystem.nix | 0 .../kxmlgui.nix | 0 .../kxmlrpcclient.nix | 0 .../modemmanager-qt.nix | 0 .../networkmanager-qt.nix | 0 .../oxygen-icons5.nix | 0 .../plasma-framework.nix | 0 .../solid.nix | 0 .../sonnet.nix | 0 pkgs/desktops/kde-5/frameworks-5.24/srcs.nix | 581 ++++++++++++++++++ .../threadweaver.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 105 files changed, 601 insertions(+), 586 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.22/srcs.nix rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/attica.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/baloo.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/bluez-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/breeze-icons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/default.nix (99%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/nix-lib-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/extra-cmake-modules/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/frameworkintegration.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kactivities-stats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kactivities.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kapidox.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/karchive.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kauth/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kauth/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kauth/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kbookmarks.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcmutils/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcmutils/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcodecs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcompletion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kconfigwidgets/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcoreaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kcrash.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdbusaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdeclarative.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kded.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/nix-kde-include-dir.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdelibs4support/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdesignerplugin.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdesu.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdnssd.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdoctools/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdoctools/kdoctools-no-find-docbook-xml.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kdoctools/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kemoticons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kfilemetadata/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kfilemetadata/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kfilemetadata/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kglobalaccel.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kguiaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/khtml.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ki18n.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kiconthemes/default-theme-breeze.patch (91%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kiconthemes/default.nix (70%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kiconthemes/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kidletime.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kimageformats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kinit/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kinit/kinit-libpath.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kinit/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kio/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kio/samba-search-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kio/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kitemmodels.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kitemviews.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kjobwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kjs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kjsembed.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kmediaplayer.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/knewstuff.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/knotifications.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/knotifyconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/allow-external-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpackage/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kparts.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpeople.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kplotting.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kpty.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kross.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/krunner.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/no-canonicalize-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kservice/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktexteditor/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktexteditor/no-qcoreapplication.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktexteditor/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/ktextwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kunitconversion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kwallet.nix (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kwidgetsaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kwindowsystem.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kxmlgui.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/kxmlrpcclient.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/modemmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/networkmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/oxygen-icons5.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/plasma-framework.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/solid.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/sonnet.nix (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.24/srcs.nix rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.24}/threadweaver.nix (100%) diff --git a/maintainers/scripts/generate-kde-frameworks.sh b/maintainers/scripts/generate-kde-frameworks.sh index aa693ced704..e690662b3f2 100755 --- a/maintainers/scripts/generate-kde-frameworks.sh +++ b/maintainers/scripts/generate-kde-frameworks.sh @@ -1,3 +1,3 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/frameworks/5.22/ -A '*.tar.xz' +./fetch-kde-qt.sh http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' diff --git a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix deleted file mode 100644 index 156a11ba216..00000000000 --- a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix +++ /dev/null @@ -1,581 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/attica-5.22.0.tar.xz"; - sha256 = "1i26nwxyrb62icw49znlyz9y670cv7xvibzbdfnnxq9czsalwym7"; - name = "attica-5.22.0.tar.xz"; - }; - }; - baloo = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/baloo-5.22.0.tar.xz"; - sha256 = "0h51j41pa8b18jkdna0247z5alqfbvgfzlxc6s6p0c7g7658z0w3"; - name = "baloo-5.22.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/bluez-qt-5.22.0.tar.xz"; - sha256 = "1lrkkg2f2qjj8cy968l3scdrvi506m5hr9x22d1zn6r12fvq6304"; - name = "bluez-qt-5.22.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/breeze-icons-5.22.0.tar.xz"; - sha256 = "162698h01cs7116la4jfygn8ka4ffjmnv7nxjl6yhcqrs25nky7l"; - name = "breeze-icons-5.22.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/extra-cmake-modules-5.22.0.tar.xz"; - sha256 = "042ad7kp2ijp66gvz0q60glk95wj9f0fymrjyw68253rqynf3zj3"; - name = "extra-cmake-modules-5.22.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/frameworkintegration-5.22.0.tar.xz"; - sha256 = "0jf9y738r86ss520hqhfll8prrfpha73myj99hbz3sqrix7b0va9"; - name = "frameworkintegration-5.22.0.tar.xz"; - }; - }; - kactivities = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kactivities-5.22.0.tar.xz"; - sha256 = "068jhc6lw47hcibvys968m4wa1b278ccy2gas9iymzzys1ccv6kr"; - name = "kactivities-5.22.0.tar.xz"; - }; - }; - kactivities-stats = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kactivities-stats-5.22.0.tar.xz"; - sha256 = "1gx5wm337nwbwqb56xvl16vhk47v7a5qpx5hhn7ygpfxkgxh6wiq"; - name = "kactivities-stats-5.22.0.tar.xz"; - }; - }; - kapidox = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kapidox-5.22.0.tar.xz"; - sha256 = "0cs133g1rvbcrdvy7zvk5c14p5iwwn0x0m76c2ifal0g8qh0hmd1"; - name = "kapidox-5.22.0.tar.xz"; - }; - }; - karchive = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/karchive-5.22.0.tar.xz"; - sha256 = "1ywd38j6jpwj21kdp504gs0pfvlnvg6ak8hjk6a269pkci3dyf91"; - name = "karchive-5.22.0.tar.xz"; - }; - }; - kauth = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kauth-5.22.0.tar.xz"; - sha256 = "1c0kp25g57nldh1x5vfq9fypbznc991jrry2lydvb06d3jh44vbn"; - name = "kauth-5.22.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kbookmarks-5.22.0.tar.xz"; - sha256 = "093rlg8pprjg7ba52dh2z9j2x5ir7s9kjas6ni4fqxxzpp15hh3p"; - name = "kbookmarks-5.22.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcmutils-5.22.0.tar.xz"; - sha256 = "1s7gw9l2n92rrcdzy9pnwq8na65axd8bkk9nphyhpbxk76zj1gyy"; - name = "kcmutils-5.22.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcodecs-5.22.0.tar.xz"; - sha256 = "0rlqs8m2ib2kkj679gn74zqqxzsddfcbywpgwlcd6b992i4cad87"; - name = "kcodecs-5.22.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcompletion-5.22.0.tar.xz"; - sha256 = "07jqjrddigdqsdy2adzari7g626sakilg9d765s75vncv5amrvzy"; - name = "kcompletion-5.22.0.tar.xz"; - }; - }; - kconfig = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kconfig-5.22.0.tar.xz"; - sha256 = "0n0dzgba96pkabbvk1cfm34j9jirgbd84xha6adscpxs28506cg0"; - name = "kconfig-5.22.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kconfigwidgets-5.22.0.tar.xz"; - sha256 = "0jr6ygd8c0gap2ay2685wj3fx4scrahzbpaaj4bjhq2s79nvmlyg"; - name = "kconfigwidgets-5.22.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcoreaddons-5.22.0.tar.xz"; - sha256 = "0zzwcw0n9bd3pi3rv7cdwynb67x1bqf1bh3s59hjipf9d412wl15"; - name = "kcoreaddons-5.22.0.tar.xz"; - }; - }; - kcrash = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kcrash-5.22.0.tar.xz"; - sha256 = "1r0i9ngk5jypzfhhssjm5b3n5sqli3jhh896r1qwpfcq9w15x7qg"; - name = "kcrash-5.22.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdbusaddons-5.22.0.tar.xz"; - sha256 = "0w9spb5i5qi2r5kfgrylpvw6mwjxfhd4j7yslc9jy0q4y8j3f1dk"; - name = "kdbusaddons-5.22.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdeclarative-5.22.0.tar.xz"; - sha256 = "06n6wqy8dm2hv6dbar453z4rmiyf6f34zak1fhs38sqkfy6syva1"; - name = "kdeclarative-5.22.0.tar.xz"; - }; - }; - kded = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kded-5.22.0.tar.xz"; - sha256 = "1zfggr6pmiypw5bnh6hr22agms589hm7hw35nhfhc4r7qd1drf6q"; - name = "kded-5.22.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kdelibs4support-5.22.0.tar.xz"; - sha256 = "1mmrr54kkicnz4pjksnrh40md80m18mr5ba2la7kwjxmdyl6znm3"; - name = "kdelibs4support-5.22.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdesignerplugin-5.22.0.tar.xz"; - sha256 = "0cfnmpz845l39qpy5r6pknzm78js81bci9qi0xfnrf8gm3lvjg5l"; - name = "kdesignerplugin-5.22.0.tar.xz"; - }; - }; - kdesu = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdesu-5.22.0.tar.xz"; - sha256 = "1jsr9m32dyzvsvsy743h3jih8v4yyr2zf15hh908anbamp7449bd"; - name = "kdesu-5.22.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdewebkit-5.22.0.tar.xz"; - sha256 = "0rmxa4j3jx7689jcf45fghh7jff16x34xrzrw0clg3fj4w47ik0b"; - name = "kdewebkit-5.22.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdnssd-5.22.0.tar.xz"; - sha256 = "1b0s5gwn51zh2h5w2mzpzjj86qaz6pl7gzqf5q88vpzsiqjg14vp"; - name = "kdnssd-5.22.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kdoctools-5.22.0.tar.xz"; - sha256 = "0y4ayms0hyj4nv5flr0a198lb545plfbxkwhqsmzc0c77gagcw5k"; - name = "kdoctools-5.22.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kemoticons-5.22.0.tar.xz"; - sha256 = "1swrpqm441ngmps00hr15pgvw1382zbf2q2ncndj7i30725nfq1g"; - name = "kemoticons-5.22.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kfilemetadata-5.22.0.tar.xz"; - sha256 = "0p6s1r2qv5396ghkw79wyf7yf4hzj562yp83wgplwmr6lgh4b2fc"; - name = "kfilemetadata-5.22.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kglobalaccel-5.22.0.tar.xz"; - sha256 = "1m1aviz5g0vwk58j0z9jckz4rzns7md7mr3zlqqpvp1r032qc30k"; - name = "kglobalaccel-5.22.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kguiaddons-5.22.0.tar.xz"; - sha256 = "10chxcvf4hxyfkgprsj7rg4dv788dzqjgsm6m0a4m6qmx12zhckh"; - name = "kguiaddons-5.22.0.tar.xz"; - }; - }; - khtml = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/khtml-5.22.0.tar.xz"; - sha256 = "1w5q41fjrqqq91j3dvhc9lrrhvrwy1izws6af7srh768gn6yig0m"; - name = "khtml-5.22.0.tar.xz"; - }; - }; - ki18n = { - version = "5.22.1"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/ki18n-5.22.1.tar.xz"; - sha256 = "0fasp8akj6wysn4acf9vyivcgb8x9dlnhkqmw7j0g7z1qgvjn4pv"; - name = "ki18n-5.22.1.tar.xz"; - }; - }; - kiconthemes = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kiconthemes-5.22.0.tar.xz"; - sha256 = "1bh76f7kpha4c5qs3n8z6g1qah0rsk99yqcz8j1dlss4ws65j9j3"; - name = "kiconthemes-5.22.0.tar.xz"; - }; - }; - kidletime = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kidletime-5.22.0.tar.xz"; - sha256 = "0dgw0rin6wz31xdspbjpvcs5x1b163ggqkz2zn73zavbr7f5jypc"; - name = "kidletime-5.22.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kimageformats-5.22.0.tar.xz"; - sha256 = "0g3f73m3yj5iqivcsn83pm32w4l13zbyzz5azgm3jjfhgnd00c18"; - name = "kimageformats-5.22.0.tar.xz"; - }; - }; - kinit = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kinit-5.22.0.tar.xz"; - sha256 = "1f71y6gf00p4jkqvpzyjlbnwc4gvjl2h4wi61xhpjz8lrmpsb6ac"; - name = "kinit-5.22.0.tar.xz"; - }; - }; - kio = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kio-5.22.0.tar.xz"; - sha256 = "02knylbs9ymb8qm7fkp3dkdqc9cvgw2dwfl4phzl1iax2fx2zkqy"; - name = "kio-5.22.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kitemmodels-5.22.0.tar.xz"; - sha256 = "03gnglfhpzrc67bi0xdcy4xdhankic5cqnpahp9wwsis12ac6i83"; - name = "kitemmodels-5.22.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kitemviews-5.22.0.tar.xz"; - sha256 = "0nhwg7bmv1c8p6pnbfsz96mq9wbq339ir9yp7kfnhfrg0wqi44ar"; - name = "kitemviews-5.22.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kjobwidgets-5.22.0.tar.xz"; - sha256 = "1inqrb0j64b3519qcr0wk9izd4c1zi4kfjc8wa04s2kwxg6z7j1p"; - name = "kjobwidgets-5.22.0.tar.xz"; - }; - }; - kjs = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kjs-5.22.0.tar.xz"; - sha256 = "0xqlkhm8r021xd5a25nwp9a4r7cbjkpqkc89fjma8qyvq5785qxw"; - name = "kjs-5.22.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kjsembed-5.22.0.tar.xz"; - sha256 = "0fcc1lm5l8r0lj35r3niliyn8zxr90by2vjc9krzfm4i7kwij7wb"; - name = "kjsembed-5.22.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kmediaplayer-5.22.0.tar.xz"; - sha256 = "1pn3fmaixcxba1wl63hblhnpj7jblrala9j3xrj8z2abhhfl5vzy"; - name = "kmediaplayer-5.22.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/knewstuff-5.22.0.tar.xz"; - sha256 = "1gr566k95bg58hpn569kkarmlxk5rp12jcxdp7ksw1j8mp6la7a7"; - name = "knewstuff-5.22.0.tar.xz"; - }; - }; - knotifications = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/knotifications-5.22.0.tar.xz"; - sha256 = "0fh6ahfr9pa8643i1ma40h7afnd1jn0m6dw5f9hgndxhwi6h3bps"; - name = "knotifications-5.22.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/knotifyconfig-5.22.0.tar.xz"; - sha256 = "0p4g7wv2w6cpjzhlkh7rnzzhwcj86sgz98fl97is1fl65q8f0szr"; - name = "knotifyconfig-5.22.0.tar.xz"; - }; - }; - kpackage = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kpackage-5.22.0.tar.xz"; - sha256 = "1nbwjc4n8f2iisdckm5ll3qyls1sq02ia6vmhj4mfm4w44q4s1bk"; - name = "kpackage-5.22.0.tar.xz"; - }; - }; - kparts = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kparts-5.22.0.tar.xz"; - sha256 = "091wm2flhqgpqsffdd8nlwbdffvsj7cyd0c46949d9chm64723cg"; - name = "kparts-5.22.0.tar.xz"; - }; - }; - kpeople = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kpeople-5.22.0.tar.xz"; - sha256 = "0rbwxzmyaig92vcd26v1yqd13swk15pp0lpvjp6hdpxbhpxijyf7"; - name = "kpeople-5.22.0.tar.xz"; - }; - }; - kplotting = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kplotting-5.22.0.tar.xz"; - sha256 = "0ljiyxa2320v937lkqkxx3jc7sg45z4vjl74lxfybwspgs6y5hqk"; - name = "kplotting-5.22.0.tar.xz"; - }; - }; - kpty = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kpty-5.22.0.tar.xz"; - sha256 = "12lfwv45d06ksx5xc4hgk075mj2ckkqpc8mksx99f700yvcyk1db"; - name = "kpty-5.22.0.tar.xz"; - }; - }; - kross = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/portingAids/kross-5.22.0.tar.xz"; - sha256 = "1ika9ha06vspjn8hy6mv5vi5n7xj7sj45csmjjxcqwhn2wlcdj4l"; - name = "kross-5.22.0.tar.xz"; - }; - }; - krunner = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/krunner-5.22.0.tar.xz"; - sha256 = "09jhdy48dciqd8hwxmvjyw547fr48mzns5f0yknsnnb8a47yhrd4"; - name = "krunner-5.22.0.tar.xz"; - }; - }; - kservice = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kservice-5.22.0.tar.xz"; - sha256 = "1c5q8cxghbji3imamjbxymcd5cz9a9rapqriy1wmskys3ms3fag9"; - name = "kservice-5.22.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/ktexteditor-5.22.0.tar.xz"; - sha256 = "1jsa8cfq0245bsris46i3k8f8g7l0sc5jpj4iwkxrl9m0nk5j1v0"; - name = "ktexteditor-5.22.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/ktextwidgets-5.22.0.tar.xz"; - sha256 = "01a2vkdpq06libap5g6a90jrcc0phmfd859kilraqyxhbrp9sw5l"; - name = "ktextwidgets-5.22.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kunitconversion-5.22.0.tar.xz"; - sha256 = "1phbqxddp8ks36nr4982n4bwwx7d6yxll629gpb0ddc4yfsjv48p"; - name = "kunitconversion-5.22.0.tar.xz"; - }; - }; - kwallet = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwallet-5.22.0.tar.xz"; - sha256 = "1i20kp1gkdiwmwy8vf7vd6r89qx6lpxwr6nib35khp93ci9l3838"; - name = "kwallet-5.22.0.tar.xz"; - }; - }; - kwayland = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwayland-5.22.0.tar.xz"; - sha256 = "1jfibqai7vy1vklj19x7z0r4qc0rc7yd5r4wpp98mmdwzpnhlrgy"; - name = "kwayland-5.22.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwidgetsaddons-5.22.0.tar.xz"; - sha256 = "1bwmnfa1l3s33nc6b0ryk78gxhrynyd07ffqw7mw211r34pg4c14"; - name = "kwidgetsaddons-5.22.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kwindowsystem-5.22.0.tar.xz"; - sha256 = "05jwmjqk03pc2g09rnyb9qh0dfi0c46awbaxgc7i7z4i9swv1k30"; - name = "kwindowsystem-5.22.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kxmlgui-5.22.0.tar.xz"; - sha256 = "16q222jvnsd6pj49ih44qpks97lcjsamcpjg5x5ysn4a6w5h4mds"; - name = "kxmlgui-5.22.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/kxmlrpcclient-5.22.0.tar.xz"; - sha256 = "00qj4pa7r0ny6pwivq6qqw80v4dsg9lgwd2qdlp9kddi0f8i2p1b"; - name = "kxmlrpcclient-5.22.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/modemmanager-qt-5.22.0.tar.xz"; - sha256 = "1b1gx33vrw7qcvy3zlc01x7wlalx5csfl590gfxlf870i3m7dnhf"; - name = "modemmanager-qt-5.22.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/networkmanager-qt-5.22.0.tar.xz"; - sha256 = "03b710n4107qw9c3p7wdma9fz9vqixrjydfa02f7vgzw1rixmmqq"; - name = "networkmanager-qt-5.22.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/oxygen-icons5-5.22.0.tar.xz"; - sha256 = "1m3f5wrgahqlzzl3jyfymh6n515fsmsi8ckimvma2d8qqpb0dc2l"; - name = "oxygen-icons5-5.22.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/plasma-framework-5.22.0.tar.xz"; - sha256 = "1wn7ib030dw8rj5dprl8bzz4c3dv4nlmrfb9wgr6x78w4ac967zc"; - name = "plasma-framework-5.22.0.tar.xz"; - }; - }; - solid = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/solid-5.22.0.tar.xz"; - sha256 = "04a7z5g2ylhbj2572wa6w51cs98ddn4d7lfirzawxf0f8d2693w2"; - name = "solid-5.22.0.tar.xz"; - }; - }; - sonnet = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/sonnet-5.22.0.tar.xz"; - sha256 = "0y8l3mfa65a59vjj424ga87q3bixx8inicp2jp9zi36p4g7xwww8"; - name = "sonnet-5.22.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.22.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/threadweaver-5.22.0.tar.xz"; - sha256 = "1ax58k6nl8za79j99spa2r76m9xz8ih9iflksgpng40wlnkwlp59"; - name = "threadweaver-5.22.0.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.22/attica.nix b/pkgs/desktops/kde-5/frameworks-5.24/attica.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/attica.nix rename to pkgs/desktops/kde-5/frameworks-5.24/attica.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/baloo.nix b/pkgs/desktops/kde-5/frameworks-5.24/baloo.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/baloo.nix rename to pkgs/desktops/kde-5/frameworks-5.24/baloo.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/default.nix similarity index 99% rename from pkgs/desktops/kde-5/frameworks-5.22/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/default.nix index 4d0567846f8..851c142fe2d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.24/default.nix @@ -106,6 +106,7 @@ let ktextwidgets = callPackage ./ktextwidgets.nix {}; kunitconversion = callPackage ./kunitconversion.nix {}; kwallet = callPackage ./kwallet.nix {}; + kwayland = callPackage ./kwayland.nix {}; kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; kwindowsystem = callPackage ./kwindowsystem.nix {}; kxmlgui = callPackage ./kxmlgui.nix {}; diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix rename to pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix b/pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/karchive.nix b/pkgs/desktops/kde-5/frameworks-5.24/karchive.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/karchive.nix rename to pkgs/desktops/kde-5/frameworks-5.24/karchive.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/series b/pkgs/desktops/kde-5/frameworks-5.24/kauth/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/series rename to pkgs/desktops/kde-5/frameworks-5.24/kauth/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix b/pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix b/pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kded.nix b/pkgs/desktops/kde-5/frameworks-5.24/kded.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kded.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kded.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series rename to pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/khtml.nix b/pkgs/desktops/kde-5/frameworks-5.24/khtml.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/khtml.nix rename to pkgs/desktops/kde-5/frameworks-5.24/khtml.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix b/pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix rename to pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch similarity index 91% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch index 5b3b15d5d5b..f7cb0ea3aac 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch +++ b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch @@ -6,7 +6,7 @@ Index: kiconthemes-5.17.0/src/kicontheme.cpp // static QString KIconTheme::defaultThemeName() { -- return QStringLiteral("oxygen"); +- return QStringLiteral("hicolor"); + return QStringLiteral("breeze"); } diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix similarity index 70% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix index 4e868480636..825b15c8177 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix @@ -1,6 +1,6 @@ { kdeFramework, lib, copyPathsToStore , extra-cmake-modules, makeQtWrapper -, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg +, karchive, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg }: kdeFramework { @@ -8,7 +8,7 @@ kdeFramework { meta = { maintainers = [ lib.maintainers.ttuegel ]; }; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ breeze-icons kconfigwidgets ki18n kitemviews qtsvg ]; + propagatedBuildInputs = [ breeze-icons kconfigwidgets karchive ki18n kitemviews qtsvg ]; postInstall = '' wrapQtProgram "$out/bin/kiconfinder5" ''; diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series b/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series rename to pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix b/pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix b/pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/series b/pkgs/desktops/kde-5/frameworks-5.24/kinit/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/series rename to pkgs/desktops/kde-5/frameworks-5.24/kinit/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/series b/pkgs/desktops/kde-5/frameworks-5.24/kio/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/series rename to pkgs/desktops/kde-5/frameworks-5.24/kio/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix b/pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjs.nix b/pkgs/desktops/kde-5/frameworks-5.24/kjs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjs.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kjs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix b/pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix b/pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix rename to pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix rename to pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/series b/pkgs/desktops/kde-5/frameworks-5.24/kpackage/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/series rename to pkgs/desktops/kde-5/frameworks-5.24/kpackage/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kparts.nix b/pkgs/desktops/kde-5/frameworks-5.24/kparts.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kparts.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kparts.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix b/pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix b/pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpty.nix b/pkgs/desktops/kde-5/frameworks-5.24/kpty.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpty.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kpty.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kross.nix b/pkgs/desktops/kde-5/frameworks-5.24/kross.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kross.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kross.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/krunner.nix b/pkgs/desktops/kde-5/frameworks-5.24/krunner.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/krunner.nix rename to pkgs/desktops/kde-5/frameworks-5.24/krunner.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/series b/pkgs/desktops/kde-5/frameworks-5.24/kservice/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/series rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix rename to pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch rename to pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series b/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series rename to pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix new file mode 100644 index 00000000000..db332841308 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix @@ -0,0 +1,14 @@ +{ kdeFramework +, extra-cmake-modules +, wayland +}: + +kdeFramework { + name = "kwayland"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + propagatedBuildInputs = [ + wayland + ]; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix rename to pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix rename to pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix rename to pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/solid.nix b/pkgs/desktops/kde-5/frameworks-5.24/solid.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/solid.nix rename to pkgs/desktops/kde-5/frameworks-5.24/solid.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix b/pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix rename to pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix new file mode 100644 index 00000000000..5c48ece1e99 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix @@ -0,0 +1,581 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/attica-5.24.0.tar.xz"; + sha256 = "0d368gmds7m7k5pnn625wqsij38cvxk1gkm4zv24phnk9f67v7cw"; + name = "attica-5.24.0.tar.xz"; + }; + }; + baloo = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/baloo-5.24.0.tar.xz"; + sha256 = "1ayfdg6j9lvas17ryjdv4a0kaj6vw3bxfy2x9nadl0gkc9pak4nh"; + name = "baloo-5.24.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/bluez-qt-5.24.0.tar.xz"; + sha256 = "0gy0m7lcwwklf021l5i3v7j0cl7qz7cgvzrwpj87ix3kyw5xs80z"; + name = "bluez-qt-5.24.0.tar.xz"; + }; + }; + breeze-icons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/breeze-icons-5.24.0.tar.xz"; + sha256 = "1dh7bijx99sdb3vn6394wmm5cq0fvvmz8h17sx4hakmbga849cx2"; + name = "breeze-icons-5.24.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/extra-cmake-modules-5.24.0.tar.xz"; + sha256 = "01m12ml529pwr2sal951r5z6yb1rwbpid1y4k14nlk3xqgmdakwa"; + name = "extra-cmake-modules-5.24.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/frameworkintegration-5.24.0.tar.xz"; + sha256 = "0brqgq05m06d98qqvyh30727f5z7hlzxgqysfhfvqzcf3x7f6yzj"; + name = "frameworkintegration-5.24.0.tar.xz"; + }; + }; + kactivities = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kactivities-5.24.0.tar.xz"; + sha256 = "0s8g43zk6h35bq1am1nnhj0qvmhd6kz42gs8l7ybga0367jghzhf"; + name = "kactivities-5.24.0.tar.xz"; + }; + }; + kactivities-stats = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kactivities-stats-5.24.0.tar.xz"; + sha256 = "1z3xvpifxbd05b2xaxxyiypcpid7jgjb1qpwiyjj1gnfp4rjmzpc"; + name = "kactivities-stats-5.24.0.tar.xz"; + }; + }; + kapidox = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kapidox-5.24.0.tar.xz"; + sha256 = "19a7alvn71nxflsyi7y3hghx1iw04qqc77qy54mcxcpkiyvpsggf"; + name = "kapidox-5.24.0.tar.xz"; + }; + }; + karchive = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/karchive-5.24.0.tar.xz"; + sha256 = "1n5nfhrfvqnrdjgjjy7arqik4fya5bp3dvxa16mlhqr19azkavzq"; + name = "karchive-5.24.0.tar.xz"; + }; + }; + kauth = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kauth-5.24.0.tar.xz"; + sha256 = "14sjjfgl3arqyqcr77w9qhpnd8mrnh53r5rfss6bvlk26bmihs49"; + name = "kauth-5.24.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kbookmarks-5.24.0.tar.xz"; + sha256 = "10d8dnhvbrwp0dbmz93cqfdff6ir8iy3yiwaf9ihj6ma124qlyjn"; + name = "kbookmarks-5.24.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcmutils-5.24.0.tar.xz"; + sha256 = "0aws1c76s6wbp0xpr6qv6cfwq8dw82v00pkf9gy84sbxknwjnizk"; + name = "kcmutils-5.24.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcodecs-5.24.0.tar.xz"; + sha256 = "1qpzjh3qc2zz80j2bmlinipbispms14k9bmqw8v61zhi6in9z14c"; + name = "kcodecs-5.24.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcompletion-5.24.0.tar.xz"; + sha256 = "1qln0v31gn86kzwhnkijr1ydf129n32jmiybbckrp4w6hyx6xfxv"; + name = "kcompletion-5.24.0.tar.xz"; + }; + }; + kconfig = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kconfig-5.24.0.tar.xz"; + sha256 = "1dc2i6icyigw1j6qxgdza6j2g8afh390qmxsa2a54mwl84fkfmxv"; + name = "kconfig-5.24.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kconfigwidgets-5.24.0.tar.xz"; + sha256 = "0v25r50gh5i984lzlv0rradghglcfqf0gsfmnkn23h87b86fm9l2"; + name = "kconfigwidgets-5.24.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcoreaddons-5.24.0.tar.xz"; + sha256 = "06sx7by3nvaridnavj5p0bxv4nh47n708jlacfw8ydaikmd9i03h"; + name = "kcoreaddons-5.24.0.tar.xz"; + }; + }; + kcrash = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kcrash-5.24.0.tar.xz"; + sha256 = "1lahgfwlp9b5rsl244kzp7rsl4ybv1q4qlvpv0xxz5ygssk48l0w"; + name = "kcrash-5.24.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdbusaddons-5.24.0.tar.xz"; + sha256 = "183nxqrhz4qk4qfp1w4an0scp2dvfqcaqbpg4cgbgk0z590q0pkk"; + name = "kdbusaddons-5.24.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdeclarative-5.24.0.tar.xz"; + sha256 = "00ik9q1r6y6g5rkdq96yczgrxmcg85x00lipyljvc3x6xw6bixbz"; + name = "kdeclarative-5.24.0.tar.xz"; + }; + }; + kded = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kded-5.24.0.tar.xz"; + sha256 = "0ngpxdxb596myn5r4kjxahx195bwklq33yvgjvcbxi2clg2wccaj"; + name = "kded-5.24.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kdelibs4support-5.24.0.tar.xz"; + sha256 = "12sis63mq6i372bhx64x8y0pw6czrv64hdhjscx27cx65a4ir451"; + name = "kdelibs4support-5.24.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdesignerplugin-5.24.0.tar.xz"; + sha256 = "0i0s8pwwhwh5hyyvkv0cnj0yyv0g5bnm5xw18knv2yagiy4bvb2j"; + name = "kdesignerplugin-5.24.0.tar.xz"; + }; + }; + kdesu = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdesu-5.24.0.tar.xz"; + sha256 = "1ivcnhgvq75xvl0w9g7m45qzallz42ijaq0n1ap09lpdfmjbnrxk"; + name = "kdesu-5.24.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdewebkit-5.24.0.tar.xz"; + sha256 = "1xq36zv7vnllhqbisl6kcna8z6qzlvy29a47g0hbzgl8rc93qskf"; + name = "kdewebkit-5.24.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdnssd-5.24.0.tar.xz"; + sha256 = "01b650g031apxc3vd2m91g2fxqk9l8ap67z6rafniphfwy8i0d5m"; + name = "kdnssd-5.24.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kdoctools-5.24.0.tar.xz"; + sha256 = "1r129kpq0d11b9l87cqbal6fm5ycwhsps1g3r1a7jsxz70scz4ri"; + name = "kdoctools-5.24.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kemoticons-5.24.0.tar.xz"; + sha256 = "0gmc52k5jb553jvzxwsq79v5y87kgav8i5qqv4bqc9yl7p866zhn"; + name = "kemoticons-5.24.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kfilemetadata-5.24.0.tar.xz"; + sha256 = "02n9qhpr0jlwdgdbid0k34abhs3bzhlsa56ybl5dq1aib6izk1sy"; + name = "kfilemetadata-5.24.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kglobalaccel-5.24.0.tar.xz"; + sha256 = "123v0ld1q88hbm3d0mqgq6lcivfkqh7pbz4hb4n76ab5v43qc15c"; + name = "kglobalaccel-5.24.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kguiaddons-5.24.0.tar.xz"; + sha256 = "0ig96ah20ybg5rwpswj9va2klvkh2q4amwxmgy3z4niwfsm2g3ic"; + name = "kguiaddons-5.24.0.tar.xz"; + }; + }; + khtml = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/khtml-5.24.0.tar.xz"; + sha256 = "0f19m8ycaa41p61i0j43gafn364abral8dbiqhr0qcj33nsa4134"; + name = "khtml-5.24.0.tar.xz"; + }; + }; + ki18n = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/ki18n-5.24.0.tar.xz"; + sha256 = "0cw24spmwsqa3ppkw03cm6yjd3sfll0dbbk2ya76fd4nw9hb00dv"; + name = "ki18n-5.24.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kiconthemes-5.24.0.tar.xz"; + sha256 = "1k5zig2n6wzfyv6pc8dpas2862mxjyxxza00m31myrfw5i1a1h6m"; + name = "kiconthemes-5.24.0.tar.xz"; + }; + }; + kidletime = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kidletime-5.24.0.tar.xz"; + sha256 = "09jsj0pj27h93nr8v46savs6b93h8frydinfr7wlijkvpsl02jb4"; + name = "kidletime-5.24.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kimageformats-5.24.0.tar.xz"; + sha256 = "12mhgckmhnvcnm8k7mk15mipxrnm7i9ip7ykbjh8nxjiwyk1pmwc"; + name = "kimageformats-5.24.0.tar.xz"; + }; + }; + kinit = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kinit-5.24.0.tar.xz"; + sha256 = "1i7l6gid5hrrfglw1c461gpjg51dwz7cl4lx7ll8vz2ha8mz4d3n"; + name = "kinit-5.24.0.tar.xz"; + }; + }; + kio = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kio-5.24.0.tar.xz"; + sha256 = "0zncj9yf8zaylazlwvirylpk9vki3j889b1x2s0aav54vvj7vdi5"; + name = "kio-5.24.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kitemmodels-5.24.0.tar.xz"; + sha256 = "1s1p4nw1pqdzbdwvjnka17p9avf00wadr437p4f96md1lvh3sh69"; + name = "kitemmodels-5.24.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kitemviews-5.24.0.tar.xz"; + sha256 = "0y3fx9hk1x27arrmwfzq783a44cs7p8dpmhxrwzh0di4mwa8jafw"; + name = "kitemviews-5.24.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kjobwidgets-5.24.0.tar.xz"; + sha256 = "1mcvrz66xcqjgbp08zpqsf943cm462wbqm5gh719p9s25hx8hwrc"; + name = "kjobwidgets-5.24.0.tar.xz"; + }; + }; + kjs = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kjs-5.24.0.tar.xz"; + sha256 = "1qd5sdfrdg7id0g5mwf3ijwlfvh3g36kwnckw6kwns1nf4q6gwlz"; + name = "kjs-5.24.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kjsembed-5.24.0.tar.xz"; + sha256 = "1nx8ch8mzd1jyx8pd46364ij0bsbsclbipbgr6jm9aak3n13b0nw"; + name = "kjsembed-5.24.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kmediaplayer-5.24.0.tar.xz"; + sha256 = "147xrffkvkyv3h8ighc1vlwksysfrqc0g55k8zrd72l6r0kjjh0p"; + name = "kmediaplayer-5.24.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/knewstuff-5.24.0.tar.xz"; + sha256 = "0xdv3wh3100vzsx8p2zihy1dvh0wzfmrjkjq71v8igwz5d291zsj"; + name = "knewstuff-5.24.0.tar.xz"; + }; + }; + knotifications = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/knotifications-5.24.0.tar.xz"; + sha256 = "0qryp41phnpx4r9wa6rfhmnzy7nxl0ijnyrafadf2n2xb53ipkpa"; + name = "knotifications-5.24.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/knotifyconfig-5.24.0.tar.xz"; + sha256 = "1dij841fnqia4p44x2wnpdvl8cn3nkj833y0fah50fmipjc8r70b"; + name = "knotifyconfig-5.24.0.tar.xz"; + }; + }; + kpackage = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kpackage-5.24.0.tar.xz"; + sha256 = "03aqzkpqz3c1v4qgwfbs3ncdbapiyg7psrkhxqv3z48rklavk1ri"; + name = "kpackage-5.24.0.tar.xz"; + }; + }; + kparts = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kparts-5.24.0.tar.xz"; + sha256 = "0z7qr93aq02i7g7cxgypx2rzlnsvbsx9cjblb0ijmad1nb8w3mix"; + name = "kparts-5.24.0.tar.xz"; + }; + }; + kpeople = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kpeople-5.24.0.tar.xz"; + sha256 = "0iknzkj23y927xh24kw5sjxyirhy6pkmfcmmgwzd78rba8a54qp2"; + name = "kpeople-5.24.0.tar.xz"; + }; + }; + kplotting = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kplotting-5.24.0.tar.xz"; + sha256 = "0gpypq9kh4b5s6dc7py3m117k3nbxczsfkxgxd9zxvr35kig7ya2"; + name = "kplotting-5.24.0.tar.xz"; + }; + }; + kpty = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kpty-5.24.0.tar.xz"; + sha256 = "1ybvdzqpa53kkki9p5da0ff9x3c63rmksk7865wqwlgy8apzi2fs"; + name = "kpty-5.24.0.tar.xz"; + }; + }; + kross = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/portingAids/kross-5.24.0.tar.xz"; + sha256 = "0f29dpmfcj173vqnmrbpvdmfmzzbfsds1lbl546qfx9a5acdpf2p"; + name = "kross-5.24.0.tar.xz"; + }; + }; + krunner = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/krunner-5.24.0.tar.xz"; + sha256 = "0ff87ijjd47jxf6zw2ggqgngnbyx1rj59wdfgy5wbi3acws6bafl"; + name = "krunner-5.24.0.tar.xz"; + }; + }; + kservice = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kservice-5.24.0.tar.xz"; + sha256 = "0w0nsg64d6xhgijr2vh0j5p544qi0q55jpqa9v9mv956zrrdssdk"; + name = "kservice-5.24.0.tar.xz"; + }; + }; + ktexteditor = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/ktexteditor-5.24.0.tar.xz"; + sha256 = "1ykj1kvm7k1vxb1w235d5hp2swwdqjyp2y4c3pxbvkn999h9x5q5"; + name = "ktexteditor-5.24.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/ktextwidgets-5.24.0.tar.xz"; + sha256 = "1q10xav2gkii6s3m31c9xvxf1988l7k2lpib6pyhgsidflmwjm02"; + name = "ktextwidgets-5.24.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kunitconversion-5.24.0.tar.xz"; + sha256 = "03dfjn4lm6sl2zcdrvw0b9irzvkyc2w2j5xixag5j8nw373742h8"; + name = "kunitconversion-5.24.0.tar.xz"; + }; + }; + kwallet = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwallet-5.24.0.tar.xz"; + sha256 = "0zad5h4vsvcl2xv3vxsjwh42b71xbp6x6rj8cvmw8szr2rzz9gsx"; + name = "kwallet-5.24.0.tar.xz"; + }; + }; + kwayland = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwayland-5.24.0.tar.xz"; + sha256 = "1h5anbqrxcl1s8kx1l53vcsfr8ifamcjqd47dk8a7lwr1ga6myq2"; + name = "kwayland-5.24.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwidgetsaddons-5.24.0.tar.xz"; + sha256 = "1kppx0ppfhnb6q6sijs2dffyar86wkkx8miqavsjsgw1l2wiymcx"; + name = "kwidgetsaddons-5.24.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kwindowsystem-5.24.0.tar.xz"; + sha256 = "0w5ym8msl80v3q65253pdpj9f1fmb658rnndlbkrgpmm1rv1n6dz"; + name = "kwindowsystem-5.24.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kxmlgui-5.24.0.tar.xz"; + sha256 = "1qhixldhhcbklmrpjh67440h1rrzqy70h57hw6ialjdsr3pl6ihp"; + name = "kxmlgui-5.24.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/kxmlrpcclient-5.24.0.tar.xz"; + sha256 = "06ap6ipzqimz1rfrcr7z8zc7idy7sg4a97dws7h52i34ms7jqnc8"; + name = "kxmlrpcclient-5.24.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/modemmanager-qt-5.24.0.tar.xz"; + sha256 = "0khz5bf84xxa8aqpzwb6x839xx6dbiadwqhyj7cvgha65fh2xinh"; + name = "modemmanager-qt-5.24.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/networkmanager-qt-5.24.0.tar.xz"; + sha256 = "11wy0ds0hqbba900ggkcxjfqc9n65xlzc3h1zv9433nn5d75v6fy"; + name = "networkmanager-qt-5.24.0.tar.xz"; + }; + }; + oxygen-icons5 = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/oxygen-icons5-5.24.0.tar.xz"; + sha256 = "1c7spjbzk04725vv0ly7vmyvwa96mfa5ki2pm146ld4888a896wm"; + name = "oxygen-icons5-5.24.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/plasma-framework-5.24.0.tar.xz"; + sha256 = "0981vm00541dzihlr1fsax05biwp2ddpwjrmvnfysx5jagdc65cb"; + name = "plasma-framework-5.24.0.tar.xz"; + }; + }; + solid = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/solid-5.24.0.tar.xz"; + sha256 = "00wvsxcnvhdx7ijzpcz5wny2ypkxr1drdpr4yvawgpwa678l1107"; + name = "solid-5.24.0.tar.xz"; + }; + }; + sonnet = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/sonnet-5.24.0.tar.xz"; + sha256 = "152xz7fb1iwhb5w1n4xqvc648iaxi0inrl4kavxcsir61das1xyl"; + name = "sonnet-5.24.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.24.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.24/threadweaver-5.24.0.tar.xz"; + sha256 = "02g60zr9cc4bg1p90giich4n0qvqaiakz0y94qrnyj9f7fg0yksl"; + name = "threadweaver-5.24.0.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix b/pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix rename to pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ae9d92c908e..7cc039b6a94 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16142,7 +16142,7 @@ in kde5 = let - frameworks = import ../desktops/kde-5/frameworks-5.22 { inherit pkgs; }; + frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma-5.7 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: From dde259dfb5a0787b28e260da7575079bbabad6c3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Jul 2016 20:56:50 +0200 Subject: [PATCH 127/508] linux: Add patch to fix CVE-2016-5829 (#16824) Fixed for all available 4.x series kernels. From CVE-2016-5829: Multiple heap-based buffer overflows in the hiddev_ioctl_usage function in drivers/hid/usbhid/hiddev.c in the Linux kernel through 4.6.3 allow local users to cause a denial of service or possibly have unspecified other impact via a crafted (1) HIDIOCGUSAGES or (2) HIDIOCSUSAGES ioctl call. --- pkgs/os-specific/linux/kernel/patches.nix | 10 +++++++++- pkgs/top-level/all-packages.nix | 23 +++++++++++++++++++---- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index a5de48298e1..4f8d57acc17 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgs }: +{ stdenv, fetchurl, fetchpatch, pkgs }: let @@ -140,4 +140,12 @@ rec { { name = "qat_common_Makefile"; patch = ./qat_common_Makefile.patch; }; + + hiddev_CVE_2016_5829 = + { name = "hiddev_CVE_2016_5829"; + patch = fetchpatch { + url = "https://sources.debian.net/data/main/l/linux/4.6.3-1/debian/patches/bugfix/all/HID-hiddev-validate-num_values-for-HIDIOCGUSAGES-HID.patch"; + sha256 = "14rm1qr87p7a5prz8g5fwbpxzdp3ighj095x8rvhm8csm20wspyy"; + }; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 38d7250d280..4d40567f262 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10938,7 +10938,10 @@ in }; linux_4_1 = callPackage ../os-specific/linux/kernel/linux-4.1.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10947,7 +10950,11 @@ in }; linux_4_4 = callPackage ../os-specific/linux/kernel/linux-4.4.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.qat_common_Makefile + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10956,7 +10963,11 @@ in }; linux_4_5 = callPackage ../os-specific/linux/kernel/linux-4.5.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.qat_common_Makefile + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10965,7 +10976,11 @@ in }; linux_4_6 = callPackage ../os-specific/linux/kernel/linux-4.6.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile ] + kernelPatches = + [ kernelPatches.bridge_stp_helper + kernelPatches.qat_common_Makefile + kernelPatches.hiddev_CVE_2016_5829 + ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill From 6e21246dc471a01fe8e8107292b5067234d20595 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 6 Jul 2016 22:53:25 +0300 Subject: [PATCH 128/508] plymouth: 0.9.0 -> 0.9.2 Use system-wide directories for various resources. --- pkgs/os-specific/linux/plymouth/default.nix | 40 ++++++++++++++------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/pkgs/os-specific/linux/plymouth/default.nix b/pkgs/os-specific/linux/plymouth/default.nix index 00d330ca955..b1b1a4649ba 100644 --- a/pkgs/os-specific/linux/plymouth/default.nix +++ b/pkgs/os-specific/linux/plymouth/default.nix @@ -1,27 +1,32 @@ -{ stdenv, fetchurl, autoreconfHook, cairo, docbook_xsl, gtk -, libdrm, libpng, libxslt, makeWrapper, pango, pkgconfig, udev +{ stdenv, fetchurl, autoreconfHook, pkgconfig, libxslt, docbook_xsl +, gtk3, udev, systemd }: stdenv.mkDerivation rec { name = "plymouth-${version}"; - version = "0.9.0"; + version = "0.9.2"; src = fetchurl { url = "http://www.freedesktop.org/software/plymouth/releases/${name}.tar.bz2"; - sha256 = "0kfdwv179brg390ma003pmdqfvqlbybqiyp9fxrxx0wa19sjxqnk"; + sha256 = "0zympsgy5bbfl2ag5nc1jxlshpx8r1s1yyjisanpx76g88hfh31g"; }; - buildInputs = [ - autoreconfHook cairo docbook_xsl gtk libdrm libpng - libxslt makeWrapper pango pkgconfig udev + nativeBuildInputs = [ + autoreconfHook pkgconfig libxslt docbook_xsl ]; - prePatch = '' - sed -e "s#\$(\$PKG_CONFIG --variable=systemdsystemunitdir systemd)#$out/etc/systemd/system#g" \ - -i configure.ac - ''; + buildInputs = [ + gtk3 udev systemd + ]; postPatch = '' + sed -i \ + -e "s#\$(\$PKG_CONFIG --variable=systemdsystemunitdir systemd)#$out/etc/systemd/system#g" \ + -e "s#plymouthplugindir=.*#plymouthplugindir=/etc/plymouth/plugins/#" \ + -e "s#plymouththemedir=.*#plymouththemedir=/etc/plymouth/themes#" \ + -e "s#plymouthpolicydir=.*#plymouthpolicydir=/etc/plymouth/#" \ + configure.ac + configureFlags=" --prefix=$out --bindir=$out/bin @@ -29,15 +34,24 @@ stdenv.mkDerivation rec { --exec-prefix=$out --libdir=$out/lib --libexecdir=$out/lib - --sysconfdir=$out/etc + --sysconfdir=/etc --localstatedir=/var - --with-log-viewer + --with-logo=/etc/plymouth/logo.png + --with-background-color=0x000000 + --with-background-start-color-stop=0x000000 + --with-background-end-color-stop=0x000000 + --with-release-file=/etc/os-release --without-system-root-install --without-rhgb-compat-link --enable-tracing --enable-systemd-integration --enable-pango + --enable-gdm-transition --enable-gtk" + + installFlags=" + plymouthd_defaultsdir=$out/share/plymouth + plymouthd_confdir=$out/etc/plymouth" ''; meta = with stdenv.lib; { From 90ad879753c476154e65667f8dec12cf5a6c89d4 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 6 Jul 2016 22:54:08 +0300 Subject: [PATCH 129/508] nixos stage-1: unconditionally mount /dev/pts --- nixos/modules/system/boot/initrd-ssh.nix | 3 --- nixos/modules/system/boot/stage-1-init.sh | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/nixos/modules/system/boot/initrd-ssh.nix b/nixos/modules/system/boot/initrd-ssh.nix index 3e2805a8c34..d0a4ce51148 100644 --- a/nixos/modules/system/boot/initrd-ssh.nix +++ b/nixos/modules/system/boot/initrd-ssh.nix @@ -100,9 +100,6 @@ in ''; boot.initrd.network.postCommands = '' - mkdir /dev/pts - mount -t devpts devpts /dev/pts - echo '${cfg.shell}' > /etc/shells echo 'root:x:0:0:root:/root:${cfg.shell}' > /etc/passwd echo 'passwd: files' > /etc/nsswitch.conf diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index 9bffcd31b9b..055ad2e3e84 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -70,6 +70,8 @@ mount -t sysfs sysfs /sys mount -t devtmpfs -o "size=@devSize@" devtmpfs /dev mkdir -p /run mount -t tmpfs -o "mode=0755,size=@runSize@" tmpfs /run +mkdir /dev/pts +mount -t devpts devpts /dev/pts # Log the script output to /dev/kmsg or /run/log/stage-1-init.log. mkdir -p /tmp From bd0ab027c1c83eb7c26ed50bcf0d77da0c31a1d8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 6 Jul 2016 22:56:21 +0300 Subject: [PATCH 130/508] nixos stage-1: recursively process binaries and libraries --- nixos/modules/system/boot/stage-1.nix | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index 5e6554324ca..d031b8a2751 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -81,9 +81,9 @@ let # Copy ld manually since it isn't detected correctly cp -pv ${pkgs.glibc.out}/lib/ld*.so.? $out/lib - # Copy all of the needed libraries for the binaries - for BIN in $(find $out/{bin,sbin} -type f); do - echo "Copying libs for bin $BIN" + # Copy all of the needed libraries + find $out/bin $out/lib -type f | while read BIN; do + echo "Copying libs for executable $BIN" LDD="$(ldd $BIN)" || continue LIBS="$(echo "$LDD" | awk '{print $3}' | sed '/^$/d')" for LIB in $LIBS; do @@ -104,13 +104,17 @@ let stripDirs "lib bin" "-s" # Run patchelf to make the programs refer to the copied libraries. - for i in $out/bin/* $out/lib/*; do if ! test -L $i; then nuke-refs -e $out $i; fi; done + find $out/bin $out/lib -type f | while read i; do + if ! test -L $i; then + nuke-refs -e $out $i + fi + done - for i in $out/bin/*; do - if ! test -L $i; then - echo "patching $i..." - patchelf --set-interpreter $out/lib/ld*.so.? --set-rpath $out/lib $i || true - fi + find $out/bin -type f | while read i; do + if ! test -L $i; then + echo "patching $i..." + patchelf --set-interpreter $out/lib/ld*.so.? --set-rpath $out/lib $i || true + fi done # Make sure that the patchelf'ed binaries still work. From e02b5ace0b70341647ac464c1b19c2da14068147 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 6 Jul 2016 22:56:43 +0300 Subject: [PATCH 131/508] nixos stage-1: guard udevRules from extra references --- nixos/modules/system/boot/stage-1.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index d031b8a2751..54c3a50c2e6 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -142,6 +142,7 @@ let udevRules = pkgs.stdenv.mkDerivation { name = "udev-rules"; + allowedReferences = [ extraUtils ]; buildCommand = '' mkdir -p $out From 3508918da2e9e18640aa12214a54940f9aa70f49 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 6 Jul 2016 22:56:59 +0300 Subject: [PATCH 132/508] nixos stage-1: replace udevadm in udevRules --- nixos/modules/system/boot/stage-1.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index 54c3a50c2e6..56a9c38b8f2 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -165,7 +165,8 @@ let --replace /sbin/mdadm ${extraUtils}/bin/mdadm \ --replace /bin/sh ${extraUtils}/bin/sh \ --replace /usr/bin/readlink ${extraUtils}/bin/readlink \ - --replace /usr/bin/basename ${extraUtils}/bin/basename + --replace /usr/bin/basename ${extraUtils}/bin/basename \ + --replace ${udev}/bin/udevadm ${extraUtils}/bin/udevadm done # Work around a bug in QEMU, which doesn't implement the "READ From d3e3e643cbcaf423f9595abd0e791cda51dfdc07 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 6 Jul 2016 22:57:14 +0300 Subject: [PATCH 133/508] nixos stage-1: set extraUtils variable --- nixos/modules/system/boot/stage-1-init.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index 055ad2e3e84..d4277ebd80c 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -3,6 +3,7 @@ targetRoot=/mnt-root console=tty1 +extraUtils="@extraUtils@" export LD_LIBRARY_PATH=@extraUtils@/lib export PATH=@extraUtils@/bin ln -s @extraUtils@/bin /bin From a2d4235fe13292c7dce2e71963d0ed0f9c204436 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 6 Jul 2016 23:00:44 +0300 Subject: [PATCH 134/508] plymouth service: init --- nixos/modules/module-list.nix | 1 + nixos/modules/system/boot/plymouth.nix | 129 +++++++++++++++++++++++++ 2 files changed, 130 insertions(+) create mode 100644 nixos/modules/system/boot/plymouth.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index be72c0ef29c..33ce19dd652 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -522,6 +522,7 @@ ./system/boot/luksroot.nix ./system/boot/modprobe.nix ./system/boot/networkd.nix + ./system/boot/plymouth.nix ./system/boot/resolved.nix ./system/boot/shutdown.nix ./system/boot/stage-1.nix diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix new file mode 100644 index 00000000000..82c1032937c --- /dev/null +++ b/nixos/modules/system/boot/plymouth.nix @@ -0,0 +1,129 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + inherit (pkgs) plymouth; + + cfg = config.boot.plymouth; + + themesEnv = pkgs.buildEnv { + name = "plymouth-themes"; + paths = [ plymouth ] ++ cfg.themePackages; + }; + + configFile = pkgs.writeText "plymouthd.conf" '' + [Daemon] + ShowDelay=0 + Theme=${cfg.theme} + ''; + +in + +{ + + options = { + + boot.plymouth = { + + enable = mkEnableOption "Plymouth boot splash screen"; + + themePackages = mkOption { + default = []; + type = types.listOf types.package; + description = '' + Extra theme packages for plymouth. + ''; + }; + + theme = mkOption { + default = "fade-in"; + type = types.str; + description = '' + Splash screen theme. + ''; + }; + + logo = mkOption { + type = types.path; + default = pkgs.fetchurl { + url = "https://nixos.org/logo/nixos-hires.png"; + sha256 = "1ivzgd7iz0i06y36p8m5w48fd8pjqwxhdaavc0pxs7w1g7mcy5si"; + }; + description = '' + Logo which is displayed on the splash screen. + ''; + }; + + }; + + }; + + config = mkIf cfg.enable { + + boot.kernelParams = [ "splash" ]; + + # To be discoverable by systemd. + environment.systemPackages = [ plymouth ]; + + environment.etc."plymouth/plymouthd.conf".source = configFile; + environment.etc."plymouth/plymouthd.defaults".source = "${plymouth}/share/plymouth/plymouth.defaults"; + environment.etc."plymouth/logo.png".source = cfg.logo; + environment.etc."plymouth/themes".source = "${themesEnv}/share/plymouth/themes"; + # XXX: Needed because we supply a different set of plugins in initrd. + environment.etc."plymouth/plugins".source = "${plymouth}/lib/plymouth"; + + systemd.packages = [ plymouth ]; + + systemd.services.plymouth-kexec.wantedBy = [ "kexec.target" ]; + systemd.services.plymouth-halt.wantedBy = [ "halt.target" ]; + systemd.services.plymouth-quit = { + wantedBy = [ "multi-user.target" ]; + after = [ "display-manager.service" "multi-user.target" ]; + }; + systemd.services.plymouth-poweroff.wantedBy = [ "poweroff.target" ]; + systemd.services.plymouth-reboot.wantedBy = [ "reboot.target" ]; + systemd.services.plymouth-read-write.wantedBy = [ "sysinit.target" ]; + + boot.initrd.extraUtilsCommands = '' + copy_bin_and_libs ${pkgs.plymouth}/bin/plymouthd + copy_bin_and_libs ${pkgs.plymouth}/bin/plymouth + + moduleName="$(sed -n 's,ModuleName *= *,,p' ${themesEnv}/share/plymouth/themes/${cfg.theme}/${cfg.theme}.plymouth)" + + mkdir -p $out/lib/plymouth/renderers + cp ${plymouth}/lib/plymouth/{text,details,$moduleName}.so $out/lib/plymouth + cp ${plymouth}/lib/plymouth/renderers/{drm,frame-buffer}.so $out/lib/plymouth/renderers + + mkdir -p $out/share/plymouth/themes + cp ${plymouth}/share/plymouth/plymouthd.defaults $out/share/plymouth + cp -r ${themesEnv}/share/plymouth/themes/{text,details,${cfg.theme}} $out/share/plymouth/themes + cp ${cfg.logo} $out/share/plymouth/logo.png + ''; + + boot.initrd.extraUtilsCommandsTest = '' + $out/bin/plymouthd --help >/dev/null + $out/bin/plymouth --help >/dev/null + ''; + + boot.initrd.extraUdevRulesCommands = '' + cp ${config.systemd.package}/lib/udev/rules.d/{70-uaccess,71-seat}.rules $out + sed -i '/loginctl/d' $out/71-seat.rules + ''; + + boot.initrd.preLVMCommands = mkAfter '' + mkdir -p /etc/plymouth + ln -s ${configFile} /etc/plymouth/plymouthd.conf + ln -s $extraUtils/share/plymouth/plymouthd.defaults /etc/plymouth/plymouthd.defaults + ln -s $extraUtils/share/plymouth/logo.png /etc/plymouth/logo.png + ln -s $extraUtils/share/plymouth/themes /etc/plymouth/themes + ln -s $extraUtils/lib/plymouth /etc/plymouth/plugins + + plymouthd --mode=boot --pid-file=/run/plymouth/pid --attach-to-session + plymouth --show-splash + ''; + + }; + +} From c69c76ca7efecba24aba555c2a03f933997d1fd5 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 7 Jul 2016 00:44:02 +0300 Subject: [PATCH 135/508] nixos stage-1: try to quit plymouth if started on failure --- nixos/modules/system/boot/luksroot.nix | 26 +++++++++++++++++++---- nixos/modules/system/boot/stage-1-init.sh | 3 +++ 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix index 8dad09c8920..15881b6d371 100644 --- a/nixos/modules/system/boot/luksroot.nix +++ b/nixos/modules/system/boot/luksroot.nix @@ -36,7 +36,7 @@ let ${optionalString (header != null) "--header=${header}"} \ ${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"} \ > /.luksopen_args - cryptsetup-askpass + get_password "Enter LUKS Passphrase" cryptsetup-askpass rm /.luksopen_args } @@ -78,9 +78,7 @@ let for try in $(seq 3); do ${optionalString yubikey.twoFactor '' - echo -n "Enter two-factor passphrase: " - read -s k_user - echo + k_user="$(get_password "Enter two-factor passphrase" cat)" ''} if [ ! -z "$k_user" ]; then @@ -463,6 +461,26 @@ in ''} ''; + boot.initrd.preDeviceCommands = '' + get_password() { + local ret + local reply + local tty_stat + + tty_stat="$(stty -g)" + stty -echo + for i in `seq 1 3`; do + echo -n "$1: " + read reply + echo "$reply" | "$2" + if [ "$?" = "0" ]; then + break + fi + done + stty "$tty_stat" + } + ''; + boot.initrd.preLVMCommands = concatStrings (mapAttrsToList openCommand preLVM); boot.initrd.postDeviceCommands = concatStrings (mapAttrsToList openCommand postLVM); diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index d4277ebd80c..6b1bf0b3e02 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -14,6 +14,9 @@ export LVM_SUPPRESS_FD_WARNINGS=true fail() { if [ -n "$panicOnFail" ]; then exit 1; fi + # If we have a splash screen started, quit it. + command -v plymouth >/dev/null 2>&1 && plymouth quit + # If starting stage 2 failed, allow the user to repair the problem # in an interactive shell. cat < Date: Thu, 7 Jul 2016 02:10:19 +0300 Subject: [PATCH 136/508] gdm: build with plymouth support --- pkgs/desktops/gnome-3/3.18/core/gdm/default.nix | 5 +++-- pkgs/desktops/gnome-3/3.20/core/gdm/default.nix | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix index 0d21bf54666..588c6bc639b 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus , intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook -, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }: +, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection, plymouth }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; @@ -13,12 +13,13 @@ stdenv.mkDerivation rec { configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" "--with-systemd=yes" + "--with-plymouth=yes" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ]; buildInputs = [ pkgconfig glib itstool libxml2 intltool autoreconfHook accountsservice gnome3.dconf systemd gobjectIntrospection libX11 gtk - libcanberra_gtk3 pam libtool ]; + libcanberra_gtk3 pam libtool plymouth ]; #enableParallelBuilding = true; # problems compiling diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix index 4b951ce5ade..25a44d90a5b 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus , intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook -, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }: +, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection, plymouth }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; @@ -13,12 +13,13 @@ stdenv.mkDerivation rec { configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" "--with-systemd=yes" + "--with-plymouth=yes" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ]; buildInputs = [ pkgconfig glib itstool libxml2 intltool autoreconfHook accountsservice gnome3.dconf systemd gobjectIntrospection libX11 gtk - libcanberra_gtk3 pam libtool ]; + libcanberra_gtk3 pam libtool plymouth ]; #enableParallelBuilding = true; # problems compiling From f56a319e3ef1518274026d3350dfdca956a7ac1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 12 Jul 2016 21:58:16 +0200 Subject: [PATCH 137/508] ncurses: revert to 5.9 on Darwin (only) I don't want to investigate why it won't compile. http://hydra.nixos.org/build/37537876/nixlog/1/raw --- pkgs/development/libraries/ncurses/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix index 83864751409..7133634f2eb 100644 --- a/pkgs/development/libraries/ncurses/default.nix +++ b/pkgs/development/libraries/ncurses/default.nix @@ -4,17 +4,21 @@ , unicode ? true , gpm - -# Extra Options -, abiVersion ? "6" }: - +let + inherit (stdenv) isDarwin; + abiVersion = if isDarwin then "5" else "6"; + version = if isDarwin then "5.9" else "6.0"; + sha256 = if isDarwin + then "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh" + else "0q3jck7lna77z5r42f13c4xglc7azd19pxfrjrpgp2yf615w4lgm"; +in stdenv.mkDerivation rec { - name = "ncurses-6.0"; + name = "ncurses-${version}"; src = fetchurl { url = "mirror://gnu/ncurses/${name}.tar.gz"; - sha256 = "0q3jck7lna77z5r42f13c4xglc7azd19pxfrjrpgp2yf615w4lgm"; + inherit sha256; }; patches = [ ./clang.patch ]; From d3d7f43f762062c03aa083aeaa7cf868246e4e51 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 12 Jul 2016 11:52:33 -0500 Subject: [PATCH 138/508] sysstat: Create systemd service for historical sar data Every period, sa1 collects and stores data. Every 24 hours, sa2 aggregates the previous day's data in to a report. Timers and unit configurations were lifted from Fedora's default units. --- nixos/modules/services/monitoring/sysstat.nix | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 nixos/modules/services/monitoring/sysstat.nix diff --git a/nixos/modules/services/monitoring/sysstat.nix b/nixos/modules/services/monitoring/sysstat.nix new file mode 100644 index 00000000000..d668faa53cc --- /dev/null +++ b/nixos/modules/services/monitoring/sysstat.nix @@ -0,0 +1,80 @@ +{ config, lib, pkgs, ... }: +with lib; +let + cfg = config.services.sysstat; +in { + options = { + services.sysstat = { + enable = mkOption { + type = types.bool; + default = false; + description = '' + Whether to enable sar system activity collection. + ''; + }; + + collect-frequency = mkOption { + default = "*:00/10"; + description = '' + OnCalendar specification for sysstat-collect + ''; + }; + + collect-args = mkOption { + default = "1 1"; + description = '' + Arguments to pass sa1 when collecting statistics + ''; + }; + }; + }; + + config = mkIf cfg.enable { + systemd.services.sysstat = { + description = "Resets System Activity Logs"; + wantedBy = [ "multi-user.target" ]; + preStart = "test -d /var/log/sa || mkdir -p /var/log/sa"; + + serviceConfig = { + User = "root"; + RemainAfterExit = true; + Type = "oneshot"; + ExecStart = "${pkgs.sysstat}/lib/sa/sa1 --boot"; + }; + }; + + systemd.services.sysstat-collect = { + description = "system activity accounting tool"; + unitConfig.Documentation = "man:sa1(8)"; + + serviceConfig = { + Type = "oneshot"; + User = "root"; + ExecStart = "${pkgs.sysstat}/lib/sa/sa1 ${cfg.collect-args}"; + }; + }; + + systemd.timers.sysstat-collect = { + description = "Run system activity accounting tool on a regular basis"; + wantedBy = [ "timers.target" ]; + timerConfig.OnCalendar = cfg.collect-frequency; + }; + + systemd.services.sysstat-summary = { + description = "Generate a daily summary of process accounting"; + unitConfig.Documentation = "man:sa2(8)"; + + serviceConfig = { + Type = "oneshot"; + User = "root"; + ExecStart = "${pkgs.sysstat}/lib/sa/sa2 -A"; + }; + }; + + systemd.timers.sysstat-summary = { + description = "Generate summary of yesterday's process accounting"; + wantedBy = [ "timers.target" ]; + timerConfig.OnCalendar = "00:07:00"; + }; + }; +} From f76e5ab0cf0aa28e437a6b1c4aef4a85d2901b73 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Mon, 27 Jun 2016 21:29:12 +0000 Subject: [PATCH 139/508] travis: split build into matrix of 3 This adds a 3rd matrix to be built by Travis. The new matrix "checks" the NixPkgs evaluation so the other 2 can save their resources for building. Hopefully, this will lead to less "out of space" errors that seem to be happening with Travis. Also adds folding. --- .travis.yml | 16 ++- maintainers/scripts/travis-nox-review-pr.sh | 115 +++++++++++--------- 2 files changed, 75 insertions(+), 56 deletions(-) diff --git a/.travis.yml b/.travis.yml index f29f71aa19f..e8994ca7b2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,20 @@ matrix: - allow_failures: - - os: osx include: - os: linux language: generic sudo: required dist: trusty + script: + - ./maintainers/scripts/travis-nox-review-pr.sh verify + - ./maintainers/scripts/travis-nox-review-pr.sh check + - ./maintainers/scripts/travis-nox-review-pr.sh tarball + - os: linux + language: generic + sudo: required + dist: trusty + script: ./maintainers/scripts/travis-nox-review-pr.sh pr - os: osx language: generic osx_image: xcode7.3 -before_install: ./maintainers/scripts/travis-nox-review-pr.sh nix -install: ./maintainers/scripts/travis-nox-review-pr.sh nox -script: ./maintainers/scripts/travis-nox-review-pr.sh build + script: ./maintainers/scripts/travis-nox-review-pr.sh pr +install: ./maintainers/scripts/travis-nox-review-pr.sh install diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 092fc0cd9d0..025b27528e9 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -1,58 +1,71 @@ #! /usr/bin/env bash set -e +# This should make Curl silent +# but download-from-binary-cache doesn't respect export NIX_CURL_FLAGS=-sS -if [[ $1 == nix ]]; then - echo "=== Installing Nix..." - # Install Nix - bash <(curl -sS https://nixos.org/nix/install) +if [ -d $HOME/.nix-profile ]; then source $HOME/.nix-profile/etc/profile.d/nix.sh - - # Make sure we can use hydra's binary cache - sudo mkdir /etc/nix - sudo sh -c 'echo "build-max-jobs = 4" > /etc/nix/nix.conf' - - # Verify evaluation - echo "=== Verifying that nixpkgs evaluates..." - nix-env -f. -qa --json >/dev/null -elif [[ $1 == nox ]]; then - source $HOME/.nix-profile/etc/profile.d/nix.sh - echo "=== Installing nox..." - nix-build -A nox '' --show-trace -elif [[ $1 == build ]]; then - source $HOME/.nix-profile/etc/profile.d/nix.sh - - if [[ $TRAVIS_OS_NAME == "osx" ]]; then - echo "Skipping NixOS things on darwin" - else - # Nix builds in /tmp and we need exec support - sudo mount -o remount,exec /run - sudo mount -o remount,exec /run/user - sudo mount - - echo "=== Checking NixOS options" - nix-build nixos/release.nix -A options --show-trace - - echo "=== Checking tarball creation" - nix-build pkgs/top-level/release.nix -A tarball --show-trace - fi - - if [[ $TRAVIS_PULL_REQUEST == false ]]; then - echo "=== Not a pull request" - else - echo "=== Checking PR" - - if ! nix-shell -p nox --run "nox-review pr ${TRAVIS_PULL_REQUEST}"; then - if sudo dmesg | egrep 'Out of memory|Killed process' > /tmp/oom-log; then - echo "=== The build failed due to running out of memory:" - cat /tmp/oom-log - echo "=== Please disregard the result of this Travis build." - fi - exit 1 - fi - fi -else - echo "$0: Unknown option $1" >&2 - false fi + +while test -n "$1"; do + + # tell Travis to use folding + echo -en "travis_fold:start:$1\r" + + case $1 in + + install) + echo "=== Installing Nix..." + + curl -sS https://nixos.org/nix/install | sh + + # Make sure we can use hydra's binary cache + sudo mkdir /etc/nix + echo "build-max-jobs = 4" | sudo tee /etc/nix/nix.conf > /dev/null + + # Make sure we can execute within /tmp in Linux + if [ "$TRAVIS_OS_NAME" == "linux" ]; then + sudo mount -o remount,exec /run + sudo mount -o remount,exec /run/user + sudo mount > /dev/null + fi + ;; + + verify) + echo "=== Verifying that nixpkgs evaluates..." + + nix-env --file $TRAVIS_BUILD_DIR --query --available --json > /dev/null + ;; + + check) + echo "=== Checking NixOS options" + + nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr options --show-trace + ;; + + tarball) + echo "=== Checking tarball creation" + + nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr tarball --show-trace + ;; + + pr) + if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then + echo "=== No pull request found" + else + echo "=== Building pull request #$TRAVIS_PULL_REQUEST" + + nix-shell --packages nox git --run "nox-review pr $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR + fi + ;; + + *) + echo "Skipping unknown option $1" + ;; + esac + + echo -en "travis_fold:end:$1\r" + shift +done From 3c0fdefd8470878242d8c119952918e171be590c Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Wed, 29 Jun 2016 21:04:44 +0000 Subject: [PATCH 140/508] travis: only fetch top commit This will make travis only fetch the top level commit instead of fetching the top 50 (default). Nox should be able fetch other commits on an as-needed basis. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index e8994ca7b2e..a70bf4a4408 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,3 +18,5 @@ matrix: osx_image: xcode7.3 script: ./maintainers/scripts/travis-nox-review-pr.sh pr install: ./maintainers/scripts/travis-nox-review-pr.sh install +git: + depth: 1 From 95b28da35365c51ff1673baca9469b7f74a5bcf0 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 30 Jun 2016 21:23:55 +0000 Subject: [PATCH 141/508] travis: use community supported language Switch to the "community supported" Nix version of Travis. --- .travis.yml | 8 ++----- maintainers/scripts/travis-nox-review-pr.sh | 25 --------------------- 2 files changed, 2 insertions(+), 31 deletions(-) diff --git a/.travis.yml b/.travis.yml index a70bf4a4408..3e2a506c3b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,22 +1,18 @@ +language: nix matrix: include: - os: linux - language: generic - sudo: required - dist: trusty + sudo: false script: - ./maintainers/scripts/travis-nox-review-pr.sh verify - ./maintainers/scripts/travis-nox-review-pr.sh check - ./maintainers/scripts/travis-nox-review-pr.sh tarball - os: linux - language: generic sudo: required dist: trusty script: ./maintainers/scripts/travis-nox-review-pr.sh pr - os: osx - language: generic osx_image: xcode7.3 script: ./maintainers/scripts/travis-nox-review-pr.sh pr -install: ./maintainers/scripts/travis-nox-review-pr.sh install git: depth: 1 diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 025b27528e9..791a50b0ae8 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -1,14 +1,6 @@ #! /usr/bin/env bash set -e -# This should make Curl silent -# but download-from-binary-cache doesn't respect -export NIX_CURL_FLAGS=-sS - -if [ -d $HOME/.nix-profile ]; then - source $HOME/.nix-profile/etc/profile.d/nix.sh -fi - while test -n "$1"; do # tell Travis to use folding @@ -16,23 +8,6 @@ while test -n "$1"; do case $1 in - install) - echo "=== Installing Nix..." - - curl -sS https://nixos.org/nix/install | sh - - # Make sure we can use hydra's binary cache - sudo mkdir /etc/nix - echo "build-max-jobs = 4" | sudo tee /etc/nix/nix.conf > /dev/null - - # Make sure we can execute within /tmp in Linux - if [ "$TRAVIS_OS_NAME" == "linux" ]; then - sudo mount -o remount,exec /run - sudo mount -o remount,exec /run/user - sudo mount > /dev/null - fi - ;; - verify) echo "=== Verifying that nixpkgs evaluates..." From 2892bbd07a909feb928ed5f61d1705adff4f279a Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Mon, 4 Jul 2016 12:32:45 -0500 Subject: [PATCH 142/508] travis: support nox 0.0.4 arguments This adds the "slug" arguments and also the "token" argument. The slug argument provides the "owner_name/repo_name" format base repo to use for the pull request. The token argument provides the GitHub presonal access token to use for the requests to the GitHub API. --- maintainers/scripts/travis-nox-review-pr.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 791a50b0ae8..a992311436c 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -32,7 +32,12 @@ while test -n "$1"; do else echo "=== Building pull request #$TRAVIS_PULL_REQUEST" - nix-shell --packages nox git --run "nox-review pr $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR + token="" + if [ -n "$GITHUB_TOKEN" ]; then + token="--token $GITHUB_TOKEN" + fi + + nix-shell --packages nox git --run "nox-review pr --slug $TRAVIS_REPO_SLUG $token $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR fi ;; From d40066b49bed6792b2911d4503f2ab49e37e005d Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Mon, 4 Jul 2016 12:39:35 -0500 Subject: [PATCH 143/508] travis: set GITHUB_TOKEN variable in .travis.yml This should allow for more builds per hour and less errors from nox-review. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3e2a506c3b5..e3386d5a6c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,3 +16,6 @@ matrix: script: ./maintainers/scripts/travis-nox-review-pr.sh pr git: depth: 1 +env: + global: + - GITHUB_TOKEN=5edaaf1017f691ed34e7f80878f8f5fbd071603f From 5282a336a4cda925f1e1d213702c3c31e2b3bcee Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 7 Jul 2016 19:18:42 +0000 Subject: [PATCH 144/508] travis: build manuals to verify that they work fixes #15109 --- .travis.yml | 5 ++--- maintainers/scripts/travis-nox-review-pr.sh | 20 ++++++++++++++++---- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index e3386d5a6c2..07e8006aa9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,8 @@ matrix: - os: linux sudo: false script: - - ./maintainers/scripts/travis-nox-review-pr.sh verify - - ./maintainers/scripts/travis-nox-review-pr.sh check - - ./maintainers/scripts/travis-nox-review-pr.sh tarball + - ./maintainers/scripts/travis-nox-review-pr.sh nixpkgs-verify nixpkgs-manual nixpkgs-tarball + - ./maintainers/scripts/travis-nox-review-pr.sh nixos-options nixos-manual - os: linux sudo: required dist: trusty diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index a992311436c..35ac3d44304 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -8,20 +8,32 @@ while test -n "$1"; do case $1 in - verify) + nixpkgs-verify) echo "=== Verifying that nixpkgs evaluates..." nix-env --file $TRAVIS_BUILD_DIR --query --available --json > /dev/null ;; - check) + nixos-options) echo "=== Checking NixOS options" nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr options --show-trace ;; - tarball) - echo "=== Checking tarball creation" + nixos-manual) + echo "=== Checking NixOS manuals" + + nix-build $TRAVIS_BUILD_DIR/nixos/release.nix --attr manual --show-trace + ;; + + nixpkgs-manual) + echo "=== Checking nixpkgs manuals" + + nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr manpages --show-trace + ;; + + nixpkgs-tarball) + echo "=== Checking nixpkgs tarball creation" nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr tarball --show-trace ;; From 7c37ac0edd999b2eb34fc91c2f91050e390ccaa2 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 7 Jul 2016 20:07:01 +0000 Subject: [PATCH 145/508] travis: run nixpkgs-lint in build script This will run nixpkgs-lint for each travis build. We'll disable "nixpkgs-lint" for now, it was a little too verbose: https://travis-ci.org/NixOS/nixpkgs/jobs/144290920 --- maintainers/scripts/travis-nox-review-pr.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 35ac3d44304..386868301a2 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -38,6 +38,12 @@ while test -n "$1"; do nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr tarball --show-trace ;; + nixpkgs-lint) + echo "=== Checking nixpkgs lint" + + nix-shell --packages nixpkgs-lint --run "nixpkgs-lint -f $TRAVIS_BUILD_DIR" + ;; + pr) if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo "=== No pull request found" From 3e582d39ef88657d43727813a174bc85d7b52b8a Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Tue, 12 Jul 2016 23:58:15 +0100 Subject: [PATCH 146/508] mpv: 0.17.0 -> 0.18.1 --- pkgs/applications/video/mpv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index bd1af2ce29a..23f6daf0d61 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -62,11 +62,11 @@ in stdenv.mkDerivation rec { name = "mpv-${version}"; - version = "0.17.0"; + version = "0.18.1"; src = fetchurl { url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz"; - sha256 = "0vms3viwqcwl1mrgmf2yy4c69fvv7xpbkyrl693l6zpwynqd4b30"; + sha256 = "0ab3lkvx1j06x7qlp9m4r4zk28dr7z8ki3w4kfgkpm2axizxa4z4"; }; patchPhase = '' From f51f6a36e8d52a24b93163903757ae1d12f7e887 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Wed, 13 Jul 2016 00:22:44 +0100 Subject: [PATCH 147/508] lxc: 2.0.1 -> 2.0.3 --- pkgs/os-specific/linux/lxc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index eda1863ec97..f15f72ca5bc 100644 --- a/pkgs/os-specific/linux/lxc/default.nix +++ b/pkgs/os-specific/linux/lxc/default.nix @@ -12,11 +12,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "lxc-${version}"; - version = "2.0.1"; + version = "2.0.3"; src = fetchurl { url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz"; - sha256 = "0l4fs6ckvip5akfa0vbjfk34ddvcv0c84mmpj9yrcfl67qwn31z9"; + sha256 = "1mp83r1v9bcxjl7a441sm6plipj8aglhnmkxczp3jinlrnh41pw2"; }; nativeBuildInputs = [ From ab6fc297198b03b32eaa044bbc975bb701cd879b Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 01:47:49 +0200 Subject: [PATCH 148/508] ecryptfs: add nixos/tests/ecryptfs.nix --- nixos/tests/ecryptfs.nix | 78 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 nixos/tests/ecryptfs.nix diff --git a/nixos/tests/ecryptfs.nix b/nixos/tests/ecryptfs.nix new file mode 100644 index 00000000000..f42ae1dac62 --- /dev/null +++ b/nixos/tests/ecryptfs.nix @@ -0,0 +1,78 @@ +import ./make-test.nix ({ pkgs, ... }: +{ + name = "ecryptfs"; + + machine = { config, pkgs, ... }: { + imports = [ ./common/user-account.nix ]; + boot.kernelModules = [ "ecryptfs" ]; + security.pam.enableEcryptfs = true; + environment.systemPackages = with pkgs; [ keyutils ]; + }; + + testScript = '' + $machine->waitForUnit("default.target"); + + # Set alice up with a password and a home + $machine->succeed("(echo foobar; echo foobar) | passwd alice"); + $machine->succeed("chown -R alice.users ~alice"); + + # Migrate alice's home + my $out = $machine->succeed("echo foobar | ecryptfs-migrate-home -u alice"); + $machine->log("ecryptfs-migrate-home said: $out"); + + # Log alice in (ecryptfs passwhrase is wrapped during first login) + $machine->sleep(2); # urgh: wait for username prompt + $machine->sendChars("alice\n"); + $machine->sleep(1); + $machine->sendChars("foobar\n"); + $machine->sleep(2); + $machine->sendChars("logout\n"); + $machine->sleep(2); + + # Why do I need to do this?? + $machine->succeed("su alice -c ecryptfs-umount-private"); + $machine->sleep(1); + $machine->fail("mount | grep ecryptfs"); # check that encrypted home is not mounted + + # Show contents of the user keyring + my $out = $machine->succeed("su - alice -c 'keyctl list \@u'"); + $machine->log("keyctl unlink said: " . $out); + + # Log alice again + $machine->sendChars("alice\n"); + $machine->sleep(1); + $machine->sendChars("foobar\n"); + $machine->sleep(2); + + # Create some files in encrypted home + $machine->succeed("su alice -c 'touch ~alice/a'"); + $machine->succeed("su alice -c 'echo c > ~alice/b'"); + + # Logout + $machine->sendChars("logout\n"); + $machine->sleep(2); + + # Why do I need to do this?? + $machine->succeed("su alice -c ecryptfs-umount-private"); + $machine->sleep(1); + + # Check that the filesystem is not accessible + $machine->fail("mount | grep ecryptfs"); + $machine->succeed("su alice -c 'test \! -f ~alice/a'"); + $machine->succeed("su alice -c 'test \! -f ~alice/b'"); + + # Log alice once more + $machine->sendChars("alice\n"); + $machine->sleep(1); + $machine->sendChars("foobar\n"); + $machine->sleep(2); + + # Check that the files are there + $machine->sleep(1); + $machine->succeed("su alice -c 'test -f ~alice/a'"); + $machine->succeed("su alice -c 'test -f ~alice/b'"); + $machine->succeed(qq%test "\$(cat ~alice/b)" = "c"%); + + $machine->sendChars("logout\n"); + ''; +}) From d781bf94c1a0fadc75ea2ac2ed3534e831ec5462 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 01:59:47 +0200 Subject: [PATCH 149/508] ecryptfs: test bug from #16766 --- nixos/tests/ecryptfs.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/ecryptfs.nix b/nixos/tests/ecryptfs.nix index f42ae1dac62..eceb25a0dea 100644 --- a/nixos/tests/ecryptfs.nix +++ b/nixos/tests/ecryptfs.nix @@ -73,6 +73,9 @@ import ./make-test.nix ({ pkgs, ... }: $machine->succeed("su alice -c 'test -f ~alice/b'"); $machine->succeed(qq%test "\$(cat ~alice/b)" = "c"%); + # Catch https://github.com/NixOS/nixpkgs/issues/16766 + $machine->succeed("su alice -c 'ls -lh ~alice/'"); + $machine->sendChars("logout\n"); ''; }) From 0172558e8278eda2f08f9fc02ff831538548ced3 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Sat, 9 Jul 2016 23:47:15 +0300 Subject: [PATCH 150/508] buildEnv: build the whole tree of directories to pathsToLink This patch fixes #16614 and #16741. The first issue was caused by the fact that both `/share` and `/share/fish/vendor_completions.d` end in the `pathsToLink`. The `pkgs/build-support/buildenv/builder.pl` creates `/share`, then links `/share/fish` under `/share` and then tries to create the directory `/share/fish/vendor_completions.d` and fails because it already exists. The simplest way to reproduce the issue is to build the next Nix expression: ```nix let pkgs = import { }; in pkgs.buildEnv { name = "buildenv-issue"; paths = [ pkgs.fish pkgs.vim ]; pathsToLink = [ "/share" "/share/fish/vendor_completions.d" ]; } ``` The second issue is more critical and was caused by the fact findFiles doesn't recurse deep enough. It stops at first unique directory for the package (e.g., "/share" or even "/") and later the scripts decides it shouldn't link it as it doesn't match pathsToLink (e.g., "/share/fish"), so the result is empty. The test: ```nix let pkgs = import { }; in pkgs.buildEnv { name = "buildenv-issue"; paths = [ pkgs.fish pkgs.vim ]; pathsToLink = [ "/share/fish/functions" ]; } ``` or ```nix let pkgs = import { }; in pkgs.buildEnv { name = "buildenv-issue"; paths = [ pkgs.vim ]; pathsToLink = [ "/share" ]; } ``` --- pkgs/build-support/buildenv/builder.pl | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pkgs/build-support/buildenv/builder.pl b/pkgs/build-support/buildenv/builder.pl index f6cfe52dc31..678f5a3fe9e 100755 --- a/pkgs/build-support/buildenv/builder.pl +++ b/pkgs/build-support/buildenv/builder.pl @@ -31,9 +31,23 @@ sub isInPathsToLink { my %symlinks; +# Add all pathsToLink and all parent directories. +# +# For "/a/b/c" that will include +# [ "", "/a", "/a/b", "/a/b/c" ] +# +# That ensures the whole directory tree needed by pathsToLink is +# created as directories and not symlinks. +$symlinks{""} = ["", 0]; for my $p (@pathsToLink) { - $p = "" if $p eq "/"; - $symlinks{$p} = ["", 0]; + my @parts = split '/', $p; + + my $cur = ""; + for my $x (@parts) { + $cur = $cur . "/$x"; + $cur = "" if $cur eq "/"; + $symlinks{$cur} = ["", 0]; + } } sub findFiles; From d5e70a2adc9fe4f2fdba553edd2d80e57dacd898 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Wed, 13 Jul 2016 08:38:44 +0800 Subject: [PATCH 151/508] smbldaptools: 0.9.10 -> 0.9.11 --- pkgs/tools/networking/smbldaptools/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/smbldaptools/default.nix b/pkgs/tools/networking/smbldaptools/default.nix index 9ca5c3be177..ef300d68314 100644 --- a/pkgs/tools/networking/smbldaptools/default.nix +++ b/pkgs/tools/networking/smbldaptools/default.nix @@ -1,13 +1,13 @@ {stdenv, fetchurl, perl, NetLDAP, makeWrapper, CryptSmbHash, DigestSHA1}: let - version = "0.9.10"; + version = "0.9.11"; in stdenv.mkDerivation { name = "smbldap-tools-${version}"; src = fetchurl { url = "http://download.gna.org/smbldap-tools/sources/${version}/smbldap-tools-${version}.tar.gz"; - sha256 = "19hsvslfs61pk9nhyqdkd68gc95z26kpkmsj10b8zvzlhqmwdvy4"; + sha256 = "1xcxmpz74r82vjp731axyac3cyksfiarz9jk5g5m2bzfdixkq9mz"; }; buildInputs = [ perl NetLDAP makeWrapper CryptSmbHash DigestSHA1 ]; @@ -27,7 +27,5 @@ stdenv.mkDerivation { homepage = http://gna.org/projects/smbldap-tools/; description = "SAMBA LDAP tools"; license = stdenv.lib.licenses.gpl2Plus; - # pod2man: unable to format smbldap-config.cmd - broken = true; }; } From 6423ded1bccc39298e8f4e60a89895f64a4def65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Wed, 13 Jul 2016 06:41:55 +0200 Subject: [PATCH 152/508] idea.idea-{community,ultimate}: 2016.1.3 -> 2016.2 --- 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 6ef4edb5362..bc6f7fffeb3 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -189,13 +189,13 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "2016.1.3"; - build = "IC-145.1617.8"; + version = "2016.2"; + build = "IC-162.1121"; 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 = "0yd1jqz4arywyjsiakszrr48w2xqnik6vnl1a6l0ph2hssgkzkfi"; + sha256 = "164x4l0q31zpc1jh3js1xx9y6afrzsshmnkx1mwhmq8qmvzc4w32"; }; wmClass = "jetbrains-idea-ce"; }; @@ -228,13 +228,13 @@ in idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "2016.1.3"; - build = "IU-145.1617.8"; + version = "2016.2"; + build = "IU-162.1121"; 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 = "1zzxwdnw2bbnl86kj7fjk5p8c99d0hdn1ki2alw5xm8wp4k0w7rv"; + sha256 = "10hiqh6ccmai2cnc5p72vqjcz9kzmmcpn0hy5v514h4mq6vs4zk4"; }; wmClass = "jetbrains-idea"; }; From 60e5b599d5298b4af92944a3f6260765cde6619e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Wed, 13 Jul 2016 06:45:33 +0200 Subject: [PATCH 153/508] storm: 0.8.2 -> 1.0.1 For this package to be useful you need to wrap it in a fhs-user-env and/or create a nixos module. Previous version had become completely broken/useless though. --- pkgs/servers/computing/storm/default.nix | 72 +++++++++++++++--------- 1 file changed, 44 insertions(+), 28 deletions(-) diff --git a/pkgs/servers/computing/storm/default.nix b/pkgs/servers/computing/storm/default.nix index cab91409654..cf57e653c49 100644 --- a/pkgs/servers/computing/storm/default.nix +++ b/pkgs/servers/computing/storm/default.nix @@ -1,49 +1,65 @@ -{ stdenv, fetchurl, zip, unzip, jzmq, jdk, lib, python, logsDir ? "", confFile ? "", extraLibraryPaths ? [], extraJars ? [] }: +{ stdenv, lib, fetchurl, zip, unzip, makeWrapper +, jzmq, jdk, python +, logsDir ? "", confFile ? "", extraLibraryPaths ? [], extraJars ? [] }: -stdenv.mkDerivation { - name = "storm-0.8.2"; +stdenv.mkDerivation rec { + name = "apache-storm-" + version; + version = "1.0.1"; src = fetchurl { - url = https://dl.dropbox.com/u/133901206/storm-0.8.2.zip; - sha256 = "8761aea0b54e5bab4a68b259bbe6b5b2f8226204488b5559eba57a0c458b2bbc"; + url = + "mirror://apache/storm/${name}/${name}.tar.gz"; + sha256 = "1gr00s0fhf8ci0faf3x5dinkiw9mlnc1x1vqki8cfszvij6w0x0m"; }; buildInputs = [ zip unzip jzmq ]; installPhase = '' - # Remove junk - rm -f lib/jzmq* - mkdir -p $out/bin - mv bin/storm $out/bin/ - rm -R bin conf logs + mkdir -p $out/share/${name} + mv public $out/docs + mv examples $out/share/${name}/. - # Fix shebang header for python scripts - sed -i -e "s|#!/usr/bin/.*python|#!${python}/bin/python|" $out/bin/storm; + rm -f lib/jzmq* || exit 1 + mv lib $out/. + mv external extlib* $out/lib/. + mv conf bin $out/. + mv log4j2 $out/conf/. + ''; - mkdir -p $out/conf - cp -av * $out - - cd $out; - ${if logsDir != "" then ''ln -s ${logsDir} logs'' else ""} - - # Extract, delete from zip; and optionally append to defaults.yaml - unzip storm-*.jar defaults.yaml; - zip -d storm-*.jar defaults.yaml; - echo 'java.library.path: "${jzmq}/lib:${lib.concatStringsSep ":" extraLibraryPaths}"' >> defaults.yaml; + fixupPhase = '' + # Fix python reference + sed -i \ + -e '19iPYTHON=${python}/bin/python' \ + -e 's|#!/usr/bin/.*python|#!${python}/bin/python|' \ + $out/bin/storm + sed -i \ + -e 's|#!/usr/bin/.*python|#!${python}/bin/python|' \ + -e "s|STORM_CONF_DIR = .*|STORM_CONF_DIR = os.getenv('STORM_CONF_DIR','$out/conf')|" \ + -e 's|STORM_LOG4J2_CONF_DIR =.*|STORM_LOG4J2_CONF_DIR = os.path.join(STORM_CONF_DIR, "log4j2")|' \ + $out/bin/storm.py + # Default jdk location + sed -i -e 's|#.*export JAVA_HOME=.*|export JAVA_HOME="${jdk.home}"|' \ + $out/conf/storm-env.sh + unzip $out/lib/storm-core-${version}.jar defaults.yaml; + zip -d $out/lib/storm-core-${version}.jar defaults.yaml; + sed -i \ + -e 's|java.library.path: .*|java.library.path: "${jzmq}/lib:${lib.concatStringsSep ":" extraLibraryPaths}"|' \ + -e 's|storm.log4j2.conf.dir: .*|storm.log4j2.conf.dir: "conf/log4j2"|' \ + defaults.yaml ${if confFile != "" then ''cat ${confFile} >> defaults.yaml'' else ""} - mv defaults.yaml conf; + mv defaults.yaml $out/conf; # Link to jzmq jar and extra jars - cd lib; + cd $out/lib; ln -s ${jzmq}/share/java/*.jar; ${lib.concatMapStrings (jar: "ln -s ${jar};\n") extraJars} ''; dontStrip = true; - meta = { - homepage = "http://storm-project.net"; + meta = with stdenv.lib; { + homepage = "http://storm.apache.org"; description = "Distributed realtime computation system"; - license = stdenv.lib.licenses.epl10; - maintainers = [ lib.maintainers.vizanto ]; + license = licenses.asl20; + maintainers = with maintainers; [ edwtjo vizanto ]; }; } From d97a1074261096e050d78f24118c4df3a6ac3af7 Mon Sep 17 00:00:00 2001 From: davidak Date: Wed, 13 Jul 2016 09:11:32 +0200 Subject: [PATCH 154/508] nixos-version: fix syntax error and add -h (#16906) * nixos-version: fix syntax error * nixos-version: add -h parameter --- nixos/modules/installer/tools/nixos-version.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/installer/tools/nixos-version.sh b/nixos/modules/installer/tools/nixos-version.sh index e4e4f5c446c..77a1b458a34 100644 --- a/nixos/modules/installer/tools/nixos-version.sh +++ b/nixos/modules/installer/tools/nixos-version.sh @@ -1,9 +1,10 @@ #! @shell@ case "$1" in - --help) + -h|--help) exec man nixos-version exit 1 + ;; --hash|--revision) echo "@nixosRevision@" ;; From fad9a8841b67ee9e09dd352785e24d9b9d22e11c Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 11:01:56 +0200 Subject: [PATCH 155/508] ecryptfs: fix kernel bug introduced in 4.4.14 Introduced by mainline commit 2f36db7 Patch is from http://www.spinics.net/lists/stable/msg137350.html Fixes #16766 --- .../linux/kernel/ecryptfs-fix-mmap-bug.patch | 20 +++++++++++++++++++ pkgs/os-specific/linux/kernel/patches.nix | 4 ++++ pkgs/top-level/all-packages.nix | 1 + 3 files changed, 25 insertions(+) create mode 100644 pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch diff --git a/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch b/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch new file mode 100644 index 00000000000..7f94669a9f4 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/ecryptfs-fix-mmap-bug.patch @@ -0,0 +1,20 @@ +Signed-off-by: Tyler Hicks +Tested-by: Tyler Hicks # 4.4.y, 3.18.y +Cc: # 4.5- +--- + fs/ecryptfs/kthread.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/fs/ecryptfs/kthread.c b/fs/ecryptfs/kthread.c +index e818f5a..b9faeab 100644 +--- a/fs/ecryptfs/kthread.c ++++ b/fs/ecryptfs/kthread.c +@@ -171,7 +171,7 @@ int ecryptfs_privileged_open(struct file **lower_file, + goto out; + } + have_file: +- if ((*lower_file)->f_op->mmap == NULL) { ++ if ((*lower_file)->f_op->mmap == NULL && !d_is_dir(lower_dentry)) { + fput(*lower_file); + *lower_file = NULL; + rc = -EMEDIUMTYPE; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 4f8d57acc17..7b2feaf84a8 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -148,4 +148,8 @@ rec { sha256 = "14rm1qr87p7a5prz8g5fwbpxzdp3ighj095x8rvhm8csm20wspyy"; }; }; + ecryptfs_fix_mmap_bug = + { name = "ecryptfs_fix_mmap_bug"; + patch = ./ecryptfs-fix-mmap-bug.patch; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4d40567f262..e982c9c4ee7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10954,6 +10954,7 @@ in [ kernelPatches.bridge_stp_helper kernelPatches.qat_common_Makefile kernelPatches.hiddev_CVE_2016_5829 + kernelPatches.ecryptfs_fix_mmap_bug ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu From cf7d968f3a45c05a237a9e47f6a12fadadb70cfa Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 10:23:35 +0200 Subject: [PATCH 156/508] perl-bignum: 0.42 -> 0.43 --- 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 bfdf29cba5b..0ef7a4fe831 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -622,10 +622,10 @@ let self = _self // overrides; _self = with self; { }; bignum = buildPerlPackage rec { - name = "bignum-0.42"; + name = "bignum-0.43"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "5bc9a16fe6d56584cde0f183828d81466f2cfc08ec1b6ef15d25a732080a9b52"; + sha256 = "0610cb569fe51ceaa98991549192b54a09b5ebd9bd03aee39e7234f7c222366d"; }; buildInputs = [ MathBigInt MathBigRat ]; meta = { From e196d30c1f71e1ad81e0430fb0674c67104ad0a9 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 10:35:36 +0200 Subject: [PATCH 157/508] perl-CryptX: 0.037 -> 0.038 --- 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 0ef7a4fe831..62c2477fbfd 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2717,10 +2717,10 @@ let self = _self // overrides; _self = with self; { }; CryptX = buildPerlPackage rec { - name = "CryptX-0.037"; + name = "CryptX-0.038"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; - sha256 = "ae09e6449efb2a9bc661ffeba613c7452367bdcb13c1ee346af0f72c9803404d"; + sha256 = "f98d4ee3bfd0a985077912501b32777c551f0782aa050b4dfbcb3d654e303eb8"; }; propagatedBuildInputs = [ JSONMaybeXS ]; meta = { From fdef298dd7c2426a3e764e39404e8669628bf167 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 10:38:52 +0200 Subject: [PATCH 158/508] perl-File-Util: 4.161200 -> 4.161950 --- 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 62c2477fbfd..be01e64fc26 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5321,10 +5321,10 @@ let self = _self // overrides; _self = with self; { }; FileUtil = buildPerlPackage rec { - name = "File-Util-4.161200"; + name = "File-Util-4.161950"; src = fetchurl { url = "mirror://cpan/authors/id/T/TO/TOMMY/${name}.tar.gz"; - sha256 = "c63be030c15303796d387b290f1f6b59451fb64827e39afeb0e1d0adad72ab8e"; + sha256 = "88507b19da580d595b5c25fe6ba75bbd6096b4359e389ead067a216f766c20ee"; }; buildInputs = [ ModuleBuild TestNoWarnings ]; meta = { From 2e56d68164285aabe62c0864fad17d040c1e1dda Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 12:31:21 +0200 Subject: [PATCH 159/508] perl-Getopt-Long-Descriptive: 0.099 -> 0.100 --- pkgs/top-level/perl-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index be01e64fc26..7cb349b5e66 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5512,18 +5512,18 @@ let self = _self // overrides; _self = with self; { }; GetoptLongDescriptive = buildPerlPackage rec { - name = "Getopt-Long-Descriptive-0.099"; + name = "Getopt-Long-Descriptive-0.100"; src = fetchurl { url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; - sha256 = "1sf5r3vy7880ynsn2aqmb5p6rzmhq5v072x33g8c7aqjpz81wkgw"; + sha256 = "1451e79310d1630de37690e3aba5c38ea5f01a486c5a43f0cd95bef2a02dffb6"; }; - buildInputs = [ TestFatal TestWarnings ]; - propagatedBuildInputs = [ ParamsValidate SubExporter SubExporterUtil ]; + buildInputs = [ CPANMetaCheck TestFatal TestWarnings ]; + propagatedBuildInputs = [ ParamsValidate SubExporter ]; meta = { homepage = https://github.com/rjbs/Getopt-Long-Descriptive; description = "Getopt::Long, but simpler and more powerful"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ rycee ]; + maintainers = [ maintainers.rycee ]; }; }; From 3ce829ca03964feaaa7558c3599ca84d07b5a1a3 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 12:31:46 +0200 Subject: [PATCH 160/508] perl-MouseX-Getopt: 0.36 -> 0.37 --- pkgs/top-level/perl-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 7cb349b5e66..31607fe2bf2 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -8507,12 +8507,12 @@ let self = _self // overrides; _self = with self; { MouseXGetOpt = self.MouseXGetopt; MouseXGetopt = buildPerlModule rec { - name = "MouseX-Getopt-0.36"; + name = "MouseX-Getopt-0.37"; src = fetchurl { url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz"; - sha256 = "172ab0609f1638c6d8800d2dff1bdaa044e305aaa2e9b1fbb8a9dc722a3bf430"; + sha256 = "a6221043e7be3217ce56d2a6425a413d9cd28e2f52053995a6ceb118e8e963bc"; }; - buildInputs = [ ModuleBuild Mouse MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ]; + buildInputs = [ ModuleBuildTiny Mouse MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ]; propagatedBuildInputs = [ GetoptLongDescriptive Mouse ]; meta = { homepage = https://github.com/gfx/mousex-getopt; From 927a984de6a32d5abc793b065b122a3d9c4f6343 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 12:49:18 +0200 Subject: [PATCH 161/508] kernel: make KEXEC_FILE & KEXEC_JUMP optional to fix i686 build cc @edolstra @dezgeg @domenkozar --- pkgs/os-specific/linux/kernel/common-config.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index cac102351b3..37e3859cd05 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -316,8 +316,8 @@ with stdenv.lib; JOYSTICK_IFORCE_USB? y # I-Force USB joysticks and wheels JOYSTICK_XPAD_FF? y # X-Box gamepad rumble support JOYSTICK_XPAD_LEDS? y # LED Support for Xbox360 controller 'BigX' LED - KEXEC_FILE y - KEXEC_JUMP y + KEXEC_FILE? y + KEXEC_JUMP? y LDM_PARTITION y # Windows Logical Disk Manager (Dynamic Disk) support LOGIRUMBLEPAD2_FF y # Logitech Rumblepad 2 force feedback LOGO n # not needed From 12effae5b6f644fa5aec1433f93a08ce68c7a82d Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Wed, 13 Jul 2016 18:43:17 +0800 Subject: [PATCH 162/508] mc: 4.8.16 -> 4.8.17 --- pkgs/tools/misc/mc/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/mc/default.nix b/pkgs/tools/misc/mc/default.nix index 9347b5f9bbe..e1072754b23 100644 --- a/pkgs/tools/misc/mc/default.nix +++ b/pkgs/tools/misc/mc/default.nix @@ -2,11 +2,12 @@ , libX11, libICE, perl, zip, unzip, gettext, slang}: stdenv.mkDerivation rec { - name = "mc-4.8.16"; + name = "mc-${version}"; + version = "4.8.17"; src = fetchurl { - url = http://www.midnight-commander.org/downloads/mc-4.8.16.tar.bz2; - sha256 = "1y5apnp6sc9sn13m6816hlrr0dis1z7wsnffldsx7xlkvyas8zn3"; + url = "http://www.midnight-commander.org/downloads/${name}.tar.bz2"; + sha256 = "0fvqzffppj0aja9hi0k1xdjg5m6s99immlla1y9yzn5fp8vwpl36"; }; buildInputs = [ pkgconfig perl glib gpm slang zip unzip file gettext libX11 libICE e2fsprogs ]; From c9b9619636e82ece9ce53696568d04cfb7365859 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 13 Jul 2016 13:16:19 +0200 Subject: [PATCH 163/508] nethogs: 0.8.1 -> 0.8.5 --- pkgs/tools/networking/nethogs/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/nethogs/default.nix b/pkgs/tools/networking/nethogs/default.nix index dfa9b26a38e..eac95a32008 100644 --- a/pkgs/tools/networking/nethogs/default.nix +++ b/pkgs/tools/networking/nethogs/default.nix @@ -2,18 +2,20 @@ stdenv.mkDerivation rec { name = "nethogs-${version}"; - version = "0.8.1"; + version = "0.8.5"; src = fetchFromGitHub { owner = "raboof"; repo = "nethogs"; rev = "v${version}"; - sha256 = "1phn6i44ysvpl1f54bx4dspy51si8rc2wq6fywi163mi25j355d4"; + sha256 = "13plwblwbnyyi40jaqx471gwhln08wm7f0fxyvj1yh3d81k556yx"; }; buildInputs = [ ncurses libpcap ]; - installFlags = [ "prefix=$(out)" "sbin=$(prefix)/bin" ]; + makeFlags = [ "VERSION=${version}" ]; + + installFlags = [ "PREFIX=$(out)" "sbin=$(out)/bin" ]; meta = with stdenv.lib; { description = "A small 'net top' tool, grouping bandwidth by process"; @@ -27,7 +29,7 @@ stdenv.mkDerivation rec { bandwidth. ''; license = licenses.gpl2Plus; - homepage = http://nethogs.sourceforge.net/; + homepage = "https://github.com/raboof/nethogs#readme"; platforms = platforms.linux; maintainers = [ maintainers.rycee ]; }; From c6f5accb4376b2ab6cb36d0de1d23867510927d1 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Wed, 13 Jul 2016 13:57:40 +0200 Subject: [PATCH 164/508] emby: 3.0.5972 -> 3.0.5985 (#16893) --- pkgs/servers/emby/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix index e1325ec38c1..b9cc038479d 100644 --- a/pkgs/servers/emby/default.nix +++ b/pkgs/servers/emby/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "emby-${version}"; - version = "3.0.5972"; + version = "3.0.5985"; src = fetchurl { url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz"; - sha256 = "0dxm7m8q9w9cknp24gp30v7v8a9q8qph6gy2s1vfli38rwcnakix"; + sha256 = "16p8qr9pf6ww6xdfbsqamnpk70i4dadz30lnvliyxaaslggjbh4b"; }; propagatedBuildInputs = with pkgs; [ From 4f987e0e6019c715da82f59f994ee544131cea08 Mon Sep 17 00:00:00 2001 From: Ioannis Koutras Date: Wed, 13 Jul 2016 15:47:14 +0300 Subject: [PATCH 165/508] maintainers.nix: add joko --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index ae06c524bde..3d83a0a3a1c 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -186,6 +186,7 @@ joamaki = "Jussi Maki "; joelmo = "Joel Moberg "; joelteon = "Joel Taylor "; + joko = "Ioannis Koutras "; jpbernardy = "Jean-Philippe Bernardy "; jraygauthier = "Raymond Gauthier "; juliendehos = "Julien Dehos "; From f76a8fbbac1af6d2a8fc13b8038e996d9c80fda8 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 13 Jul 2016 14:57:13 +0200 Subject: [PATCH 166/508] ecryptfs: add test to release (#16910) Would have caught regression #16766 --- nixos/release.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/release.nix b/nixos/release.nix index c8547784bbc..1800122fa2e 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -220,6 +220,7 @@ in rec { tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; }); tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; }); tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; }; + tests.ecryptfs = callTest tests/ecryptfs.nix {}; tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; }); tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops; tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; From 8c09317018102b1d19ac7dea959427c2b53339c4 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Wed, 13 Jul 2016 15:43:49 +0200 Subject: [PATCH 167/508] git: 2.9.0 -> 2.9.1 --- .../version-management/git-and-tools/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 5849f0ffd6f..fa40f1a49a2 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -10,7 +10,7 @@ }: let - version = "2.9.0"; + version = "2.9.1"; svn = subversionClient.override { perlBindings = true; }; in @@ -19,7 +19,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "02dl8yvvl7m4zy39s0xmqr958ah7krvkv94lmx4vz3wl95wsj7zl"; + sha256 = "18l2jb4bkp9ljz6p2aviwzxqyzza9z3v6h1pnkz7kjf1fay61zp8"; }; patches = [ From d86191126383bce282407e27eb3f6fae28737724 Mon Sep 17 00:00:00 2001 From: Ioannis Koutras Date: Wed, 13 Jul 2016 15:48:56 +0300 Subject: [PATCH 168/508] ocproxy: init at 1.50 --- pkgs/tools/networking/ocproxy/default.nix | 32 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/tools/networking/ocproxy/default.nix diff --git a/pkgs/tools/networking/ocproxy/default.nix b/pkgs/tools/networking/ocproxy/default.nix new file mode 100644 index 00000000000..65729d896aa --- /dev/null +++ b/pkgs/tools/networking/ocproxy/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, libevent }: + +stdenv.mkDerivation rec { + version = "1.50"; + name = "ocproxy-${version}"; + + src = fetchFromGitHub { + owner = "cernekee"; + repo = "ocproxy"; + rev = "v${version}"; + sha256 = "136vlk2svgls5paf17xi1zahcahgcnmi2p55khh7zpqaar4lzw6s"; + }; + + buildInputs = [ autoconf automake libevent ]; + + preConfigure = '' + patchShebangs autogen.sh + ./autogen.sh + ''; + + meta = with stdenv.lib; { + description = "OpenConnect proxy"; + longdescription = '' + ocproxy is a user-level SOCKS and port forwarding proxy for OpenConnect + based on lwIP. + ''; + homepage = https://github.com/cernekee/ocproxy; + license = licenses.bsd3; + maintainers = [ maintainers.joko ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e982c9c4ee7..cedc20c020b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2780,6 +2780,8 @@ in obexd = callPackage ../tools/bluetooth/obexd { }; + ocproxy = callPackage ../tools/networking/ocproxy { }; + openfortivpn = callPackage ../tools/networking/openfortivpn { }; obexfs = callPackage ../tools/bluetooth/obexfs { }; From f3262a209b0ecfd69db0c78bfbf041d0467e1f02 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Wed, 13 Jul 2016 18:32:13 +0200 Subject: [PATCH 169/508] terraform: 0.6.15 -> 0.6.16 --- pkgs/applications/networking/cluster/terraform/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index 1ce86cac5c5..3d1834ce9b6 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -2,16 +2,16 @@ buildGoPackage rec { name = "terraform-${version}"; - version = "0.6.15"; + version = "0.6.16"; rev = "v${version}"; - + goPackagePath = "github.com/hashicorp/terraform"; src = fetchFromGitHub { inherit rev; owner = "hashicorp"; repo = "terraform"; - sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb"; + sha256 = "1bg8hn4b31xphyxrc99bpnf7gmq20fxqx1k871nidx132brcsah2"; }; postInstall = '' From 54a15fb2e4272ce80dc30b153b77fe8089c8a7f3 Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Wed, 13 Jul 2016 21:41:55 +0400 Subject: [PATCH 170/508] erlang: 18.3 -> 18.3.4 (#16244) Minor OTP releases (and their manpages) are not available for dowload at http://erlang.org/download But e.g.: - 18.3.1 contains an important fix for mnesia - 18.3.1-18.3.4 has a lot of SSL/TLS fixes So we have to fetch from GitHub and build everything ourselves. Also replace explicit path patching with upstream patches: - https://github.com/erlang/otp/pull/1023 - https://github.com/erlang/otp/pull/1103 - with this patch it's now possible to build erlang in sandboxed mode --- pkgs/development/interpreters/erlang/R18.nix | 55 ++++++++++++-------- 1 file changed, 33 insertions(+), 22 deletions(-) diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix index 0929495ee1b..34896046e31 100644 --- a/pkgs/development/interpreters/erlang/R18.nix +++ b/pkgs/development/interpreters/erlang/R18.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, perl, gnum4, ncurses, openssl -, gnused, gawk, makeWrapper +{ stdenv, fetchurl, fetchFromGitHub, perl, gnum4, ncurses, openssl +, gnused, gawk, autoconf, libxslt, libxml2, makeWrapper , Carbon, Cocoa , odbcSupport ? false, unixODBC ? null , wxSupport ? true, mesa ? null, wxGTK ? null, xorg ? null, wxmac ? null @@ -20,15 +20,21 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "erlang-" + version + "${optionalString odbcSupport "-odbc"}" + "${optionalString javacSupport "-javac"}"; - version = "18.2"; + version = "18.3.4"; - src = fetchurl { - url = "http://www.erlang.org/download/otp_src_${version}.tar.gz"; - sha256 = "1l1zzf245w1abiylll8pjm0pppqwvvw4fihknqkcybkx62n2ipj3"; + # Minor OTP releases are not always released as tarbals at + # http://erlang.org/download/ So we have to download from + # github. And for the same reason we can't use a prebuilt manpages + # tarball and need to build manpages ourselves. + src = fetchFromGitHub { + owner = "erlang"; + repo = "otp"; + rev = "OTP-${version}"; + sha256 = "1f8nhybzsdmjvkmkzpjj3wj9jzx8mihlvi6gfp47fxkalansz39h"; }; buildInputs = - [ perl gnum4 ncurses openssl makeWrapper + [ perl gnum4 ncurses openssl autoconf libxslt libxml2 makeWrapper ] ++ optionals wxSupport (if stdenv.isDarwin then [ wxmac ] else [ mesa wxGTK xorg.libX11 ]) ++ optional odbcSupport unixODBC ++ optional javacSupport openjdk @@ -36,11 +42,23 @@ stdenv.mkDerivation rec { debugInfo = enableDebugInfo; - patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure ''; + rmAndPwdPatch = fetchurl { + url = "https://github.com/erlang/otp/commit/98b8650d22e94a5ff839170833f691294f6276d0.patch"; + sha256 = "0cd5pkqrigiqz6cyma5irqwzn0bi17k371k9vlg8ir31h3zmqfip"; + }; + + envAndCpPatch = fetchurl { + url = "https://github.com/binarin/otp/commit/9f9841eb7327c9fe73e84e197fd2965a97b639cf.patch"; + sha256 = "10h5348p6g279b4q01i5jdqlljww5chcvrx5b4b0dv79pk0p0m9f"; + }; + + patches = [ + rmAndPwdPatch + envAndCpPatch + ]; preConfigure = '' - export HOME=$PWD/../ - sed -e s@/bin/pwd@pwd@g -i otp_build + ./otp_build autoconf ''; configureFlags= [ @@ -51,19 +69,12 @@ stdenv.mkDerivation rec { ++ optional javacSupport "--with-javac" ++ optional stdenv.isDarwin "--enable-darwin-64bit"; - postInstall = let - manpages = fetchurl { - url = "http://www.erlang.org/download/otp_doc_man_${version}.tar.gz"; - sha256 = "0abaqnw6hkr1h1zw6cdqwg2k7rfmj2b9sqqldnqf3qaj0shz759n"; - }; - in '' + # install-docs will generate and install manpages and html docs + # (PDFs are generated only when fop is available). + installTargets = "install install-docs"; + + postInstall = '' ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call - tar xf "${manpages}" -C "$out/lib/erlang" - for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do - prefix="''${i%/*}" - ensureDir "$out/share/man/''${prefix##*/}" - ln -s "$i" "$out/share/man/''${prefix##*/}/''${i##*/}erl" - done ''; # Some erlang bin/ scripts run sed and awk From 8c45378cdea615b9f364837a212e88f2a7594413 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sun, 10 Jul 2016 22:45:58 +0200 Subject: [PATCH 171/508] rustc: 1.9.0 -> 1.10.0, cargo: 0.10.0 -> 0.11.0 --- pkgs/development/compilers/rust/bootstrap.nix | 6 +- pkgs/development/compilers/rust/default.nix | 20 +++--- .../rust/patches/remove-uneeded-git.patch | 19 ------ .../rust/patches/use-rustc-1.9.0.patch | 25 ------- pkgs/development/compilers/rust/snapshot.nix | 65 ------------------- 5 files changed, 15 insertions(+), 120 deletions(-) delete mode 100644 pkgs/development/compilers/rust/patches/remove-uneeded-git.patch delete mode 100644 pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch delete mode 100644 pkgs/development/compilers/rust/snapshot.nix diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix index 300f6929453..bfc82c4317d 100644 --- a/pkgs/development/compilers/rust/bootstrap.nix +++ b/pkgs/development/compilers/rust/bootstrap.nix @@ -50,7 +50,11 @@ rec { --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ "$out/bin/rustc" - wrapProgram "$out/bin/rustc" + # Do NOT, I repeat, DO NOT use `wrapProgram` on $out/bin/rustc + # (or similar) here. It causes strange effects where rustc loads + # the wrong libraries in a bootstrap-build causing failures that + # are very hard to track dow. For details, see + # https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943 ''; }; diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix index d1e7460fa54..44b9471784c 100644 --- a/pkgs/development/compilers/rust/default.nix +++ b/pkgs/development/compilers/rust/default.nix @@ -3,30 +3,30 @@ let rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}) rustPlatform); - rustSnapshotPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./snapshot.nix {}) rustPlatform); in rec { rustc = callPackage ./rustc.nix { - shortVersion = "1.9.0"; + shortVersion = "1.10.0"; isRelease = true; forceBundledLLVM = false; configureFlags = [ "--release-channel=stable" ]; - srcRev = "e4e8b666850a763fdf1c3c2c142856ab51e32779"; - srcSha = "1pz4qx70mqv78fxm4w1mq7csk5pssq4qmr2vwwb5v8hyx03caff8"; - patches = [ ./patches/remove-uneeded-git.patch ] - ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; + srcRev = "cfcb716cf0961a7e3a4eceac828d94805cf8140b"; + srcSha = "15i81ybh32xymmkyz3bkb5bdgi9hx8nb0sh00ac6qba6w8ljpii9"; + patches = [ + ./patches/disable-lockfile-check.patch + ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; inherit targets; inherit targetPatches; inherit targetToolchains; - rustPlatform = rustSnapshotPlatform; + inherit rustPlatform; }; cargo = callPackage ./cargo.nix rec { - version = "0.10.0"; + version = "0.11.0"; srcRev = "refs/tags/${version}"; - srcSha = "06scvx5qh60mgvlpvri9ig4np2fsnicsfd452fi9w983dkxnz4l2"; - depsSha256 = "0js4697n7v93wnqnpvamhp446w58llj66za5hkd6wannmc0gsy3b"; + srcSha = "0ic2093bmwiw6vl2l9yhip87ni6dbz7dhrizy9wdx61229k16hc4"; + depsSha256 = "0690sgn6fcay7sazlmrbbn4jbhnvmznrpz5z3rvkbaifkjrg4w6d"; inherit rustc; # the rustc that will be wrapped by cargo inherit rustPlatform; # used to build cargo }; diff --git a/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch b/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch deleted file mode 100644 index 3c68d777f88..00000000000 --- a/pkgs/development/compilers/rust/patches/remove-uneeded-git.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff --git a/src/etc/tidy.py b/src/etc/tidy.py -index 9f5f919..a607180 100644 ---- a/src/etc/tidy.py -+++ b/src/etc/tidy.py -@@ -66,13 +66,9 @@ def interesting_file(f): - return any(os.path.splitext(f)[1] == ext for ext in interesting_files) - - --# Be careful to support Python 2.4, 2.6, and 3.x here! --config_proc = subprocess.Popen(["git", "config", "core.autocrlf"], -- stdout=subprocess.PIPE) --result = config_proc.communicate()[0] - - true = "true".encode('utf8') --autocrlf = result.strip() == true if result is not None else False -+autocrlf = False - - current_name = "" - current_contents = "" diff --git a/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch b/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch deleted file mode 100644 index 150306744be..00000000000 --- a/pkgs/development/compilers/rust/patches/use-rustc-1.9.0.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 2710f3c8ae142abe1720b3476cd1ca60cee0c077 Mon Sep 17 00:00:00 2001 -From: David Craven -Date: Wed, 1 Jun 2016 00:12:35 +0200 -Subject: [PATCH] Patch stage0.txt to use rustc 1.9.0 - ---- - src/stage0.txt | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/stage0.txt b/src/stage0.txt -index 58b7f8f..3c84cab 100644 ---- a/src/stage0.txt -+++ b/src/stage0.txt -@@ -12,6 +12,6 @@ - # tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was - # released on `$date` - --rustc: beta-2016-04-13 --rustc_key: c2743eb4 -+rustc: 1.9.0-2016-05-24 -+rustc_key: d16b8f0e - cargo: nightly-2016-04-10 --- -2.8.3 - diff --git a/pkgs/development/compilers/rust/snapshot.nix b/pkgs/development/compilers/rust/snapshot.nix deleted file mode 100644 index 47f271b18e0..00000000000 --- a/pkgs/development/compilers/rust/snapshot.nix +++ /dev/null @@ -1,65 +0,0 @@ -/* NOTE: Rust 1.9.0 is the last version that uses snapshots - This file can be deleted after the 1.10.0 release and bootstrap.nix - can be used instead -*/ -{ stdenv, fetchurl, callPackage }: - -let - platform = if stdenv.system == "i686-linux" - then "linux-i386" - else if stdenv.system == "x86_64-linux" - then "linux-x86_64" - else if stdenv.system == "i686-darwin" - then "macos-i386" - else if stdenv.system == "x86_64-darwin" - then "macos-x86_64" - else abort "no snapshot to bootstrap for this platform (missing platform url suffix)"; - - /* Rust is bootstrapped from an earlier built version. We need - to fetch these earlier versions, which vary per platform. - The shapshot info you want can be found at - https://github.com/rust-lang/rust/blob/{$shortVersion}/src/snapshots.txt - with the set you want at the top. Make sure this is the latest snapshot - for the tagged release and not a snapshot in the current HEAD. - */ - - snapshotHashLinux686 = "0e0e4448b80d0a12b75485795244bb3857a0a7ef"; - snapshotHashLinux64 = "1273b6b6aed421c9e40c59f366d0df6092ec0397"; - snapshotHashDarwin686 = "9f9c0b4a2db09acbce54b792fb8839a735585565"; - snapshotHashDarwin64 = "52570f6fd915b0210a9be98cfc933148e16a75f8"; - snapshotDate = "2016-03-18"; - snapshotRev = "235d774"; - - snapshotHash = if stdenv.system == "i686-linux" - then snapshotHashLinux686 - else if stdenv.system == "x86_64-linux" - then snapshotHashLinux64 - else if stdenv.system == "i686-darwin" - then snapshotHashDarwin686 - else if stdenv.system == "x86_64-darwin" - then snapshotHashDarwin64 - else abort "no snapshot for platform ${stdenv.system}"; - - snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshotHash}.tar.bz2"; -in - -rec { - rustc = stdenv.mkDerivation { - name = "rustc-snapshot"; - src = fetchurl { - url = "http://static.rust-lang.org/stage0-snapshots/${snapshotName}"; - sha1 = snapshotHash; - }; - dontStrip = true; - installPhase = '' - mkdir -p "$out" - cp -r bin "$out/bin" - '' + stdenv.lib.optionalString stdenv.isLinux '' - patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \ - --set-rpath "${stdenv.cc.cc.lib}/lib/:${stdenv.cc.cc.lib}/lib64/" \ - "$out/bin/rustc" - ''; - }; - - cargo = null; -} From eec7eafe6f735f0f28cbf3e2cc873890385908d8 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 13 Jul 2016 14:39:49 +0200 Subject: [PATCH 172/508] rustRegistry: 2016-06-26 -> 2016-07-13. --- pkgs/top-level/rust-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index b4108957b8e..fb16530542a 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,16 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-06-26"; - rev = "eb6b06424a5cdc5dd0f41f06cda69714b3a0577b"; + version = "2016-07-13"; + rev = "8c0d367a18349078cc33df1eed7394fbaa2d602e"; + sha256 = "1r59qvzrr1rmjbq8al0qwkc65nd3n512i4pgn9688192d68cjnl8"; src = fetchFromGitHub { inherit rev; + inherit sha256; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "0iyqyyd5070whfgsg74bqk0f6rk7d2r4spb2ih9jy594ds2qinv4"; }; in From 784b31dd9339332713e24b89d2bca524bd5fe083 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Wed, 13 Jul 2016 17:42:23 +0300 Subject: [PATCH 173/508] uemacs: init at 2014-12-08 --- pkgs/applications/editors/uemacs/default.nix | 38 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/applications/editors/uemacs/default.nix diff --git a/pkgs/applications/editors/uemacs/default.nix b/pkgs/applications/editors/uemacs/default.nix new file mode 100644 index 00000000000..551fa67d986 --- /dev/null +++ b/pkgs/applications/editors/uemacs/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchgit, ncurses }: + +stdenv.mkDerivation rec { + name = "uemacs-${version}"; + version = "2014-12-08"; + + src = fetchgit { + url = git://git.kernel.org/pub/scm/editors/uemacs/uemacs.git; + rev = "8841922689769960fa074fbb053cb8507f2f3ed9"; + sha256 = "14yq7kpkax111cg6k7i3mnqk7sq7a65krq6qizzj7vvnm7bsj3sd"; + }; + + postPatch = '' + substituteInPlace Makefile \ + --replace "-lcurses" "-lncurses" \ + --replace "CFLAGS=-O2" "CFLAGS+=" \ + --replace "BINDIR=/usr/bin" "BINDIR=$out/bin" \ + --replace "LIBDIR=/usr/lib" "LIBDIR=$out/share/uemacs" + substituteInPlace epath.h \ + --replace "/usr/global/lib/" "$out/share/uemacs/" \ + --replace "/usr/local/bin/" "$out/bin/" \ + --replace "/usr/local/lib/" "$out/share/uemacs/" \ + --replace "/usr/local/" "$out/bin/" \ + --replace "/usr/lib/" "$out/share/uemacs/" + mkdir -p $out/bin $out/share/uemacs + ''; + + buildInputs = [ ncurses ]; + + meta = with stdenv.lib; { + homepage = https://git.kernel.org/cgit/editors/uemacs/uemacs.git; + description = "Torvalds Micro-emacs fork"; + longDescription = '' + uEmacs/PK 4.0 is a full screen editor based on MicroEMACS 3.9e + ''; + license = licenses.unfree; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cedc20c020b..63e71f8c65a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3916,6 +3916,8 @@ in udunits = callPackage ../development/libraries/udunits { }; + uemacs = callPackage ../applications/editors/uemacs { }; + uhttpmock = callPackage ../development/libraries/uhttpmock { }; uim = callPackage ../tools/inputmethods/uim { From c8885106c15c94b621baa2df95e44b4d2c4c6ee8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:30:04 -0500 Subject: [PATCH 174/508] kde5.plasma: 5.7.0 -> 5.7.1 - Update from Plasma 5.7.0 to 5.7.1. - Remove the version number from the directory storing the Plasma Nix expressions. It is not necessary to version the Nix expressions now that we keep only one version in Nixpkgs. - Fix a bug in generate-kde-plasma.sh which prevented it from finding its helper script. - Automatically redirect the output of generate-kde-plasma.sh to make the update script even easier to use. --- maintainers/scripts/generate-kde-plasma.sh | 4 +- pkgs/desktops/kde-5/plasma-5.7/srcs.nix | 325 ------------------ .../{plasma-5.7 => plasma}/bluedevil.nix | 0 .../{plasma-5.7 => plasma}/breeze-gtk.nix | 0 .../{plasma-5.7 => plasma}/breeze-qt4.nix | 0 .../{plasma-5.7 => plasma}/breeze-qt5.nix | 0 .../kde-5/{plasma-5.7 => plasma}/default.nix | 12 +- .../kactivitymanagerd.nix | 0 .../{plasma-5.7 => plasma}/kde-cli-tools.nix | 0 .../kde-gtk-config/0001-follow-symlinks.patch | 0 .../kde-gtk-config/default.nix | 0 .../{plasma-5.7 => plasma}/kdecoration.nix | 0 .../kdeplasma-addons.nix | 0 .../kde-5/{plasma-5.7 => plasma}/kgamma5.nix | 0 .../kde-5/{plasma-5.7 => plasma}/khotkeys.nix | 0 .../{plasma-5.7 => plasma}/kinfocenter.nix | 0 .../{plasma-5.7 => plasma}/kmenuedit.nix | 0 .../kde-5/{plasma-5.7 => plasma}/kscreen.nix | 0 .../{plasma-5.7 => plasma}/kscreenlocker.nix | 0 .../{plasma-5.7 => plasma}/ksshaskpass.nix | 0 .../{plasma-5.7 => plasma}/ksysguard.nix | 0 .../kwayland-integration.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../{plasma-5.7 => plasma}/kwin/default.nix | 0 .../kde-5/{plasma-5.7 => plasma}/kwrited.nix | 0 .../{plasma-5.7 => plasma}/libkscreen.nix | 0 .../0001-qdiriterator-follow-symlinks.patch | 0 .../libksysguard/default.nix | 0 .../kde-5/{plasma-5.7 => plasma}/milou.nix | 0 .../kde-5/{plasma-5.7 => plasma}/oxygen.nix | 0 .../0001-qt-5.5-QML-import-paths.patch | 0 .../plasma-desktop/0002-hwclock.patch | 0 .../plasma-desktop/0003-tzdir.patch | 0 .../plasma-desktop/default.nix | 0 .../plasma-integration.nix | 0 .../plasma-mediacenter.nix | 0 ...-mobile-broadband-provider-info-path.patch | 0 .../plasma-nm/default.nix | 0 .../{plasma-5.7 => plasma}/plasma-pa.nix | 0 .../plasma-workspace-wallpapers.nix | 0 .../plasma-workspace/default.nix | 0 .../plasma-workspace/qml-import-path.patch | 0 .../plasma-workspace/series | 0 .../polkit-kde-agent.nix | 0 .../{plasma-5.7 => plasma}/powerdevil.nix | 0 pkgs/desktops/kde-5/plasma/srcs.nix | 325 ++++++++++++++++++ .../startkde/default.nix | 0 .../startkde/startkde.sh | 0 .../{plasma-5.7 => plasma}/systemsettings.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 50 files changed, 333 insertions(+), 335 deletions(-) delete mode 100644 pkgs/desktops/kde-5/plasma-5.7/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/bluedevil.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/breeze-gtk.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/breeze-qt4.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/breeze-qt5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/default.nix (89%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kactivitymanagerd.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kde-cli-tools.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kde-gtk-config/0001-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kde-gtk-config/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kdecoration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kdeplasma-addons.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kgamma5.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/khotkeys.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kinfocenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kmenuedit.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kscreenlocker.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/ksshaskpass.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/ksysguard.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwayland-integration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwin/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwin/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/kwrited.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/libkscreen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/libksysguard/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/libksysguard/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/milou.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/oxygen.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/0001-qt-5.5-QML-import-paths.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/0002-hwclock.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/0003-tzdir.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-desktop/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-integration.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-mediacenter.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-nm/0001-mobile-broadband-provider-info-path.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-nm/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-pa.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace-wallpapers.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace/qml-import-path.patch (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/plasma-workspace/series (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/polkit-kde-agent.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/powerdevil.nix (100%) create mode 100644 pkgs/desktops/kde-5/plasma/srcs.nix rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/startkde/default.nix (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/startkde/startkde.sh (100%) rename pkgs/desktops/kde-5/{plasma-5.7 => plasma}/systemsettings.nix (100%) diff --git a/maintainers/scripts/generate-kde-plasma.sh b/maintainers/scripts/generate-kde-plasma.sh index ad916f3a25b..1d93a05512c 100755 --- a/maintainers/scripts/generate-kde-plasma.sh +++ b/maintainers/scripts/generate-kde-plasma.sh @@ -1,3 +1,5 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/plasma/5.7.0/ -A '*.tar.xz' +./maintainers/scripts/fetch-kde-qt.sh \ + http://download.kde.org/stable/plasma/5.7.1/ -A '*.tar.xz' \ + >pkgs/desktops/kde-5/plasma/srcs.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/srcs.nix b/pkgs/desktops/kde-5/plasma-5.7/srcs.nix deleted file mode 100644 index 2f017f0d52b..00000000000 --- a/pkgs/desktops/kde-5/plasma-5.7/srcs.nix +++ /dev/null @@ -1,325 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - bluedevil = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/bluedevil-5.7.0.tar.xz"; - sha256 = "10f507hj31asg08kz5c5j5g2qlzmn57x68jrbgx80hdrji6jv6qn"; - name = "bluedevil-5.7.0.tar.xz"; - }; - }; - breeze = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-5.7.0.tar.xz"; - sha256 = "1sy400m8lkdqna926fxfq3nmcfsrd877b841an686qf9lb7iga2l"; - name = "breeze-5.7.0.tar.xz"; - }; - }; - breeze-grub = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-grub-5.7.0.tar.xz"; - sha256 = "0lgf13kbv1mcl57hwm0al87xslwvc7cgnj4k8f3026fjf78dqzr8"; - name = "breeze-grub-5.7.0.tar.xz"; - }; - }; - breeze-gtk = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-gtk-5.7.0.tar.xz"; - sha256 = "1h9hvhln5mwsi4fn7a7csf7gn6qlvx4d6bmxij2qsjm4i14izxhb"; - name = "breeze-gtk-5.7.0.tar.xz"; - }; - }; - breeze-plymouth = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/breeze-plymouth-5.7.0.tar.xz"; - sha256 = "1kq3ys1dvw2asgda6p9qbb2kkgskpvhjyp0xj4mgi5yaklz0bxgv"; - name = "breeze-plymouth-5.7.0.tar.xz"; - }; - }; - discover = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/discover-5.7.0.tar.xz"; - sha256 = "0j3339g6lrf44hg3xbvzh01pygcawrrf1c9vhijimrrd197qcqwg"; - name = "discover-5.7.0.tar.xz"; - }; - }; - kactivitymanagerd = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kactivitymanagerd-5.7.0.tar.xz"; - sha256 = "0j2rf4qlha7cdwgdnvxrhlc90j2m8qacyhii27zdjz9iwv48zyjq"; - name = "kactivitymanagerd-5.7.0.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kde-cli-tools-5.7.0.tar.xz"; - sha256 = "05g4q6lf7mkm8ys39qhwqavy2g2xc17ahsfc037wkcpka47m6i3m"; - name = "kde-cli-tools-5.7.0.tar.xz"; - }; - }; - kdecoration = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kdecoration-5.7.0.tar.xz"; - sha256 = "1i43b572yd3s0bgfvj97r18p0yk01skwmwqqzripb80pygw9yzvc"; - name = "kdecoration-5.7.0.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kde-gtk-config-5.7.0.tar.xz"; - sha256 = "01y4m3lyrfb0hngbmk6r3xpbak9r534vf1fqgf22956sdfrl5g2p"; - name = "kde-gtk-config-5.7.0.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kdeplasma-addons-5.7.0.tar.xz"; - sha256 = "0kv0c2yxikbpdkr82n16pw016gsvbpmhp8kgbzdjdaqinicw4p2b"; - name = "kdeplasma-addons-5.7.0.tar.xz"; - }; - }; - kgamma5 = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kgamma5-5.7.0.tar.xz"; - sha256 = "1scqi61agl8f1pmq29v32fs126x0ddw933q6yjswy1w2a0nn0i02"; - name = "kgamma5-5.7.0.tar.xz"; - }; - }; - khotkeys = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/khotkeys-5.7.0.tar.xz"; - sha256 = "0l27frmam6amgay42vb4pl98l81pb6xasnwd9ww3069sr9kiq0vi"; - name = "khotkeys-5.7.0.tar.xz"; - }; - }; - kinfocenter = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kinfocenter-5.7.0.tar.xz"; - sha256 = "1bs3yl916s4dpci481dk81193mmh7kd9vqq535q74w0hx8khcwlf"; - name = "kinfocenter-5.7.0.tar.xz"; - }; - }; - kmenuedit = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kmenuedit-5.7.0.tar.xz"; - sha256 = "0l7vibvy50v5hqpv6zb2j7c2nf0jbd88vwxhbv6rg150f3qy9awb"; - name = "kmenuedit-5.7.0.tar.xz"; - }; - }; - kscreen = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kscreen-5.7.0.tar.xz"; - sha256 = "1qiwz220lff8l48ysfasx0zysv9m1mm2dsk60j84rcr3v5jwim6h"; - name = "kscreen-5.7.0.tar.xz"; - }; - }; - kscreenlocker = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kscreenlocker-5.7.0.tar.xz"; - sha256 = "0yg4k1v31fkqh23myd4lfc59b04qydgiym2hahdz66vnvkkdcvdv"; - name = "kscreenlocker-5.7.0.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/ksshaskpass-5.7.0.tar.xz"; - sha256 = "0jv0i1gz36vv690x69isw6v856vjrbkjisy2gwd7z0l3986z54l0"; - name = "ksshaskpass-5.7.0.tar.xz"; - }; - }; - ksysguard = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/ksysguard-5.7.0.tar.xz"; - sha256 = "093ksjk6gy5j2hgfwlw6vspd22gqnb28aby9x8nvrx9idaxldlrj"; - name = "ksysguard-5.7.0.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwallet-pam-5.7.0.tar.xz"; - sha256 = "0d1aba9mjb52cy8abm8ais5ypcfs3xny62dzjb7fd5ac1mdld0bz"; - name = "kwallet-pam-5.7.0.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwayland-integration-5.7.0.tar.xz"; - sha256 = "1p2l98dd7dl1knshivk27qc2cfpvar26vci4lpxxwhg6psqdsnam"; - name = "kwayland-integration-5.7.0.tar.xz"; - }; - }; - kwin = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwin-5.7.0.tar.xz"; - sha256 = "1mpdcr4dva447jigdfxvrhpd2mh67s83w3mzw28f9xb1r7zcfzpm"; - name = "kwin-5.7.0.tar.xz"; - }; - }; - kwrited = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/kwrited-5.7.0.tar.xz"; - sha256 = "1wz56v9f3an65x17wj8bdg4f27a0j1mrsaz1v9gqks86cbmkkr5k"; - name = "kwrited-5.7.0.tar.xz"; - }; - }; - libkscreen = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/libkscreen-5.7.0.tar.xz"; - sha256 = "0g5xs8sajzkmn91n0y92mi71zjadpn35k2sxw8b12ilp9r5qzkqc"; - name = "libkscreen-5.7.0.tar.xz"; - }; - }; - libksysguard = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/libksysguard-5.7.0.tar.xz"; - sha256 = "1i3sl8wnfg1sl5psbfikw57w1d4bac6d61slkga60mp5z0jw4vss"; - name = "libksysguard-5.7.0.tar.xz"; - }; - }; - milou = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/milou-5.7.0.tar.xz"; - sha256 = "1i778zang4rk3kvd1z7aszrcsxa3l1k2d5xiv2zqf2z6hnranvbd"; - name = "milou-5.7.0.tar.xz"; - }; - }; - oxygen = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/oxygen-5.7.0.tar.xz"; - sha256 = "05vz4zixg9nfrydd2i7jjkv082vgmhxlv3v109vgkr652dh9kncf"; - name = "oxygen-5.7.0.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-desktop-5.7.0.tar.xz"; - sha256 = "0f8pi90g1msrfzd769d7c26lxbq07hf7va5d9mclq3kfhk2wm951"; - name = "plasma-desktop-5.7.0.tar.xz"; - }; - }; - plasma-integration = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-integration-5.7.0.tar.xz"; - sha256 = "0rhm0p6350jibqflh3f5b7df3rnm9k5p02sgna6p6gm5b2w145ii"; - name = "plasma-integration-5.7.0.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-mediacenter-5.7.0.tar.xz"; - sha256 = "1xva1lyyafik6kq7f1s9fddvb7n35paz0lmcyzqbaxs149xz6r96"; - name = "plasma-mediacenter-5.7.0.tar.xz"; - }; - }; - plasma-nm = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-nm-5.7.0.tar.xz"; - sha256 = "1aa8wv4jdmjjwmvn0pd80p0byyys498xi3i4fqy84r8spmb6xb9i"; - name = "plasma-nm-5.7.0.tar.xz"; - }; - }; - plasma-pa = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-pa-5.7.0.tar.xz"; - sha256 = "15hziwyyvz9mqcyqnjwc49a31v2d2ysa7gaydkb8dizgqfd4pcs8"; - name = "plasma-pa-5.7.0.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-sdk-5.7.0.tar.xz"; - sha256 = "0cbjbp9m0l3lik1j0x1czn4whd2h140954dlgqb87k4d55lxpxjh"; - name = "plasma-sdk-5.7.0.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-5.7.0.tar.xz"; - sha256 = "047pqpwi2zgyyp592wbxqxai5j5hvxbnw01s79q4i4wpsq10b2fa"; - name = "plasma-workspace-5.7.0.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/plasma-workspace-wallpapers-5.7.0.tar.xz"; - sha256 = "1f2nmnprj8pb6wl3svfmsgivl2565mabpmqyaywwfblhi5ycxj52"; - name = "plasma-workspace-wallpapers-5.7.0.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/polkit-kde-agent-1-5.7.0.tar.xz"; - sha256 = "0cxjgmhrb26ghqlrdj4kksw5g7b90pfhfsz4jia85szk2nssivl3"; - name = "polkit-kde-agent-1-5.7.0.tar.xz"; - }; - }; - powerdevil = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/powerdevil-5.7.0.tar.xz"; - sha256 = "1wc59vzzjbjr5brwnmlcnibh5hii61001hbc7hma3gngzr7j0b6m"; - name = "powerdevil-5.7.0.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/sddm-kcm-5.7.0.tar.xz"; - sha256 = "14jnyv7fs2bscmb0iw3pdxzmk4qyv0czzlpszi1qd1i7k0f2dngy"; - name = "sddm-kcm-5.7.0.tar.xz"; - }; - }; - systemsettings = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/systemsettings-5.7.0.tar.xz"; - sha256 = "13k325r7vy6l4a6lwrbhgm60bdmn91yjkld7zsd2xyxbw27vis3p"; - name = "systemsettings-5.7.0.tar.xz"; - }; - }; - user-manager = { - version = "5.7.0"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.7.0/user-manager-5.7.0.tar.xz"; - sha256 = "16h7ifwa8dpn0yrg8cisi570dm2wigmb50pgxh9h8smfzgc0vg7k"; - name = "user-manager-5.7.0.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix b/pkgs/desktops/kde-5/plasma/bluedevil.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/bluedevil.nix rename to pkgs/desktops/kde-5/plasma/bluedevil.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma/breeze-gtk.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/breeze-gtk.nix rename to pkgs/desktops/kde-5/plasma/breeze-gtk.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma/breeze-qt4.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/breeze-qt4.nix rename to pkgs/desktops/kde-5/plasma/breeze-qt4.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma/breeze-qt5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/breeze-qt5.nix rename to pkgs/desktops/kde-5/plasma/breeze-qt5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/default.nix b/pkgs/desktops/kde-5/plasma/default.nix similarity index 89% rename from pkgs/desktops/kde-5/plasma-5.7/default.nix rename to pkgs/desktops/kde-5/plasma/default.nix index d0b6ef1f6c9..f6bbd5c3f51 100644 --- a/pkgs/desktops/kde-5/plasma-5.7/default.nix +++ b/pkgs/desktops/kde-5/plasma/default.nix @@ -2,14 +2,10 @@ # Updates -Before a major version update, make a copy of this directory. (We like to -keep the old version around for a short time after major updates.) - -1. Update the URL in `maintainers/scripts/generate-kde-plasma.sh`. -2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-plasma.sh > pkgs/desktops/kde-5/plasma-$VERSION/srcs.nix'. -3. Check that the new packages build correctly. -4. Commit the changes and open a pull request. +1. Update the URL in `maintainers/scripts/generate-kde-plasma.sh` and run + that script from the top of the Nixpkgs tree. +2. Check that the new packages build correctly. +3. Commit the changes and open a pull request. */ diff --git a/pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix b/pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kactivitymanagerd.nix rename to pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma/kde-cli-tools.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kde-cli-tools.nix rename to pkgs/desktops/kde-5/plasma/kde-cli-tools.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/0001-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kde-gtk-config/default.nix rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix b/pkgs/desktops/kde-5/plasma/kdecoration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kdecoration.nix rename to pkgs/desktops/kde-5/plasma/kdecoration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kdeplasma-addons.nix rename to pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix b/pkgs/desktops/kde-5/plasma/kgamma5.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kgamma5.nix rename to pkgs/desktops/kde-5/plasma/kgamma5.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix b/pkgs/desktops/kde-5/plasma/khotkeys.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/khotkeys.nix rename to pkgs/desktops/kde-5/plasma/khotkeys.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix b/pkgs/desktops/kde-5/plasma/kinfocenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kinfocenter.nix rename to pkgs/desktops/kde-5/plasma/kinfocenter.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix b/pkgs/desktops/kde-5/plasma/kmenuedit.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kmenuedit.nix rename to pkgs/desktops/kde-5/plasma/kmenuedit.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kscreen.nix b/pkgs/desktops/kde-5/plasma/kscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kscreen.nix rename to pkgs/desktops/kde-5/plasma/kscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma/kscreenlocker.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kscreenlocker.nix rename to pkgs/desktops/kde-5/plasma/kscreenlocker.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma/ksshaskpass.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/ksshaskpass.nix rename to pkgs/desktops/kde-5/plasma/ksshaskpass.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix b/pkgs/desktops/kde-5/plasma/ksysguard.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix rename to pkgs/desktops/kde-5/plasma/ksysguard.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix b/pkgs/desktops/kde-5/plasma/kwayland-integration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwayland-integration.nix rename to pkgs/desktops/kde-5/plasma/kwayland-integration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwin/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix b/pkgs/desktops/kde-5/plasma/kwin/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwin/default.nix rename to pkgs/desktops/kde-5/plasma/kwin/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/kwrited.nix b/pkgs/desktops/kde-5/plasma/kwrited.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/kwrited.nix rename to pkgs/desktops/kde-5/plasma/kwrited.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix b/pkgs/desktops/kde-5/plasma/libkscreen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/libkscreen.nix rename to pkgs/desktops/kde-5/plasma/libkscreen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/libksysguard/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma/libksysguard/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/libksysguard/default.nix rename to pkgs/desktops/kde-5/plasma/libksysguard/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/milou.nix b/pkgs/desktops/kde-5/plasma/milou.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/milou.nix rename to pkgs/desktops/kde-5/plasma/milou.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/oxygen.nix b/pkgs/desktops/kde-5/plasma/oxygen.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/oxygen.nix rename to pkgs/desktops/kde-5/plasma/oxygen.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0001-qt-5.5-QML-import-paths.patch rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0002-hwclock.patch rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/0003-tzdir.patch rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-desktop/default.nix rename to pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix b/pkgs/desktops/kde-5/plasma/plasma-integration.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-integration.nix rename to pkgs/desktops/kde-5/plasma/plasma-integration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-mediacenter.nix rename to pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-nm/0001-mobile-broadband-provider-info-path.patch rename to pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma/plasma-nm/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-nm/default.nix rename to pkgs/desktops/kde-5/plasma/plasma-nm/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix b/pkgs/desktops/kde-5/plasma/plasma-pa.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-pa.nix rename to pkgs/desktops/kde-5/plasma/plasma-pa.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace-wallpapers.nix rename to pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/default.nix rename to pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/qml-import-path.patch rename to pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/series b/pkgs/desktops/kde-5/plasma/plasma-workspace/series similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/plasma-workspace/series rename to pkgs/desktops/kde-5/plasma/plasma-workspace/series diff --git a/pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/polkit-kde-agent.nix rename to pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix b/pkgs/desktops/kde-5/plasma/powerdevil.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/powerdevil.nix rename to pkgs/desktops/kde-5/plasma/powerdevil.nix diff --git a/pkgs/desktops/kde-5/plasma/srcs.nix b/pkgs/desktops/kde-5/plasma/srcs.nix new file mode 100644 index 00000000000..2dbfb6dd04a --- /dev/null +++ b/pkgs/desktops/kde-5/plasma/srcs.nix @@ -0,0 +1,325 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + bluedevil = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/bluedevil-5.7.1.tar.xz"; + sha256 = "1sz84r27bc4qavb22haqswr1qjv9m47b8j3knvlpzdln4wpxnb81"; + name = "bluedevil-5.7.1.tar.xz"; + }; + }; + breeze = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-5.7.1.tar.xz"; + sha256 = "1sparlwykzr6mjqzv3ghzl59j0xi3yxf0m93sx7d3js92k77rqpk"; + name = "breeze-5.7.1.tar.xz"; + }; + }; + breeze-grub = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-grub-5.7.1.tar.xz"; + sha256 = "0ahpsq429f8cdk2w91h9ji9fiqc7g8m9zlg447pz7r6lxnj9aw3x"; + name = "breeze-grub-5.7.1.tar.xz"; + }; + }; + breeze-gtk = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-gtk-5.7.1.tar.xz"; + sha256 = "1xcznd9m6kxrv8c4j66m4qqgq02h32714dkjwr754k9qfiava2qg"; + name = "breeze-gtk-5.7.1.tar.xz"; + }; + }; + breeze-plymouth = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/breeze-plymouth-5.7.1.tar.xz"; + sha256 = "16wx7k18yxf2jhxl2wwxy1dzdrrlfr9qkxbw72m5c21spx734wwb"; + name = "breeze-plymouth-5.7.1.tar.xz"; + }; + }; + discover = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/discover-5.7.1.tar.xz"; + sha256 = "1r4g4ajyp6ap1nq2n9ngvsgzifypivrkkzfk14c06mmc4fbqblpd"; + name = "discover-5.7.1.tar.xz"; + }; + }; + kactivitymanagerd = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kactivitymanagerd-5.7.1.tar.xz"; + sha256 = "1mc4dxxkvjyrq4khlg1gjhxdhn87xsghwlznp4gnfx4cjgvxi8bq"; + name = "kactivitymanagerd-5.7.1.tar.xz"; + }; + }; + kde-cli-tools = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kde-cli-tools-5.7.1.tar.xz"; + sha256 = "0q3j6kd7yfrp10pbld5pdis8w234442va3h460q9j3bp7n7xp8h9"; + name = "kde-cli-tools-5.7.1.tar.xz"; + }; + }; + kdecoration = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kdecoration-5.7.1.tar.xz"; + sha256 = "181vay4alcckv93cralbj980c4zxbmca710dh9qrmy4nfk2y0pq7"; + name = "kdecoration-5.7.1.tar.xz"; + }; + }; + kde-gtk-config = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kde-gtk-config-5.7.1.tar.xz"; + sha256 = "18xm51j1604gg9sf9cmchqzgfrchwf2may4qhl2glns3c7xnps94"; + name = "kde-gtk-config-5.7.1.tar.xz"; + }; + }; + kdeplasma-addons = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kdeplasma-addons-5.7.1.tar.xz"; + sha256 = "13mg01ll9np8av55ilns1dc0k3rv5cix901gp459dl9r05hzhxgp"; + name = "kdeplasma-addons-5.7.1.tar.xz"; + }; + }; + kgamma5 = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kgamma5-5.7.1.tar.xz"; + sha256 = "1myxjj99jmp2n58f4jbarphr12jh9rqpjmvk2dpcijb94sxaimsl"; + name = "kgamma5-5.7.1.tar.xz"; + }; + }; + khotkeys = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/khotkeys-5.7.1.tar.xz"; + sha256 = "0djnfax9ba1zm3lkxm2hfa4ai399g1p1n0zfpchjfif8639pf6fk"; + name = "khotkeys-5.7.1.tar.xz"; + }; + }; + kinfocenter = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kinfocenter-5.7.1.tar.xz"; + sha256 = "0ynm1lb5f2ggc470k805acxrgxbjw00b780psg60m64bh12jn5ws"; + name = "kinfocenter-5.7.1.tar.xz"; + }; + }; + kmenuedit = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kmenuedit-5.7.1.tar.xz"; + sha256 = "19188hwidv6vak1qas60jzc7bd6fx1slaqkiwljyx8r6w7l1lx4h"; + name = "kmenuedit-5.7.1.tar.xz"; + }; + }; + kscreen = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kscreen-5.7.1.tar.xz"; + sha256 = "0f2zniavlh18ipkn3k6kpzd5nqhlj0pg723dqb3p5zdmxfwddqal"; + name = "kscreen-5.7.1.tar.xz"; + }; + }; + kscreenlocker = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kscreenlocker-5.7.1.tar.xz"; + sha256 = "0dpx1cwvjzsnf9aryavqajlw10iqfmg3vjry50wkg03nb8z1rd49"; + name = "kscreenlocker-5.7.1.tar.xz"; + }; + }; + ksshaskpass = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/ksshaskpass-5.7.1.tar.xz"; + sha256 = "0blmwnm512lld8r3gj2fi7z0cj2nhcngn6xw3568p54ijb5da6c2"; + name = "ksshaskpass-5.7.1.tar.xz"; + }; + }; + ksysguard = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/ksysguard-5.7.1.tar.xz"; + sha256 = "14b9wspfls4q3zl1rxpr6h5kxx9q6dv10x8lbzmxml1fdkid3i5j"; + name = "ksysguard-5.7.1.tar.xz"; + }; + }; + kwallet-pam = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwallet-pam-5.7.1.tar.xz"; + sha256 = "04jxi4a75km9c5gy30aaikqzsd2z2algvh7w6phfqaqq66h5qx8d"; + name = "kwallet-pam-5.7.1.tar.xz"; + }; + }; + kwayland-integration = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwayland-integration-5.7.1.tar.xz"; + sha256 = "0ix30304ggh12xgqnnb9zrniqhklg3a8rkjnp3fad7sr3wa9346s"; + name = "kwayland-integration-5.7.1.tar.xz"; + }; + }; + kwin = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwin-5.7.1.tar.xz"; + sha256 = "0mkvfbsv1ivzs02fphm28km55cn258w6sram9zbqldklk2js7is0"; + name = "kwin-5.7.1.tar.xz"; + }; + }; + kwrited = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/kwrited-5.7.1.tar.xz"; + sha256 = "0mmb4hmwpcmxc03nzqhybwxk5nlyqamdswmr0vf8jcbvcqdmp473"; + name = "kwrited-5.7.1.tar.xz"; + }; + }; + libkscreen = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/libkscreen-5.7.1.tar.xz"; + sha256 = "1my8k7r7i2qh59g46l79xdyci1km3ykxms1314vwzqf7fyadwjnp"; + name = "libkscreen-5.7.1.tar.xz"; + }; + }; + libksysguard = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/libksysguard-5.7.1.tar.xz"; + sha256 = "0249cxgfy6yb9dcc9z2ckxwy7khkbzk0922479v900avaf87l4hj"; + name = "libksysguard-5.7.1.tar.xz"; + }; + }; + milou = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/milou-5.7.1.tar.xz"; + sha256 = "0fcrf8q0sxsgjbi9j2h9qcl4g40mvia1zkb98crzir5qb1z6ji1f"; + name = "milou-5.7.1.tar.xz"; + }; + }; + oxygen = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/oxygen-5.7.1.tar.xz"; + sha256 = "1pjygznb3fjyyvm84dxxj6smm6hpi5mr0c5077rc1xm2p20g7xn0"; + name = "oxygen-5.7.1.tar.xz"; + }; + }; + plasma-desktop = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-desktop-5.7.1.tar.xz"; + sha256 = "1civd76q2lkas8x5pzm57dfjyplmgb91w34avn75lcdkl2p0zq44"; + name = "plasma-desktop-5.7.1.tar.xz"; + }; + }; + plasma-integration = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-integration-5.7.1.tar.xz"; + sha256 = "12cjays5y3zr4za7j49p8yrzk6fxmsgvw4n8i8aida390lbnw5c6"; + name = "plasma-integration-5.7.1.tar.xz"; + }; + }; + plasma-mediacenter = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-mediacenter-5.7.1.tar.xz"; + sha256 = "135c7vgps9nsna4x5b28p8p2lir7wx2ad6p5m4sg7irf2wr6mivd"; + name = "plasma-mediacenter-5.7.1.tar.xz"; + }; + }; + plasma-nm = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-nm-5.7.1.tar.xz"; + sha256 = "0siq0na8cqqp0lqp963miwimsr7w9papj6cpf9k0frw40arqk26h"; + name = "plasma-nm-5.7.1.tar.xz"; + }; + }; + plasma-pa = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-pa-5.7.1.tar.xz"; + sha256 = "0g4rgsf39imknxbccl77d7j7404gfyv0nh6r0dmli19alhhiczay"; + name = "plasma-pa-5.7.1.tar.xz"; + }; + }; + plasma-sdk = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-sdk-5.7.1.tar.xz"; + sha256 = "1mn54zwq9bcrazv6zh832xyagrd4k1xjdwhdqxqbvq1d139v8shj"; + name = "plasma-sdk-5.7.1.tar.xz"; + }; + }; + plasma-workspace = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-5.7.1.tar.xz"; + sha256 = "0x4ghm385kkj2ax91vy10p4f481c6ikpk0azmhnk2d685r7x03yn"; + name = "plasma-workspace-5.7.1.tar.xz"; + }; + }; + plasma-workspace-wallpapers = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-wallpapers-5.7.1.tar.xz"; + sha256 = "0nl3bjb57djzgvx81knrjkbdix9y3j5ggxpd1a6lj80nixicg8h7"; + name = "plasma-workspace-wallpapers-5.7.1.tar.xz"; + }; + }; + polkit-kde-agent = { + version = "1-5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/polkit-kde-agent-1-5.7.1.tar.xz"; + sha256 = "1pcmdplxq0fsa3bdxyl73vpndvhlmsmjbqfc35aa1ds2wkj7ql2q"; + name = "polkit-kde-agent-1-5.7.1.tar.xz"; + }; + }; + powerdevil = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/powerdevil-5.7.1.tar.xz"; + sha256 = "0vdrpfgdw2c2gp6cwmrwyrwgfgxfslypa5ls79cf9wqgkrlh3phy"; + name = "powerdevil-5.7.1.tar.xz"; + }; + }; + sddm-kcm = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/sddm-kcm-5.7.1.tar.xz"; + sha256 = "0bnfy0ndg5040za73sj41ajskwx7bvfa4x92wrfzv27gda3c7fdg"; + name = "sddm-kcm-5.7.1.tar.xz"; + }; + }; + systemsettings = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/systemsettings-5.7.1.tar.xz"; + sha256 = "0arcvhqvcsm59l3fm6brqqcv1084qm8wawj9dj6w5wb194ys41hw"; + name = "systemsettings-5.7.1.tar.xz"; + }; + }; + user-manager = { + version = "5.7.1"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.7.1/user-manager-5.7.1.tar.xz"; + sha256 = "1jzwwzixwbb6f92zi09i3jfs4dqsg3kcjis60w1bh2pkm96gq35y"; + name = "user-manager-5.7.1.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix b/pkgs/desktops/kde-5/plasma/startkde/default.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/startkde/default.nix rename to pkgs/desktops/kde-5/plasma/startkde/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/startkde/startkde.sh rename to pkgs/desktops/kde-5/plasma/startkde/startkde.sh diff --git a/pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix b/pkgs/desktops/kde-5/plasma/systemsettings.nix similarity index 100% rename from pkgs/desktops/kde-5/plasma-5.7/systemsettings.nix rename to pkgs/desktops/kde-5/plasma/systemsettings.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cedc20c020b..6f06b05c156 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16181,7 +16181,7 @@ in kde5 = let frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; - plasma = import ../desktops/kde-5/plasma-5.7 { inherit pkgs; }; + plasma = import ../desktops/kde-5/plasma { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: { plasma = plasma self; From 422ee37e5215ac8b8183075269a2a211739b6130 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:48:06 -0500 Subject: [PATCH 175/508] kde5.applications: 16.04.2 -> 16.04.3 - Update from Applications 16.04.2 to 16.04.3. - Remove the version number from the directory storing the Applications Nix expressions. It is not necessary to version the Nix expressions now that we keep only one version in Nixpkgs. - Fix a bug in generate-kde-applications.sh which prevented it from finding its helper script. - Automatically redirect the output of generate-kde-applications.sh to make the update script even easier to use. --- .../scripts/generate-kde-applications.sh | 4 +- .../kde-5/applications-16.04/srcs.nix | 2093 ----------------- .../ark/0001-fix-start-from-plasma.patch | 0 .../ark/default.nix | 0 .../baloo-widgets.nix | 0 .../default.nix | 12 +- .../dolphin-plugins.nix | 0 .../dolphin.nix | 0 .../ffmpegthumbs.nix | 0 .../filelight.nix | 0 .../gpgmepp.nix | 0 .../gwenview.nix | 0 .../kate.nix | 0 .../kcalc.nix | 0 .../kcolorchooser.nix | 0 .../kde-app.nix | 0 .../kde-locale-4.nix | 0 .../kde-locale-5.nix | 0 .../kdegraphics-thumbnailers.nix | 0 .../0001-old-kde4-cmake-policies.patch | 0 .../kdelibs/0002-polkit-install-path.patch | 0 .../kdelibs/0003-remove_xdg_impurities.patch | 0 .../kdelibs/default.nix | 0 .../kdelibs/setup-hook.sh | 0 .../kdenetwork-filesharing.nix | 0 .../kgpg.nix | 0 .../khelpcenter.nix | 0 .../kio-extras.nix | 0 .../kompare.nix | 0 .../konsole.nix | 0 .../l10n.nix | 0 .../libkdcraw.nix | 0 .../libkexiv2.nix | 0 .../libkipi.nix | 0 .../libkomparediff2.nix | 0 .../okular.nix | 0 .../print-manager.nix | 0 .../spectacle.nix | 0 pkgs/desktops/kde-5/applications/srcs.nix | 2093 +++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- 40 files changed, 2101 insertions(+), 2103 deletions(-) delete mode 100644 pkgs/desktops/kde-5/applications-16.04/srcs.nix rename pkgs/desktops/kde-5/{applications-16.04 => applications}/ark/0001-fix-start-from-plasma.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/ark/default.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/baloo-widgets.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/default.nix (82%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/dolphin-plugins.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/dolphin.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/ffmpegthumbs.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/filelight.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/gpgmepp.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/gwenview.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kate.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kcalc.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kcolorchooser.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kde-app.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kde-locale-4.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kde-locale-5.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdegraphics-thumbnailers.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/0001-old-kde4-cmake-policies.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/0002-polkit-install-path.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/0003-remove_xdg_impurities.patch (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/default.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdelibs/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kdenetwork-filesharing.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kgpg.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/khelpcenter.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kio-extras.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/kompare.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/konsole.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/l10n.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkdcraw.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkexiv2.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkipi.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/libkomparediff2.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/okular.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/print-manager.nix (100%) rename pkgs/desktops/kde-5/{applications-16.04 => applications}/spectacle.nix (100%) create mode 100644 pkgs/desktops/kde-5/applications/srcs.nix diff --git a/maintainers/scripts/generate-kde-applications.sh b/maintainers/scripts/generate-kde-applications.sh index 525abcc3c2d..b4073a05b88 100755 --- a/maintainers/scripts/generate-kde-applications.sh +++ b/maintainers/scripts/generate-kde-applications.sh @@ -1,3 +1,5 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/applications/16.04.2/ -A '*.tar.xz' +./maintainers/scripts/fetch-kde-qt.sh \ + http://download.kde.org/stable/applications/16.04.3/ -A '*.tar.xz' \ + >pkgs/desktops/kde-5/applications/srcs.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/srcs.nix b/pkgs/desktops/kde-5/applications-16.04/srcs.nix deleted file mode 100644 index 6193253e96d..00000000000 --- a/pkgs/desktops/kde-5/applications-16.04/srcs.nix +++ /dev/null @@ -1,2093 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - akonadi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/akonadi-16.04.2.tar.xz"; - sha256 = "0k28dyfpnnnsx6i7cvx1ahmcac1kc2bgzzwqk7mpcwpsmjm0s66v"; - name = "akonadi-16.04.2.tar.xz"; - }; - }; - akonadi-calendar = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/akonadi-calendar-16.04.2.tar.xz"; - sha256 = "0fmq28b1smins3hvhg64rysjqwvqb38x6ybppz3hzqsq6mdmnc7a"; - name = "akonadi-calendar-16.04.2.tar.xz"; - }; - }; - akonadi-search = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/akonadi-search-16.04.2.tar.xz"; - sha256 = "03j7vmccsyr6glc1q2da6znlrkpcvqywzqrb2ychnfmrgjc0xnh4"; - name = "akonadi-search-16.04.2.tar.xz"; - }; - }; - analitza = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/analitza-16.04.2.tar.xz"; - sha256 = "16b1fqkiznds6lv09wcc13n9g8q1a9x6d0k2f7qcd075riq8qp9h"; - name = "analitza-16.04.2.tar.xz"; - }; - }; - ark = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ark-16.04.2.tar.xz"; - sha256 = "02mfwhn5cqxf3a55bm6ij6vmmkyfhacv4apn16bcq458yckjxmhg"; - name = "ark-16.04.2.tar.xz"; - }; - }; - artikulate = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/artikulate-16.04.2.tar.xz"; - sha256 = "0xil6a2vkji91fhwl9r4cifgg1rf0jp0wzqrqavcb22amfx5j1qn"; - name = "artikulate-16.04.2.tar.xz"; - }; - }; - audiocd-kio = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/audiocd-kio-16.04.2.tar.xz"; - sha256 = "1f7im7qzaz6rk8va6fhn3h5zwq0vfh4mfn01j1kc92kz7g7303k8"; - name = "audiocd-kio-16.04.2.tar.xz"; - }; - }; - baloo-widgets = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/baloo-widgets-16.04.2.tar.xz"; - sha256 = "0hff48c51vsdqkvha5s0aw4sml9gkk3g241dv91qavg513mcs6ns"; - name = "baloo-widgets-16.04.2.tar.xz"; - }; - }; - blinken = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/blinken-16.04.2.tar.xz"; - sha256 = "016vk89axs0bvn4hsdmvx0cks9f87x3czrdn6n01cvzlspgl23sg"; - name = "blinken-16.04.2.tar.xz"; - }; - }; - bomber = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/bomber-16.04.2.tar.xz"; - sha256 = "0rzqgydpqaynnfbgajka7hkb0gj360i0chy0q7brha1cilglz9f6"; - name = "bomber-16.04.2.tar.xz"; - }; - }; - bovo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/bovo-16.04.2.tar.xz"; - sha256 = "0iiwqna6h2y698cq7llf6djq5l0bvhg1yxlj3mqkjafgq2542dq5"; - name = "bovo-16.04.2.tar.xz"; - }; - }; - calendarsupport = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/calendarsupport-16.04.2.tar.xz"; - sha256 = "14g5cwj92hkkjpcs2glgimimkcrkl49wckrjnnymmkmj53qf85bs"; - name = "calendarsupport-16.04.2.tar.xz"; - }; - }; - cantor = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/cantor-16.04.2.tar.xz"; - sha256 = "0l2hkpinh4vxgrfs2vjjpp2995q4c89fa8hwf0d92ri3smrfmmrp"; - name = "cantor-16.04.2.tar.xz"; - }; - }; - cervisia = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/cervisia-16.04.2.tar.xz"; - sha256 = "07wbwydq532jhz5xrd6n92r94fxbvlll3mg0hlz2rizc008ni2z4"; - name = "cervisia-16.04.2.tar.xz"; - }; - }; - dolphin = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/dolphin-16.04.2.tar.xz"; - sha256 = "0fs53lxknzzqxrghdb4ba5swrhxfgisqdc69fm7znsjqzpk4l7v2"; - name = "dolphin-16.04.2.tar.xz"; - }; - }; - dolphin-plugins = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/dolphin-plugins-16.04.2.tar.xz"; - sha256 = "078aqhfybyr6k5s716pwjr94rlv1iklq1l2fapyjqfd92ffxnb9c"; - name = "dolphin-plugins-16.04.2.tar.xz"; - }; - }; - dragon = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/dragon-16.04.2.tar.xz"; - sha256 = "160qj3ka3wqs35v01769jijfxc08vlzlbgr99z7acnicv3s2p4j4"; - name = "dragon-16.04.2.tar.xz"; - }; - }; - eventviews = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/eventviews-16.04.2.tar.xz"; - sha256 = "1m6kj8y310kxgw3nkrn4wvgnziqx7igbjyd3jq1459issfiv89ay"; - name = "eventviews-16.04.2.tar.xz"; - }; - }; - ffmpegthumbs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ffmpegthumbs-16.04.2.tar.xz"; - sha256 = "0l0fgnq25j3xbnxl78pl03gr4rx8lndy7254487yqh6gcq9ir4q0"; - name = "ffmpegthumbs-16.04.2.tar.xz"; - }; - }; - filelight = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/filelight-16.04.2.tar.xz"; - sha256 = "0rl2rc7p92bawzyfplnfmg020yvjrdslk3vr3fn37zriaq8nsdx3"; - name = "filelight-16.04.2.tar.xz"; - }; - }; - gpgmepp = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/gpgmepp-16.04.2.tar.xz"; - sha256 = "0p3szvx59hrfwg81nf3bwxy2wyan0y8ahri70icq4dq6wr1qswg8"; - name = "gpgmepp-16.04.2.tar.xz"; - }; - }; - granatier = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/granatier-16.04.2.tar.xz"; - sha256 = "131q61zc78mw26bg3z0fn61iw5jp656lizlh3bq2kw76n6gcar3q"; - name = "granatier-16.04.2.tar.xz"; - }; - }; - grantleetheme = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/grantleetheme-16.04.2.tar.xz"; - sha256 = "1glwcs4j19pbfsqq79krq8v62h8pdmm327jhsiwcbxzxmnl30r5p"; - name = "grantleetheme-16.04.2.tar.xz"; - }; - }; - gwenview = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/gwenview-16.04.2.tar.xz"; - sha256 = "1p1wfdgyl94mis8zvwqd32sk2wfwycz6ppsznaksvxjrzwlyxbl0"; - name = "gwenview-16.04.2.tar.xz"; - }; - }; - incidenceeditor = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/incidenceeditor-16.04.2.tar.xz"; - sha256 = "1q9vy4l1ysxjnjdgq78gy5sj35z4wxjx379l1jspcdq2ibnqisl0"; - name = "incidenceeditor-16.04.2.tar.xz"; - }; - }; - jovie = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/jovie-16.04.2.tar.xz"; - sha256 = "02jslqk8yi54s8qhz796aj7z00h6swhpzqp28idh0fc9hzn5slpm"; - name = "jovie-16.04.2.tar.xz"; - }; - }; - juk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/juk-16.04.2.tar.xz"; - sha256 = "05f3nj3ch4cjglj9xs0j580xks5xsa1wf94kw3vz5qsswsi3h93v"; - name = "juk-16.04.2.tar.xz"; - }; - }; - kaccessible = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kaccessible-16.04.2.tar.xz"; - sha256 = "12ffbhc8wgqb0qcr03s9dch0s13dxa3fgs18vinjqswmsrg7f99a"; - name = "kaccessible-16.04.2.tar.xz"; - }; - }; - kaccounts-integration = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kaccounts-integration-16.04.2.tar.xz"; - sha256 = "0l9hlk4a3ryrjhppyp0l0qygfgqxf3m5977cybyzmsnf8yj0aqg7"; - name = "kaccounts-integration-16.04.2.tar.xz"; - }; - }; - kaccounts-providers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kaccounts-providers-16.04.2.tar.xz"; - sha256 = "1kldqkxvaw0782yixig6dsr5r9ybpqf043qdzw5hm5rdrzssr4j0"; - name = "kaccounts-providers-16.04.2.tar.xz"; - }; - }; - kajongg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kajongg-16.04.2.tar.xz"; - sha256 = "0g1fmy7m9a8n0z6p1dgdyinv6yfkp91jxji5vm7yrlkkas7l0x0v"; - name = "kajongg-16.04.2.tar.xz"; - }; - }; - kalarmcal = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kalarmcal-16.04.2.tar.xz"; - sha256 = "1y3bhphg4lb9dayycp2xpdvzmk8n47qlz6cxxasyr8kc32v6i1a7"; - name = "kalarmcal-16.04.2.tar.xz"; - }; - }; - kalgebra = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kalgebra-16.04.2.tar.xz"; - sha256 = "02xh19igwwdvmw233flvvwjh01kph314z88vd4fzkczn000nqfax"; - name = "kalgebra-16.04.2.tar.xz"; - }; - }; - kalzium = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kalzium-16.04.2.tar.xz"; - sha256 = "18q6mbdc40my0xk2n28fmjvcyqv46jckqslkgr183yhy0aqbdgh0"; - name = "kalzium-16.04.2.tar.xz"; - }; - }; - kamera = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kamera-16.04.2.tar.xz"; - sha256 = "1ix30y9hvh1dn4xvgmg1y70bj2xdvkl5x5jwhppccb1ck2jlmp7g"; - name = "kamera-16.04.2.tar.xz"; - }; - }; - kanagram = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kanagram-16.04.2.tar.xz"; - sha256 = "17d9jw9fj1x3v6l6q2n3z5b92gpvg8fydbpinym9wzjrixpcqx1q"; - name = "kanagram-16.04.2.tar.xz"; - }; - }; - kapman = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kapman-16.04.2.tar.xz"; - sha256 = "0bi4mvashs5y5wr9fi8rmmq4f3ww9qixh850ar778dwdf11cy9vc"; - name = "kapman-16.04.2.tar.xz"; - }; - }; - kapptemplate = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kapptemplate-16.04.2.tar.xz"; - sha256 = "0xs8bfknfa38fhn1jnk7xxmlsgrwnvbg78fjpq8mfnjlzi9xf55c"; - name = "kapptemplate-16.04.2.tar.xz"; - }; - }; - kate = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kate-16.04.2.tar.xz"; - sha256 = "04b89mp11jbi6dpwmq9g7j9c4favykbxbsc34li7cisr1d8nfxyv"; - name = "kate-16.04.2.tar.xz"; - }; - }; - katomic = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/katomic-16.04.2.tar.xz"; - sha256 = "0vj41ad41bw7dy94i7aw74211r45p703ajh8kgk32zv1157h30va"; - name = "katomic-16.04.2.tar.xz"; - }; - }; - kblackbox = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kblackbox-16.04.2.tar.xz"; - sha256 = "1ad9px5d4z0c9ap4cl7jxvh6scid965d2phspcvhy68yc4pxk161"; - name = "kblackbox-16.04.2.tar.xz"; - }; - }; - kblocks = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kblocks-16.04.2.tar.xz"; - sha256 = "1iyymacvzi8acbq0vlhcw0zdykkafjj674s997mz7pzbb5q7rli3"; - name = "kblocks-16.04.2.tar.xz"; - }; - }; - kblog = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kblog-16.04.2.tar.xz"; - sha256 = "0ljc22dhvjb2j0qz6h693h8sxixjsd01lgrx9g0r1qi9zy55kdk0"; - name = "kblog-16.04.2.tar.xz"; - }; - }; - kbounce = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kbounce-16.04.2.tar.xz"; - sha256 = "19jj1abv0831zkql1khd1n6yp9gwd6znf3x4w0c1yijnhr91aja5"; - name = "kbounce-16.04.2.tar.xz"; - }; - }; - kbreakout = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kbreakout-16.04.2.tar.xz"; - sha256 = "1czfnzndwf2g796nc7pn4wvkm1gfzizjf92inni16f7s1mqka420"; - name = "kbreakout-16.04.2.tar.xz"; - }; - }; - kbruch = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kbruch-16.04.2.tar.xz"; - sha256 = "1dbaympl6kf96zc93p5jawb0w77rcjhj8akrsbwrhvkzz3a9nfvh"; - name = "kbruch-16.04.2.tar.xz"; - }; - }; - kcachegrind = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcachegrind-16.04.2.tar.xz"; - sha256 = "105pr1njfj8r4i9lcgd2h3f2k1np19ajjvlykxa8ibim99nhj062"; - name = "kcachegrind-16.04.2.tar.xz"; - }; - }; - kcalc = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcalc-16.04.2.tar.xz"; - sha256 = "1pgsbyffij6iil0bgpvxfb1wdikj90n2q0ykazahclnraqc3swl6"; - name = "kcalc-16.04.2.tar.xz"; - }; - }; - kcalcore = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcalcore-16.04.2.tar.xz"; - sha256 = "18w11kyyrchzdcqff2w4bzbspbaak513kqvkas87ainzp29zqs1p"; - name = "kcalcore-16.04.2.tar.xz"; - }; - }; - kcalutils = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcalutils-16.04.2.tar.xz"; - sha256 = "17c6c5ybyb9asvn3r5bq03hbpkbb5hifvhqlimgbr54ldrm5k950"; - name = "kcalutils-16.04.2.tar.xz"; - }; - }; - kcharselect = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcharselect-16.04.2.tar.xz"; - sha256 = "0qwks9l6ihzfbfcricy3zmpbdq0hlc5hal6zsb3b3j2pcrb95x4l"; - name = "kcharselect-16.04.2.tar.xz"; - }; - }; - kcolorchooser = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcolorchooser-16.04.2.tar.xz"; - sha256 = "0809rjs7z711fc07bmm95psy80h0knz579dzk9jbphrnj8irmbqk"; - name = "kcolorchooser-16.04.2.tar.xz"; - }; - }; - kcontacts = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcontacts-16.04.2.tar.xz"; - sha256 = "1gdbwq5vqgcn2xpl0q676awvc7k8w7fqh5wvmq6s4qdc2i1knlxn"; - name = "kcontacts-16.04.2.tar.xz"; - }; - }; - kcron = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kcron-16.04.2.tar.xz"; - sha256 = "0qmw74c292mbpj683znr3ax1m6mkdyprgw3ql2xc0bl65vxspl00"; - name = "kcron-16.04.2.tar.xz"; - }; - }; - kde-baseapps = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-baseapps-16.04.2.tar.xz"; - sha256 = "1rcwxjvr8b4gdd71dab56057g1z136hpcik15qavxvzk0218n3b4"; - name = "kde-baseapps-16.04.2.tar.xz"; - }; - }; - kdebugsettings = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdebugsettings-16.04.2.tar.xz"; - sha256 = "0sk1marscwq8r032824igyingk25sk6xhzx8y131b592mwjqaabc"; - name = "kdebugsettings-16.04.2.tar.xz"; - }; - }; - kde-dev-scripts = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-dev-scripts-16.04.2.tar.xz"; - sha256 = "0xj9l7sv83ccqi1makxdw20kzwpjfk0gdmagbg8wxr0zrmmzwrzk"; - name = "kde-dev-scripts-16.04.2.tar.xz"; - }; - }; - kde-dev-utils = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-dev-utils-16.04.2.tar.xz"; - sha256 = "1n0m28w29pjmacpyrb0rian3zc8fi829x0pmf1j0k43lfp6m5f6m"; - name = "kde-dev-utils-16.04.2.tar.xz"; - }; - }; - kdeedu-data = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdeedu-data-16.04.2.tar.xz"; - sha256 = "0kpax6ydfzqr4nh5bf7yxij1cfj0vjwpj2s7l0nxg3a3hw1m91xr"; - name = "kdeedu-data-16.04.2.tar.xz"; - }; - }; - kdegraphics-mobipocket = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-mobipocket-16.04.2.tar.xz"; - sha256 = "1vs68j28i0p0l7lzq9dyjbbx8h8vf5q6lcp624xcnfbhhgczcwjx"; - name = "kdegraphics-mobipocket-16.04.2.tar.xz"; - }; - }; - kdegraphics-strigi-analyzer = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-strigi-analyzer-16.04.2.tar.xz"; - sha256 = "05xjbjfx7gid3vhw56x6vl2xq577dj1lamqjfjwia0a1y8k2jcci"; - name = "kdegraphics-strigi-analyzer-16.04.2.tar.xz"; - }; - }; - kdegraphics-thumbnailers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdegraphics-thumbnailers-16.04.2.tar.xz"; - sha256 = "1w8zy6zir0yxy1189kbww70sxgb1qcdr3hx4564ac5mnsqi6yyna"; - name = "kdegraphics-thumbnailers-16.04.2.tar.xz"; - }; - }; - kde-l10n-ar = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ar-16.04.2.tar.xz"; - sha256 = "12zg36ghyirgazrk19iyk1lcxs3wb92a1bawvgpfz5k8lr8b063s"; - name = "kde-l10n-ar-16.04.2.tar.xz"; - }; - }; - kde-l10n-ast = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ast-16.04.2.tar.xz"; - sha256 = "08ca94pln9ylhdlmf6gm4h0k9ggyiz760jrpl27j62940nkzw462"; - name = "kde-l10n-ast-16.04.2.tar.xz"; - }; - }; - kde-l10n-bg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-bg-16.04.2.tar.xz"; - sha256 = "15gxgi9p61xva4js94dc7nn27lsfcaalbbas41j6zyvzkychvfdc"; - name = "kde-l10n-bg-16.04.2.tar.xz"; - }; - }; - kde-l10n-bs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-bs-16.04.2.tar.xz"; - sha256 = "0441gcmwvgrwwdzb7zgbdm2mfc630znylhzkn80nrjryr0g7m75m"; - name = "kde-l10n-bs-16.04.2.tar.xz"; - }; - }; - kde-l10n-ca = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ca-16.04.2.tar.xz"; - sha256 = "059n0ycci6nxsmh2sn8j3npd4h64v2bs0phw7yg990vdnzxfrxxh"; - name = "kde-l10n-ca-16.04.2.tar.xz"; - }; - }; - kde-l10n-ca_valencia = { - version = "ca_valencia-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ca@valencia-16.04.2.tar.xz"; - sha256 = "0xzhkirfhkd1gm93mw2xi529qlyyljs8vxd36bq2df63a45bjzpa"; - name = "kde-l10n-ca_valencia-16.04.2.tar.xz"; - }; - }; - kde-l10n-cs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-cs-16.04.2.tar.xz"; - sha256 = "18nfigrna4kpmpiiyasqirh57jf46l6y1vms97m12jkbx4awdxjn"; - name = "kde-l10n-cs-16.04.2.tar.xz"; - }; - }; - kde-l10n-da = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-da-16.04.2.tar.xz"; - sha256 = "0rz5i9q1jhcdh2fa1rh0zw751wwividy3q2z5ijs4ir5yn2qygph"; - name = "kde-l10n-da-16.04.2.tar.xz"; - }; - }; - kde-l10n-de = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-de-16.04.2.tar.xz"; - sha256 = "1vqb1q1jg3lz9qgv4zx1s4gyg3w3zllj92n50pqxzcbfdwajhwp6"; - name = "kde-l10n-de-16.04.2.tar.xz"; - }; - }; - kde-l10n-el = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-el-16.04.2.tar.xz"; - sha256 = "159s1pl21n2pl3ppjgmshz0a374ic3dsrkkwsjnpvi20hhblvzl9"; - name = "kde-l10n-el-16.04.2.tar.xz"; - }; - }; - kde-l10n-en_GB = { - version = "en_GB-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-en_GB-16.04.2.tar.xz"; - sha256 = "0y6y0f6w1fjdh0ppirdlpw1ywa8mqffwqhyczy0bnws3pbravpii"; - name = "kde-l10n-en_GB-16.04.2.tar.xz"; - }; - }; - kde-l10n-eo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-eo-16.04.2.tar.xz"; - sha256 = "1g4giais33yj061ikzxf26s6ahhczyg4kdaq54f58lj2sy86x86f"; - name = "kde-l10n-eo-16.04.2.tar.xz"; - }; - }; - kde-l10n-es = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-es-16.04.2.tar.xz"; - sha256 = "0r33v69axgb283zypb9bck2xy3x02d36230qiyvghnpw0kbhxr60"; - name = "kde-l10n-es-16.04.2.tar.xz"; - }; - }; - kde-l10n-et = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-et-16.04.2.tar.xz"; - sha256 = "0676ddhr7gvkr0a319yz4hx3macqfcaal4gbzcggnfxl639j65ab"; - name = "kde-l10n-et-16.04.2.tar.xz"; - }; - }; - kde-l10n-eu = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-eu-16.04.2.tar.xz"; - sha256 = "1af71wkzsr6whmqxjbicz6vs94miw0nz23ifsh45bnlbjdmkrfk7"; - name = "kde-l10n-eu-16.04.2.tar.xz"; - }; - }; - kde-l10n-fa = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fa-16.04.2.tar.xz"; - sha256 = "0cpslb17x7k1xjcrp35wp54xmbka0k8z3qwwz20x7bbv9hdind5k"; - name = "kde-l10n-fa-16.04.2.tar.xz"; - }; - }; - kde-l10n-fi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fi-16.04.2.tar.xz"; - sha256 = "0x952d7yhm2dgj5pqm6spiwmnfphqarny5w27fpywi7fs9dnan9f"; - name = "kde-l10n-fi-16.04.2.tar.xz"; - }; - }; - kde-l10n-fr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-fr-16.04.2.tar.xz"; - sha256 = "1ay2rn9ki077sml0cjbyhca6f1rmdpmsrq0drrsh5qbn3z0ija73"; - name = "kde-l10n-fr-16.04.2.tar.xz"; - }; - }; - kde-l10n-ga = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ga-16.04.2.tar.xz"; - sha256 = "16vn7nmjfp9bgmr41z71800zsgq4x19lay48ls2fgvgpjk6m3m66"; - name = "kde-l10n-ga-16.04.2.tar.xz"; - }; - }; - kde-l10n-gl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-gl-16.04.2.tar.xz"; - sha256 = "1hsl3mn7wsgl40wnbyd3ilqp0cdivj9alg4wxmdlz33ybw58apvy"; - name = "kde-l10n-gl-16.04.2.tar.xz"; - }; - }; - kde-l10n-he = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-he-16.04.2.tar.xz"; - sha256 = "03ifbz9id9dhq04hi2z9zkmbp7aijdkfhrv242k4fvrj2ri0zj2z"; - name = "kde-l10n-he-16.04.2.tar.xz"; - }; - }; - kde-l10n-hi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hi-16.04.2.tar.xz"; - sha256 = "1iwlgg632dfzw7nhn892cnk28q4qwd4iirwsbz6lzfh8bpnibna5"; - name = "kde-l10n-hi-16.04.2.tar.xz"; - }; - }; - kde-l10n-hr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hr-16.04.2.tar.xz"; - sha256 = "1b77mmd50mq7gfxkxjpifsdb6q1m5d7l9cg6w4l1l1mdmkh60nxn"; - name = "kde-l10n-hr-16.04.2.tar.xz"; - }; - }; - kde-l10n-hu = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-hu-16.04.2.tar.xz"; - sha256 = "10338x2r4w8cbr4hkpyia444zgr475p780i3z2317wr7iwq7sfja"; - name = "kde-l10n-hu-16.04.2.tar.xz"; - }; - }; - kde-l10n-ia = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ia-16.04.2.tar.xz"; - sha256 = "109w8nz412fmvld9ban5g2dcaziiq1bjbwh37r3fm4fqbf3c29kz"; - name = "kde-l10n-ia-16.04.2.tar.xz"; - }; - }; - kde-l10n-id = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-id-16.04.2.tar.xz"; - sha256 = "1z6gbv4ipdr1qqanlpa9v3xcb8xq4a5gvbq1g0xibgs1mykn441j"; - name = "kde-l10n-id-16.04.2.tar.xz"; - }; - }; - kde-l10n-is = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-is-16.04.2.tar.xz"; - sha256 = "07r6g2i4f76ag5f60hnn0602q4c3qzpz2fz9wggrdn9wq3mfagda"; - name = "kde-l10n-is-16.04.2.tar.xz"; - }; - }; - kde-l10n-it = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-it-16.04.2.tar.xz"; - sha256 = "0gnjd7crlffjnpnci38d3p9d7j62yknm1swjb15pkrrph7ga31x9"; - name = "kde-l10n-it-16.04.2.tar.xz"; - }; - }; - kde-l10n-ja = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ja-16.04.2.tar.xz"; - sha256 = "1ciij3r7lxmpghv6wvc1i0dhdbzq92r54c6sl8jrpwc301a3si0v"; - name = "kde-l10n-ja-16.04.2.tar.xz"; - }; - }; - kde-l10n-kk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-kk-16.04.2.tar.xz"; - sha256 = "0qqyl7zndccnh6z49r1x61y6s7ycpq158yp1wy686q7b84zf47wx"; - name = "kde-l10n-kk-16.04.2.tar.xz"; - }; - }; - kde-l10n-km = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-km-16.04.2.tar.xz"; - sha256 = "0p6cgbngbx72cz3qzmbwcn237f0ibnvk55vzdiiwysdlg4zq4nnj"; - name = "kde-l10n-km-16.04.2.tar.xz"; - }; - }; - kde-l10n-ko = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ko-16.04.2.tar.xz"; - sha256 = "0rqsxfq42gxz5ygfsnfsymz0vf0bgk0dwnwcaczv0frjg1mxg8pb"; - name = "kde-l10n-ko-16.04.2.tar.xz"; - }; - }; - kde-l10n-lt = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-lt-16.04.2.tar.xz"; - sha256 = "0x4mqy1m6ybzf70amkzq8c6jzb2idyqpd3d9cqmx56aibs1bmnr3"; - name = "kde-l10n-lt-16.04.2.tar.xz"; - }; - }; - kde-l10n-lv = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-lv-16.04.2.tar.xz"; - sha256 = "1w5ry4br8dzb0vwr9vqd6z4ns89zpjwmr8md4vwp59nc80x4583k"; - name = "kde-l10n-lv-16.04.2.tar.xz"; - }; - }; - kde-l10n-mr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-mr-16.04.2.tar.xz"; - sha256 = "1bj7adx1h66l6pwcnb17vkhv1iarslbsk73nsxcvkz53sw1l7mrh"; - name = "kde-l10n-mr-16.04.2.tar.xz"; - }; - }; - kde-l10n-nb = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nb-16.04.2.tar.xz"; - sha256 = "100zma2jp7gfqjc8xzzqqjcvqqqn0g7baiv4r2l24m0cx37m3ndf"; - name = "kde-l10n-nb-16.04.2.tar.xz"; - }; - }; - kde-l10n-nds = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nds-16.04.2.tar.xz"; - sha256 = "1v8qwjhrjyyjqhbdiznqbhvvb2vg7in1zsjyzjwyimqkm2qca8nh"; - name = "kde-l10n-nds-16.04.2.tar.xz"; - }; - }; - kde-l10n-nl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nl-16.04.2.tar.xz"; - sha256 = "1djdvm3nklssgqnz9xgi3sc0vvjrfi0fnpjbyc87r2vg7q33iccq"; - name = "kde-l10n-nl-16.04.2.tar.xz"; - }; - }; - kde-l10n-nn = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-nn-16.04.2.tar.xz"; - sha256 = "0lbk48q8j3clpv867hfpj5qxzxizmx3x6rz87c3qn09kg1nng93z"; - name = "kde-l10n-nn-16.04.2.tar.xz"; - }; - }; - kde-l10n-pa = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pa-16.04.2.tar.xz"; - sha256 = "129p7x37yx1f3q0n5x7brnkrisnfj7x1m92mnqqmjlsf47na4l97"; - name = "kde-l10n-pa-16.04.2.tar.xz"; - }; - }; - kde-l10n-pl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pl-16.04.2.tar.xz"; - sha256 = "0dp3rn1vh4q1ks7165zdjn4avyplg5kg2nbkqg8jcm8702v0f674"; - name = "kde-l10n-pl-16.04.2.tar.xz"; - }; - }; - kde-l10n-pt = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pt-16.04.2.tar.xz"; - sha256 = "1irk84qzsxa0s6q7jwq3qzc76vkx4i3gd3ymmrw40376n1c2wiv8"; - name = "kde-l10n-pt-16.04.2.tar.xz"; - }; - }; - kde-l10n-pt_BR = { - version = "pt_BR-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-pt_BR-16.04.2.tar.xz"; - sha256 = "1f7r17zm4bq32xypccmgkaj80hyjrc4dvqd2gkk04pq8kqv22924"; - name = "kde-l10n-pt_BR-16.04.2.tar.xz"; - }; - }; - kde-l10n-ro = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ro-16.04.2.tar.xz"; - sha256 = "172z2vzlldk2g7a65r9dvbsspxszha1m9q2qkzaq9hciklgznr64"; - name = "kde-l10n-ro-16.04.2.tar.xz"; - }; - }; - kde-l10n-ru = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ru-16.04.2.tar.xz"; - sha256 = "060s0gcy1mv7wqmk33ambqcn7dd589vvccjxkwvbqwsn0lsjykyb"; - name = "kde-l10n-ru-16.04.2.tar.xz"; - }; - }; - kde-l10n-sk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sk-16.04.2.tar.xz"; - sha256 = "1353kldi2gvhrnb3dpyhnf3lbj22jcd5ri5ar5j7bq4v2jzb36nl"; - name = "kde-l10n-sk-16.04.2.tar.xz"; - }; - }; - kde-l10n-sl = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sl-16.04.2.tar.xz"; - sha256 = "1ibwa1884l4w5z7ys62pqs359c8aa0m9w5chn6l3p55qlkzvf007"; - name = "kde-l10n-sl-16.04.2.tar.xz"; - }; - }; - kde-l10n-sr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sr-16.04.2.tar.xz"; - sha256 = "0zs31gr7lz7fcvcv106aj2ilbkjcd5mqbfvpj6zqkrmjcyi8j6a8"; - name = "kde-l10n-sr-16.04.2.tar.xz"; - }; - }; - kde-l10n-sv = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-sv-16.04.2.tar.xz"; - sha256 = "16h8gvzd52zah3643jxaab1aik93b31hbv07z2mipdpdl2fzl039"; - name = "kde-l10n-sv-16.04.2.tar.xz"; - }; - }; - kde-l10n-tr = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-tr-16.04.2.tar.xz"; - sha256 = "0mysq61p6ph4wrrjkd0nrq6w6mxcsg0q9infrp5sgpaqqds58yia"; - name = "kde-l10n-tr-16.04.2.tar.xz"; - }; - }; - kde-l10n-ug = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-ug-16.04.2.tar.xz"; - sha256 = "198f8fk0pw79z7n0b7q5vpsmwfjg2a6l1vwl9qab5a97bcwq4l4d"; - name = "kde-l10n-ug-16.04.2.tar.xz"; - }; - }; - kde-l10n-uk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-uk-16.04.2.tar.xz"; - sha256 = "18wjsab7dv9li5p6k087h9w3kf9rr5hy08yms1wd3wn2gg566nbi"; - name = "kde-l10n-uk-16.04.2.tar.xz"; - }; - }; - kde-l10n-wa = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-wa-16.04.2.tar.xz"; - sha256 = "1qmrkhf9lfccsvj966pv045i0z56642l7jzd0ry4n0ifngancvqp"; - name = "kde-l10n-wa-16.04.2.tar.xz"; - }; - }; - kde-l10n-zh_CN = { - version = "zh_CN-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-zh_CN-16.04.2.tar.xz"; - sha256 = "1vcbjl49721gnbg03f07azwr30hv7y0szaagp1kxw8npa1yk9dn2"; - name = "kde-l10n-zh_CN-16.04.2.tar.xz"; - }; - }; - kde-l10n-zh_TW = { - version = "zh_TW-16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-l10n/kde-l10n-zh_TW-16.04.2.tar.xz"; - sha256 = "1i8ax0cn59plqiq6sd1x0svjq2w37dr2x616q730hjygkks306ik"; - name = "kde-l10n-zh_TW-16.04.2.tar.xz"; - }; - }; - kdelibs = { - version = "4.14.21"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdelibs-4.14.21.tar.xz"; - sha256 = "0hi2rdx3z3xiqbyi1hx04ls88irl30x8as1c9c07zrd4d1qpazs8"; - name = "kdelibs-4.14.21.tar.xz"; - }; - }; - kdenetwork-filesharing = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdenetwork-filesharing-16.04.2.tar.xz"; - sha256 = "026g1m7ch8vy8ckqc9j4aapp8s7c4v59jdj4qx5z8jy7n27645z2"; - name = "kdenetwork-filesharing-16.04.2.tar.xz"; - }; - }; - kdenetwork-strigi-analyzers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdenetwork-strigi-analyzers-16.04.2.tar.xz"; - sha256 = "03jcl9ibhlqlijkps8ab95prp9bqswi82pd79j2dcqgldy681zm9"; - name = "kdenetwork-strigi-analyzers-16.04.2.tar.xz"; - }; - }; - kdenlive = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdenlive-16.04.2.tar.xz"; - sha256 = "00pn2szyiny137j3kvymcdh28cjpbw5k65ziiljaiw0q6a558ibj"; - name = "kdenlive-16.04.2.tar.xz"; - }; - }; - kdepim = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-16.04.2.tar.xz"; - sha256 = "1vvgblkdz9v5cv01saaph8mxhf7pc1lg9z8aasisx6m14131wdqj"; - name = "kdepim-16.04.2.tar.xz"; - }; - }; - kdepim-addons = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-addons-16.04.2.tar.xz"; - sha256 = "185cp7ld9yjap74xknn9cq0j3ch6l0gpkxgyxr1ngfdvmbwswyrs"; - name = "kdepim-addons-16.04.2.tar.xz"; - }; - }; - kdepim-apps-libs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-apps-libs-16.04.2.tar.xz"; - sha256 = "1f5mq58zxa9zpif4f8b72w762l8di5gx9zxlpzc62k80z6z5hc3d"; - name = "kdepim-apps-libs-16.04.2.tar.xz"; - }; - }; - kdepimlibs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepimlibs-16.04.2.tar.xz"; - sha256 = "11rdb7558b7lvawqvanvdbvq9kmapngmid1fzx0ai5xza7miiplc"; - name = "kdepimlibs-16.04.2.tar.xz"; - }; - }; - kdepim-runtime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdepim-runtime-16.04.2.tar.xz"; - sha256 = "0rf2axz23lzk4g8686brs8hswj3f0is08vvhcx7y960g7yikm2r2"; - name = "kdepim-runtime-16.04.2.tar.xz"; - }; - }; - kde-runtime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kde-runtime-16.04.2.tar.xz"; - sha256 = "070m7x0b97073pnqcy6bcl1yj6zh9vd855638sd8xpxjvqfsf5b9"; - name = "kde-runtime-16.04.2.tar.xz"; - }; - }; - kdesdk-kioslaves = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdesdk-kioslaves-16.04.2.tar.xz"; - sha256 = "0fnr1rqzwlpmgikj3if5xqgnazf5rbnyw69b8lsxxvbs7fy23xmi"; - name = "kdesdk-kioslaves-16.04.2.tar.xz"; - }; - }; - kdesdk-strigi-analyzers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdesdk-strigi-analyzers-16.04.2.tar.xz"; - sha256 = "0jj1zr044pqn45zndlkdywnjyvm6qyiiaxxhq6vfmi6b54rxdfv3"; - name = "kdesdk-strigi-analyzers-16.04.2.tar.xz"; - }; - }; - kdesdk-thumbnailers = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdesdk-thumbnailers-16.04.2.tar.xz"; - sha256 = "02w5a8q6yn550iwsnjnika9kxpk5ap84d3bij02rym6as36hhdji"; - name = "kdesdk-thumbnailers-16.04.2.tar.xz"; - }; - }; - kdewebdev = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdewebdev-16.04.2.tar.xz"; - sha256 = "1hx51mr6lv9mfx35cf24rp7hn47pwbsnjk4qsb7hlv0049jvidgp"; - name = "kdewebdev-16.04.2.tar.xz"; - }; - }; - kdf = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdf-16.04.2.tar.xz"; - sha256 = "191xzqrdbv38xcxpzr5h24a33l3w8pvjrpymilwbjyjf621h649l"; - name = "kdf-16.04.2.tar.xz"; - }; - }; - kdgantt2 = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdgantt2-16.04.2.tar.xz"; - sha256 = "12xj5sqf1l4i7sakpa5845hdmxb62gbj08irg7dq55wxk6jz1a0r"; - name = "kdgantt2-16.04.2.tar.xz"; - }; - }; - kdiamond = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kdiamond-16.04.2.tar.xz"; - sha256 = "0vyyj4ab2avbwy998skr5728221by5l730q2lx9n886wig6w4r34"; - name = "kdiamond-16.04.2.tar.xz"; - }; - }; - kfloppy = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kfloppy-16.04.2.tar.xz"; - sha256 = "0dp921jpwrdq892dgi5axij822zkfkmclr94g5sbpv223gx2ds3p"; - name = "kfloppy-16.04.2.tar.xz"; - }; - }; - kfourinline = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kfourinline-16.04.2.tar.xz"; - sha256 = "0dxxi36pp4k0brv7x2aqycs26kpjgrsydqn2rw0k25gka5msrsm2"; - name = "kfourinline-16.04.2.tar.xz"; - }; - }; - kgeography = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kgeography-16.04.2.tar.xz"; - sha256 = "1rmwcv0pa043k12l64pa8wg1iq2iyv07h04mvj99957856qyzkcj"; - name = "kgeography-16.04.2.tar.xz"; - }; - }; - kget = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kget-16.04.2.tar.xz"; - sha256 = "0mgjpl15m9pihprksy1bbzydp0vbkklkcjd04hfsd0nq0g5dxkpx"; - name = "kget-16.04.2.tar.xz"; - }; - }; - kgoldrunner = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kgoldrunner-16.04.2.tar.xz"; - sha256 = "0ijby2k9ggsqcwrhbwy4w0jazvmy68j5k1hcw1p7vq15s5j2rp1k"; - name = "kgoldrunner-16.04.2.tar.xz"; - }; - }; - kgpg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kgpg-16.04.2.tar.xz"; - sha256 = "1hqnk5xik1v89d8q2z6y6yp844z9h8v9lc689kszv9prwswg1xj8"; - name = "kgpg-16.04.2.tar.xz"; - }; - }; - khangman = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/khangman-16.04.2.tar.xz"; - sha256 = "12hhvkd6zqj1s5kn0yw8fk8mpwnxhgsapwn702hcvfz1lxkd9qy4"; - name = "khangman-16.04.2.tar.xz"; - }; - }; - khelpcenter = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/khelpcenter-16.04.2.tar.xz"; - sha256 = "06ph45mfadhb12bdcp2rgbvfsq9n2s6wdl5x3fy0hpy58w6yy4cd"; - name = "khelpcenter-16.04.2.tar.xz"; - }; - }; - kholidays = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kholidays-16.04.2.tar.xz"; - sha256 = "1ha5yhjyfblh6j1wfx05433cclgnch8maic495ica014lcdb9ff0"; - name = "kholidays-16.04.2.tar.xz"; - }; - }; - kidentitymanagement = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kidentitymanagement-16.04.2.tar.xz"; - sha256 = "0g3cw81c0549237qlhrx0bna5avnsryniq3gccwy862lsgj92nhv"; - name = "kidentitymanagement-16.04.2.tar.xz"; - }; - }; - kig = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kig-16.04.2.tar.xz"; - sha256 = "07zqs1sbj6vfjfckvf5d4dw43cnc84bivrv3qldlg77k99z0x0wa"; - name = "kig-16.04.2.tar.xz"; - }; - }; - kigo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kigo-16.04.2.tar.xz"; - sha256 = "057nfhngiwf5cfn8xaysii26b4b16105hw1a98kgf8aynyasrd19"; - name = "kigo-16.04.2.tar.xz"; - }; - }; - killbots = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/killbots-16.04.2.tar.xz"; - sha256 = "0k9psr5w4nbfymldr6x8i5mc91fxzgv4khygfw6bi0w1zdlbp7s3"; - name = "killbots-16.04.2.tar.xz"; - }; - }; - kimap = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kimap-16.04.2.tar.xz"; - sha256 = "0i4hfbm2ch71fj52fc08p0rmsqx8r9hw8ia1r2nipv8wl33a099x"; - name = "kimap-16.04.2.tar.xz"; - }; - }; - kio-extras = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kio-extras-16.04.2.tar.xz"; - sha256 = "1qi580d3aqhkh80sj7vphchsl7xfcjbc100cg81b7rdwpa4qv0aq"; - name = "kio-extras-16.04.2.tar.xz"; - }; - }; - kiriki = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kiriki-16.04.2.tar.xz"; - sha256 = "0pq5ai3f27fn7hh3ni0s99ja94nmrlcy3vhvl4h0f94q16lwwhvf"; - name = "kiriki-16.04.2.tar.xz"; - }; - }; - kiten = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kiten-16.04.2.tar.xz"; - sha256 = "1bxvf01k75yhahq97199q6cf3xcjdc92kn8wr628k3wd6xnqcn0a"; - name = "kiten-16.04.2.tar.xz"; - }; - }; - kjumpingcube = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kjumpingcube-16.04.2.tar.xz"; - sha256 = "115nd7z983cdhcrw3fknha4ham9avjx9vy278xijkqh5m9b5xczj"; - name = "kjumpingcube-16.04.2.tar.xz"; - }; - }; - kldap = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kldap-16.04.2.tar.xz"; - sha256 = "198y963y9ydd4gav5f7fdnarf7kmbpjafqw19z3r22hmqikbc1gq"; - name = "kldap-16.04.2.tar.xz"; - }; - }; - kleopatra = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kleopatra-16.04.2.tar.xz"; - sha256 = "064rc6nrgpkvxjxzmavs7f28dczv6szqnx78say0zxa34azl88vh"; - name = "kleopatra-16.04.2.tar.xz"; - }; - }; - klettres = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/klettres-16.04.2.tar.xz"; - sha256 = "1fy41zw1rc9ggsy04q9qscwz3yn58nsj8xjhr7iwvhk2qhhzyw1v"; - name = "klettres-16.04.2.tar.xz"; - }; - }; - klickety = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/klickety-16.04.2.tar.xz"; - sha256 = "0rz89s4fwbf1qm52ca17y2r9xsfb406xwjbz9mfyil1x80cyahdm"; - name = "klickety-16.04.2.tar.xz"; - }; - }; - klines = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/klines-16.04.2.tar.xz"; - sha256 = "1djhxqvjcqlv4bagcg03k7dngygn8ywqwhhjsc0ql6a1nbrfkh1q"; - name = "klines-16.04.2.tar.xz"; - }; - }; - kmag = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmag-16.04.2.tar.xz"; - sha256 = "0m7502q0n76cs009giac90sgf8hhza3c8zf5ypb7aydnixcvligs"; - name = "kmag-16.04.2.tar.xz"; - }; - }; - kmahjongg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmahjongg-16.04.2.tar.xz"; - sha256 = "09b336jfw7zafzpiddxadvf0h7ch2l5ksdzz1salhqqnqxg271mn"; - name = "kmahjongg-16.04.2.tar.xz"; - }; - }; - kmailtransport = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmailtransport-16.04.2.tar.xz"; - sha256 = "1dz3w9gxc14bkdp1h05ppw6c3m29kw9ky9c5ajvi6gckynjkg0dz"; - name = "kmailtransport-16.04.2.tar.xz"; - }; - }; - kmbox = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmbox-16.04.2.tar.xz"; - sha256 = "1mkwv695bzjszrpsv8bpjlid4f933jnkf7vc1l8wlamik88y5i7x"; - name = "kmbox-16.04.2.tar.xz"; - }; - }; - kmime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmime-16.04.2.tar.xz"; - sha256 = "0h1a43yi7nzj6s3j5v6v9dp5r2qbbhdamnl2d8jpqkl5hnxf0mlq"; - name = "kmime-16.04.2.tar.xz"; - }; - }; - kmines = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmines-16.04.2.tar.xz"; - sha256 = "1c4yp6zsva1dyr34cprxmy11iq3p3xxz7j8g8bl35qp95l8cwwhl"; - name = "kmines-16.04.2.tar.xz"; - }; - }; - kmix = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmix-16.04.2.tar.xz"; - sha256 = "092l0myv9dhx534j96qwqy1gddzc64r15wnansifnn0miv1rsnmb"; - name = "kmix-16.04.2.tar.xz"; - }; - }; - kmousetool = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmousetool-16.04.2.tar.xz"; - sha256 = "0r4wv17l2xm85nncxz7fagfp7z0fi5hbhc28bqnaggc4yz3jbh7d"; - name = "kmousetool-16.04.2.tar.xz"; - }; - }; - kmouth = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmouth-16.04.2.tar.xz"; - sha256 = "0xfv9hd8cdszvllwd56qwcg8x3fcz4d64zhf4mi2f3v47a9wrir4"; - name = "kmouth-16.04.2.tar.xz"; - }; - }; - kmplot = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kmplot-16.04.2.tar.xz"; - sha256 = "0bvxgj34llgpk6gv9wv1infb782z6fgigcpiv00xqlr7pgkhsns2"; - name = "kmplot-16.04.2.tar.xz"; - }; - }; - knavalbattle = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/knavalbattle-16.04.2.tar.xz"; - sha256 = "0abwxqy82xrhyfixxj3rivkflj5dkrc82131hmjd35c1lcabh4aw"; - name = "knavalbattle-16.04.2.tar.xz"; - }; - }; - knetwalk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/knetwalk-16.04.2.tar.xz"; - sha256 = "13399nqhja4wlf3d8zy6ia7ayjsb8kyrmjx6dsw1hdbpgfdj29w0"; - name = "knetwalk-16.04.2.tar.xz"; - }; - }; - kolf = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kolf-16.04.2.tar.xz"; - sha256 = "0h5a20pra3ip6a3cf5kivpbyky5fkhzknkx80dcwi36g4q9qryyh"; - name = "kolf-16.04.2.tar.xz"; - }; - }; - kollision = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kollision-16.04.2.tar.xz"; - sha256 = "09xc2mgipw4a8cmgdqs5mr9r144wjkn2656nidvdxwhizm05k5ib"; - name = "kollision-16.04.2.tar.xz"; - }; - }; - kolourpaint = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kolourpaint-16.04.2.tar.xz"; - sha256 = "0ffnfzmsds5n60w2b7x43q64bvws8z1hs9m80jh4xcz3p2ybkwlg"; - name = "kolourpaint-16.04.2.tar.xz"; - }; - }; - kompare = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kompare-16.04.2.tar.xz"; - sha256 = "09xjws4kb66r6m65srsjx37dvhyj6ifj5yixb77njfkcf140060p"; - name = "kompare-16.04.2.tar.xz"; - }; - }; - konquest = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/konquest-16.04.2.tar.xz"; - sha256 = "1b81z9z7rcbm75phpc7rz5s2159b6f98g3kkry7b1hlh51qajd3v"; - name = "konquest-16.04.2.tar.xz"; - }; - }; - konsole = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/konsole-16.04.2.tar.xz"; - sha256 = "1pp7xfh472vwk4nnhcga73zkb4bxqnmk70dxnn0kxj6z55igrp19"; - name = "konsole-16.04.2.tar.xz"; - }; - }; - kontactinterface = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kontactinterface-16.04.2.tar.xz"; - sha256 = "1yax2bwxhr15pqwy63ki5zriz01l5phvbx2f9whpbccmpbsd3yyh"; - name = "kontactinterface-16.04.2.tar.xz"; - }; - }; - kopete = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kopete-16.04.2.tar.xz"; - sha256 = "16j3j6z0irmqrm4cgm9vwa5nd4rixyirn0hpi2kanzy6m8j623nf"; - name = "kopete-16.04.2.tar.xz"; - }; - }; - kpat = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kpat-16.04.2.tar.xz"; - sha256 = "1qmcnx0zmks37fzr6chx409frb08g61cx0rn2gwad57f3id3dh2m"; - name = "kpat-16.04.2.tar.xz"; - }; - }; - kpimtextedit = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kpimtextedit-16.04.2.tar.xz"; - sha256 = "0r36knm4w4micchjibiika373z9lzqkzhc7pfa38zwpd529wxfk4"; - name = "kpimtextedit-16.04.2.tar.xz"; - }; - }; - kppp = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kppp-16.04.2.tar.xz"; - sha256 = "14p07ph8kc1wlfzf8lbmqhpv5iix392fc81y56bc48ba28czsmp6"; - name = "kppp-16.04.2.tar.xz"; - }; - }; - kqtquickcharts = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kqtquickcharts-16.04.2.tar.xz"; - sha256 = "1bdkv3jpvacliz8120cch415jwlg65gd3xyz5ixkynxzkmilj3kx"; - name = "kqtquickcharts-16.04.2.tar.xz"; - }; - }; - krdc = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/krdc-16.04.2.tar.xz"; - sha256 = "1qn7mci4mschz8a94na6xakl982hrj0g4ccw1hfrhlzyxa7hfx74"; - name = "krdc-16.04.2.tar.xz"; - }; - }; - kremotecontrol = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kremotecontrol-16.04.2.tar.xz"; - sha256 = "1z37qmmp688mn9kiprmnl2zdira60as1bsfn0zy24jnnkskvr3ga"; - name = "kremotecontrol-16.04.2.tar.xz"; - }; - }; - kreversi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kreversi-16.04.2.tar.xz"; - sha256 = "1b7aqv33qkx18g9bkcna0z7027c4j2kwx6naldhgq3dxgg22gi6k"; - name = "kreversi-16.04.2.tar.xz"; - }; - }; - krfb = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/krfb-16.04.2.tar.xz"; - sha256 = "11arv0h0sgnk21lmw9mzj43cijchljpwy09ifii9a8xxn0cczf5x"; - name = "krfb-16.04.2.tar.xz"; - }; - }; - kross-interpreters = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kross-interpreters-16.04.2.tar.xz"; - sha256 = "1z8sv8vyfi1nx70f72qx5xgaxa8qklm1a1nq0p5x4jl22gf981qz"; - name = "kross-interpreters-16.04.2.tar.xz"; - }; - }; - kruler = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kruler-16.04.2.tar.xz"; - sha256 = "12gm8zy0233djdgfn2clsyamlc5q013pblyv70f5z0j8s2a8293h"; - name = "kruler-16.04.2.tar.xz"; - }; - }; - ksaneplugin = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksaneplugin-16.04.2.tar.xz"; - sha256 = "0y5yvr09g9x9k8lswpjbhkd6fnbw80dajrjjsjws5rfvi388ps7c"; - name = "ksaneplugin-16.04.2.tar.xz"; - }; - }; - kscd = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kscd-16.04.2.tar.xz"; - sha256 = "0k2q1fqrbpsbjlzyk1az1pyd76dqqwmmdandj7c6aqbl332dca5g"; - name = "kscd-16.04.2.tar.xz"; - }; - }; - kshisen = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kshisen-16.04.2.tar.xz"; - sha256 = "1wl7bv18jvwy44hxa3ys3aaxw0hx68vk3b3vwr381729c0njxzrl"; - name = "kshisen-16.04.2.tar.xz"; - }; - }; - ksirk = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksirk-16.04.2.tar.xz"; - sha256 = "17j2k8gnx0fh5v6592wfkcl5lbz2fgjv0na423gjij6rvvnb1xxs"; - name = "ksirk-16.04.2.tar.xz"; - }; - }; - ksnakeduel = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksnakeduel-16.04.2.tar.xz"; - sha256 = "1v0pnkkzk1j2cgkf58vk3ly9yvxyqq2y9xvfnpzv939f8sl10qa7"; - name = "ksnakeduel-16.04.2.tar.xz"; - }; - }; - kspaceduel = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kspaceduel-16.04.2.tar.xz"; - sha256 = "0jspmg7gkjawb50mlafxcaimqm3xp4gpw7a2dm895z8f6lhp0q4q"; - name = "kspaceduel-16.04.2.tar.xz"; - }; - }; - ksquares = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksquares-16.04.2.tar.xz"; - sha256 = "0l0s978551ziw79sck2fji474pgynvx4ny87f3faplz6adpvclmd"; - name = "ksquares-16.04.2.tar.xz"; - }; - }; - kstars = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kstars-16.04.2.tar.xz"; - sha256 = "1v29ky6id80wgkhj23vb4c1a905zi8xkwyx1fjdqm0b0783p5w0f"; - name = "kstars-16.04.2.tar.xz"; - }; - }; - ksudoku = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksudoku-16.04.2.tar.xz"; - sha256 = "0ymxjcbjd0dpsjl3jjr4bxj3xbhkpv1zr9mf2fxjpnfz3js9zf7q"; - name = "ksudoku-16.04.2.tar.xz"; - }; - }; - ksystemlog = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ksystemlog-16.04.2.tar.xz"; - sha256 = "0i74xfhfmyxp2i94fdivlf3z38mak78j8yy8by652143g0gz61nz"; - name = "ksystemlog-16.04.2.tar.xz"; - }; - }; - kteatime = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kteatime-16.04.2.tar.xz"; - sha256 = "1y7ih9ii3hk91pbyp7bwgiy8g6hb3bsnjc5a6nlghc3d79zvq77y"; - name = "kteatime-16.04.2.tar.xz"; - }; - }; - ktimer = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktimer-16.04.2.tar.xz"; - sha256 = "06isrcpcbr9n7lhrqv9ahvms8vqz2azw0p6v29sihwskcw933yf0"; - name = "ktimer-16.04.2.tar.xz"; - }; - }; - ktnef = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktnef-16.04.2.tar.xz"; - sha256 = "1picfgmy9m3rfzp2hwgz7npijrb0x8w1zyy7gz4q37g3577gjm79"; - name = "ktnef-16.04.2.tar.xz"; - }; - }; - ktouch = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktouch-16.04.2.tar.xz"; - sha256 = "1jcgg5fxnn4fsv2gjiwijd2k9rw2ljffvw5dqg0pwkmikp7f4pmd"; - name = "ktouch-16.04.2.tar.xz"; - }; - }; - ktp-accounts-kcm = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-accounts-kcm-16.04.2.tar.xz"; - sha256 = "1pzwpfp93p47zghqwfqhgk16j9ar52zcx0kfacpy8z7014wsj02k"; - name = "ktp-accounts-kcm-16.04.2.tar.xz"; - }; - }; - ktp-approver = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-approver-16.04.2.tar.xz"; - sha256 = "1q74di50kl46px23fp4lmx5l0j9ndlxhsfvn78j42lfp6wkgqi8c"; - name = "ktp-approver-16.04.2.tar.xz"; - }; - }; - ktp-auth-handler = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-auth-handler-16.04.2.tar.xz"; - sha256 = "15dm09i4bny5b1958390r1wjsm26kkhmxlfrgd9az4yln8pmidmh"; - name = "ktp-auth-handler-16.04.2.tar.xz"; - }; - }; - ktp-call-ui = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-call-ui-16.04.2.tar.xz"; - sha256 = "0wf6wmxzzpsnwglyf46q6mwznl0r5lmzf8n39a62qf84jgxj3p7v"; - name = "ktp-call-ui-16.04.2.tar.xz"; - }; - }; - ktp-common-internals = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-common-internals-16.04.2.tar.xz"; - sha256 = "04177adil082qfrq7y4lg06hzmx8kcpbdgfisa59wsmmcyydziy1"; - name = "ktp-common-internals-16.04.2.tar.xz"; - }; - }; - ktp-contact-list = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-contact-list-16.04.2.tar.xz"; - sha256 = "017mz9z8248d9hmz37dsnjdfjk4m58y546aq6y93mahywl0dccia"; - name = "ktp-contact-list-16.04.2.tar.xz"; - }; - }; - ktp-contact-runner = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-contact-runner-16.04.2.tar.xz"; - sha256 = "0c3gl5ass4nfmrbvynj8hf3iyrrybn9h4bm07l84hky2bmhqjhkw"; - name = "ktp-contact-runner-16.04.2.tar.xz"; - }; - }; - ktp-desktop-applets = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-desktop-applets-16.04.2.tar.xz"; - sha256 = "1fmm4vi6r9hhj4xaz6lz3rx04l6fkhqq9qrcxbv5xbrif0jw82f6"; - name = "ktp-desktop-applets-16.04.2.tar.xz"; - }; - }; - ktp-filetransfer-handler = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-filetransfer-handler-16.04.2.tar.xz"; - sha256 = "0zlmy9fs8qvk6jzdp9zs3y4jz5nz5asxvcics4hcpbl5s4b5nyf0"; - name = "ktp-filetransfer-handler-16.04.2.tar.xz"; - }; - }; - ktp-kded-module = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-kded-module-16.04.2.tar.xz"; - sha256 = "0bnqv87gbv9idspp7yh8y690d66l0j3x70krg413xk8pqs012r15"; - name = "ktp-kded-module-16.04.2.tar.xz"; - }; - }; - ktp-send-file = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-send-file-16.04.2.tar.xz"; - sha256 = "1nqw7b66z4fkcvbm7cl9vdwwwsbylk0mbj5rs37laddjyn0igcnq"; - name = "ktp-send-file-16.04.2.tar.xz"; - }; - }; - ktp-text-ui = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktp-text-ui-16.04.2.tar.xz"; - sha256 = "1ls9ns6wb6wvcxli4almc2dv7gzihsihdpb1i171c3yr16d5kmvf"; - name = "ktp-text-ui-16.04.2.tar.xz"; - }; - }; - ktuberling = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/ktuberling-16.04.2.tar.xz"; - sha256 = "15r6m3861cpnmzyrxf5ixqwp6vvjd875237bbb6h881hgw9xfv57"; - name = "ktuberling-16.04.2.tar.xz"; - }; - }; - kturtle = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kturtle-16.04.2.tar.xz"; - sha256 = "12z7r1fprz83da34msnns6s3ar1734y6cxh0infv758nvmykhkqn"; - name = "kturtle-16.04.2.tar.xz"; - }; - }; - kubrick = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kubrick-16.04.2.tar.xz"; - sha256 = "16mjswzybnpb1iwzaygkva99lf551fz4864mngav1v0v6489ryc1"; - name = "kubrick-16.04.2.tar.xz"; - }; - }; - kuser = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kuser-16.04.2.tar.xz"; - sha256 = "0cxag2p88959vk11qdcxhb3kmr18wrk5chf5644phapyns8lm0i6"; - name = "kuser-16.04.2.tar.xz"; - }; - }; - kwalletmanager = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kwalletmanager-16.04.2.tar.xz"; - sha256 = "1l37ykkkfy8m9x9v9x5yr701nvgxwsx9npqfhlrgaq0clq0xvsxd"; - name = "kwalletmanager-16.04.2.tar.xz"; - }; - }; - kwordquiz = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/kwordquiz-16.04.2.tar.xz"; - sha256 = "0nra7gpqfrnl0hl2ankzkbdfqrs3iwr6x6harrhcaxmszpbiw7fa"; - name = "kwordquiz-16.04.2.tar.xz"; - }; - }; - libgravatar = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libgravatar-16.04.2.tar.xz"; - sha256 = "1rw800ch89gd1xsbgm9wz7vbayyvrli7gcnn9miaqhhjgcgpjs6p"; - name = "libgravatar-16.04.2.tar.xz"; - }; - }; - libkcddb = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkcddb-16.04.2.tar.xz"; - sha256 = "14dsc35kh843xsva0csqkv2rgyspvg3ld3gjr8ks4zp7ry1wi6gj"; - name = "libkcddb-16.04.2.tar.xz"; - }; - }; - libkcompactdisc = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkcompactdisc-16.04.2.tar.xz"; - sha256 = "05k19a7mhk5xxd8k653i8xqc58xjrxyphdwsw746cvw3nqpiiaml"; - name = "libkcompactdisc-16.04.2.tar.xz"; - }; - }; - libkdcraw = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdcraw-16.04.2.tar.xz"; - sha256 = "1kcyhc8gi2av109nracm42q91k7ndmj7yw8q52ssfzkbw4r8c9yw"; - name = "libkdcraw-16.04.2.tar.xz"; - }; - }; - libkdeedu = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdeedu-16.04.2.tar.xz"; - sha256 = "15prm6lfhpys4n6rsbvfqcm2w3sr315lynsnww8740nk59sjm45f"; - name = "libkdeedu-16.04.2.tar.xz"; - }; - }; - libkdegames = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdegames-16.04.2.tar.xz"; - sha256 = "1b87g8jihyfzpvws6xwx8cbc118nfdwksh0j2sl7hbnnkgc6s6ia"; - name = "libkdegames-16.04.2.tar.xz"; - }; - }; - libkdepim = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkdepim-16.04.2.tar.xz"; - sha256 = "0p2p19qqdnkpvp1dnm0idffg0x03dwqkrjy426l8ahabl0xp8pl4"; - name = "libkdepim-16.04.2.tar.xz"; - }; - }; - libkeduvocdocument = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkeduvocdocument-16.04.2.tar.xz"; - sha256 = "002scb7b174d03ady232dc2drnphnw51a9a0wb3rdm3kip4m85k1"; - name = "libkeduvocdocument-16.04.2.tar.xz"; - }; - }; - libkexiv2 = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkexiv2-16.04.2.tar.xz"; - sha256 = "11d33wdlhlpbjkrfawb45py5akzd4nyry0vi28mx4hkk5glbhd82"; - name = "libkexiv2-16.04.2.tar.xz"; - }; - }; - libkface = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkface-16.04.2.tar.xz"; - sha256 = "1r97j4dkm509r7nvbdpqnvfzlznlvqbsq9lghqrrcaafizrz074h"; - name = "libkface-16.04.2.tar.xz"; - }; - }; - libkgeomap = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkgeomap-16.04.2.tar.xz"; - sha256 = "0xvgg9cb63bpl9fc68l038zlz38l175n7q3jpcqnx15f6qb8vcpk"; - name = "libkgeomap-16.04.2.tar.xz"; - }; - }; - libkipi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkipi-16.04.2.tar.xz"; - sha256 = "02gknmsqh9x31p83y7nb550yjr6rfnsdh3m1yqm5n3jyjdmfxd66"; - name = "libkipi-16.04.2.tar.xz"; - }; - }; - libkleo = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkleo-16.04.2.tar.xz"; - sha256 = "1bdfqnrslzmsk7dg3f8g1p4b2m5hd5hvh1ws9phkhilhcxp2b33v"; - name = "libkleo-16.04.2.tar.xz"; - }; - }; - libkmahjongg = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkmahjongg-16.04.2.tar.xz"; - sha256 = "0chszdkcyjmny8j5nhbl9y6334qb7wy3ll16p829cy8k2hj69pb4"; - name = "libkmahjongg-16.04.2.tar.xz"; - }; - }; - libkomparediff2 = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libkomparediff2-16.04.2.tar.xz"; - sha256 = "035m9da6cnn0masfn79cmd43fviapr7fldl0diiwpcmjwkpmrp1v"; - name = "libkomparediff2-16.04.2.tar.xz"; - }; - }; - libksane = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libksane-16.04.2.tar.xz"; - sha256 = "1s150l0kcmp98l134k8gwhzwzv4kk3583wv0lxd3l9li2940sjdp"; - name = "libksane-16.04.2.tar.xz"; - }; - }; - libksieve = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/libksieve-16.04.2.tar.xz"; - sha256 = "1i51zp4fkyyrh0f998i25yx7i7a9g9kcw5pfaisprh84rbyrdq1w"; - name = "libksieve-16.04.2.tar.xz"; - }; - }; - lokalize = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/lokalize-16.04.2.tar.xz"; - sha256 = "0cnrh49c14j64lv67ylm4fczbwbnrja8g4bwzqaaz1sm1ncxmyr3"; - name = "lokalize-16.04.2.tar.xz"; - }; - }; - lskat = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/lskat-16.04.2.tar.xz"; - sha256 = "0qd5z1c5c8b2vn3rpgms0bqzdbh69ji8h14ascis4znrq2hqc6p2"; - name = "lskat-16.04.2.tar.xz"; - }; - }; - mailcommon = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/mailcommon-16.04.2.tar.xz"; - sha256 = "0bcl0kqyqqhmnjli7qb4k1mgh1wwwbf622sxp9p0y91wwgy2y5f1"; - name = "mailcommon-16.04.2.tar.xz"; - }; - }; - mailimporter = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/mailimporter-16.04.2.tar.xz"; - sha256 = "1r9y91xbbyhd0rabwavi1q16a8rbi63zlsnkb0q64sw73bbyh3zz"; - name = "mailimporter-16.04.2.tar.xz"; - }; - }; - marble = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/marble-16.04.2.tar.xz"; - sha256 = "04wg317ypp25aszgla1vrjdc18p8xvjj1xizj4crzg85n700d81j"; - name = "marble-16.04.2.tar.xz"; - }; - }; - messagelib = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/messagelib-16.04.2.tar.xz"; - sha256 = "0kj7y0l7xgc7km3xnbnzy9316mz81hgv8hh8p5qjczy0bi77cy9c"; - name = "messagelib-16.04.2.tar.xz"; - }; - }; - minuet = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/minuet-16.04.2.tar.xz"; - sha256 = "1iph3g6fp96w686xm38cknqqp7kd1xb3cn7zlx7v32d12n4iasxq"; - name = "minuet-16.04.2.tar.xz"; - }; - }; - mplayerthumbs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/mplayerthumbs-16.04.2.tar.xz"; - sha256 = "1zr2c5f48xrzyljbycnlg4z5j6fyqrp6545vd0iwaid3nnzxp7q4"; - name = "mplayerthumbs-16.04.2.tar.xz"; - }; - }; - okteta = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/okteta-16.04.2.tar.xz"; - sha256 = "0h5b0b64zs7v2q8wz738dd9llnifjamvq9gb1g05fvq258qan49z"; - name = "okteta-16.04.2.tar.xz"; - }; - }; - okular = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/okular-16.04.2.tar.xz"; - sha256 = "1iw92rkbzsk82gx1ks0iqciv7d4561ab5z65jdn1aszdw5agjs2s"; - name = "okular-16.04.2.tar.xz"; - }; - }; - palapeli = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/palapeli-16.04.2.tar.xz"; - sha256 = "103y3xmbr6km1r1ljmb66sn1d8rha7qkkssqyg1gnxq5xi4wwj1w"; - name = "palapeli-16.04.2.tar.xz"; - }; - }; - parley = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/parley-16.04.2.tar.xz"; - sha256 = "1f8xx30wkw7h4qpg4vpxxmhmibivn5si84bpql2nyjnrjqcaj4af"; - name = "parley-16.04.2.tar.xz"; - }; - }; - picmi = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/picmi-16.04.2.tar.xz"; - sha256 = "05i6d99pbihprl0525w3glxwbgygqincxdmvcma691r4xwdvi8p1"; - name = "picmi-16.04.2.tar.xz"; - }; - }; - pimcommon = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/pimcommon-16.04.2.tar.xz"; - sha256 = "02x63vg599876sldwafvcjb13nf7bivahsh6gg0lkhkqq8gbxd2l"; - name = "pimcommon-16.04.2.tar.xz"; - }; - }; - poxml = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/poxml-16.04.2.tar.xz"; - sha256 = "1d3jswsdzsglk4kwqjivwi2h7br6xw9h4y1bcdqq1n1ibzr9cxap"; - name = "poxml-16.04.2.tar.xz"; - }; - }; - print-manager = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/print-manager-16.04.2.tar.xz"; - sha256 = "0sm6qnd2lk6c354fdah6rj9y2v9aiiss1h4nrpvc4rvb9yxi9hiz"; - name = "print-manager-16.04.2.tar.xz"; - }; - }; - rocs = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/rocs-16.04.2.tar.xz"; - sha256 = "0gfqcvijqxvgyjz5gv9zaj72a351fkac1w0qz8yfbrsch8f190z6"; - name = "rocs-16.04.2.tar.xz"; - }; - }; - signon-kwallet-extension = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/signon-kwallet-extension-16.04.2.tar.xz"; - sha256 = "1hbk5ssi4byi5hbb1gy8337iv1mb2c5l8sw0ckxa8mz7iqd5kg96"; - name = "signon-kwallet-extension-16.04.2.tar.xz"; - }; - }; - spectacle = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/spectacle-16.04.2.tar.xz"; - sha256 = "0yz7gw6x746xqxsgn0iv94zsxx6l8kk5zkyzp0cx3vga925pbpvj"; - name = "spectacle-16.04.2.tar.xz"; - }; - }; - step = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/step-16.04.2.tar.xz"; - sha256 = "14f1i8ssqyp97v4pjl6rhjd2qx9fjxzndbmssm9rww7dv3kgb3p0"; - name = "step-16.04.2.tar.xz"; - }; - }; - svgpart = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/svgpart-16.04.2.tar.xz"; - sha256 = "1zviplnlbl261icdp9c143jw5i90k386xn2jxyf6i2vc1bw8s98w"; - name = "svgpart-16.04.2.tar.xz"; - }; - }; - sweeper = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/sweeper-16.04.2.tar.xz"; - sha256 = "0p58h2dbwdvmrbd897h1wv3bsdfqrgvvqdq1dr6nlicwlp1dxjs1"; - name = "sweeper-16.04.2.tar.xz"; - }; - }; - syndication = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/syndication-16.04.2.tar.xz"; - sha256 = "1yg32bhb3d0y9fl1sgb3g1ky7vww7ax1w91k7sg3w30s7zi6668m"; - name = "syndication-16.04.2.tar.xz"; - }; - }; - umbrello = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/umbrello-16.04.2.tar.xz"; - sha256 = "0avx8s889xiwjcfx5ihj3clr10w1ax4h92pb9zvzx8nrfqp23xgl"; - name = "umbrello-16.04.2.tar.xz"; - }; - }; - zeroconf-ioslave = { - version = "16.04.2"; - src = fetchurl { - url = "${mirror}/stable/applications/16.04.2/src/zeroconf-ioslave-16.04.2.tar.xz"; - sha256 = "1ly4x8js0y88nrjddcvbbv4c9gac27y9vpzzr33alr76w6g22kk1"; - name = "zeroconf-ioslave-16.04.2.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch b/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/ark/0001-fix-start-from-plasma.patch rename to pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/ark/default.nix b/pkgs/desktops/kde-5/applications/ark/default.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/ark/default.nix rename to pkgs/desktops/kde-5/applications/ark/default.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix b/pkgs/desktops/kde-5/applications/baloo-widgets.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix rename to pkgs/desktops/kde-5/applications/baloo-widgets.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications/default.nix similarity index 82% rename from pkgs/desktops/kde-5/applications-16.04/default.nix rename to pkgs/desktops/kde-5/applications/default.nix index 0db0c72a6f1..d3dc48b5282 100644 --- a/pkgs/desktops/kde-5/applications-16.04/default.nix +++ b/pkgs/desktops/kde-5/applications/default.nix @@ -2,14 +2,10 @@ # Updates -Before a major version update, make a copy of this directory. (We like to -keep the old version around for a short time after major updates.) - -1. Update the URL in `maintainers/scripts/generate-kde-applications.sh`. -2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-applications.sh > pkgs/desktops/kde-5/applications-$VERSION/srcs.nix`. -3. Check that the new packages build correctly. -4. Commit the changes and open a pull request. +1. Update the URL in `maintainers/scripts/generate-kde-applications.sh` and + run that script from the top of the Nixpkgs tree. +2. Check that the new packages build correctly. +3. Commit the changes and open a pull request. */ diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix b/pkgs/desktops/kde-5/applications/dolphin-plugins.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix rename to pkgs/desktops/kde-5/applications/dolphin-plugins.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin.nix b/pkgs/desktops/kde-5/applications/dolphin.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/dolphin.nix rename to pkgs/desktops/kde-5/applications/dolphin.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix b/pkgs/desktops/kde-5/applications/ffmpegthumbs.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix rename to pkgs/desktops/kde-5/applications/ffmpegthumbs.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications/filelight.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/filelight.nix rename to pkgs/desktops/kde-5/applications/filelight.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix b/pkgs/desktops/kde-5/applications/gpgmepp.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix rename to pkgs/desktops/kde-5/applications/gpgmepp.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/gwenview.nix b/pkgs/desktops/kde-5/applications/gwenview.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/gwenview.nix rename to pkgs/desktops/kde-5/applications/gwenview.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kate.nix b/pkgs/desktops/kde-5/applications/kate.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kate.nix rename to pkgs/desktops/kde-5/applications/kate.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kcalc.nix b/pkgs/desktops/kde-5/applications/kcalc.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kcalc.nix rename to pkgs/desktops/kde-5/applications/kcalc.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix b/pkgs/desktops/kde-5/applications/kcolorchooser.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix rename to pkgs/desktops/kde-5/applications/kcolorchooser.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-app.nix b/pkgs/desktops/kde-5/applications/kde-app.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kde-app.nix rename to pkgs/desktops/kde-5/applications/kde-app.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix b/pkgs/desktops/kde-5/applications/kde-locale-4.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix rename to pkgs/desktops/kde-5/applications/kde-locale-4.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix b/pkgs/desktops/kde-5/applications/kde-locale-5.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix rename to pkgs/desktops/kde-5/applications/kde-locale-5.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix b/pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix rename to pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch rename to pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch b/pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch rename to pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch rename to pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix b/pkgs/desktops/kde-5/applications/kdelibs/default.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix rename to pkgs/desktops/kde-5/applications/kdelibs/default.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh b/pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh rename to pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh diff --git a/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix b/pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix rename to pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kgpg.nix b/pkgs/desktops/kde-5/applications/kgpg.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kgpg.nix rename to pkgs/desktops/kde-5/applications/kgpg.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/khelpcenter.nix b/pkgs/desktops/kde-5/applications/khelpcenter.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/khelpcenter.nix rename to pkgs/desktops/kde-5/applications/khelpcenter.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix b/pkgs/desktops/kde-5/applications/kio-extras.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kio-extras.nix rename to pkgs/desktops/kde-5/applications/kio-extras.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/kompare.nix b/pkgs/desktops/kde-5/applications/kompare.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/kompare.nix rename to pkgs/desktops/kde-5/applications/kompare.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/konsole.nix b/pkgs/desktops/kde-5/applications/konsole.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/konsole.nix rename to pkgs/desktops/kde-5/applications/konsole.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/l10n.nix b/pkgs/desktops/kde-5/applications/l10n.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/l10n.nix rename to pkgs/desktops/kde-5/applications/l10n.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix b/pkgs/desktops/kde-5/applications/libkdcraw.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix rename to pkgs/desktops/kde-5/applications/libkdcraw.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix b/pkgs/desktops/kde-5/applications/libkexiv2.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix rename to pkgs/desktops/kde-5/applications/libkexiv2.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkipi.nix b/pkgs/desktops/kde-5/applications/libkipi.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkipi.nix rename to pkgs/desktops/kde-5/applications/libkipi.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix b/pkgs/desktops/kde-5/applications/libkomparediff2.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix rename to pkgs/desktops/kde-5/applications/libkomparediff2.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/okular.nix b/pkgs/desktops/kde-5/applications/okular.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/okular.nix rename to pkgs/desktops/kde-5/applications/okular.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix b/pkgs/desktops/kde-5/applications/print-manager.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/print-manager.nix rename to pkgs/desktops/kde-5/applications/print-manager.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix b/pkgs/desktops/kde-5/applications/spectacle.nix similarity index 100% rename from pkgs/desktops/kde-5/applications-16.04/spectacle.nix rename to pkgs/desktops/kde-5/applications/spectacle.nix diff --git a/pkgs/desktops/kde-5/applications/srcs.nix b/pkgs/desktops/kde-5/applications/srcs.nix new file mode 100644 index 00000000000..2eb2afcd0b1 --- /dev/null +++ b/pkgs/desktops/kde-5/applications/srcs.nix @@ -0,0 +1,2093 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + akonadi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/akonadi-16.04.3.tar.xz"; + sha256 = "1fsv5znj5a7mql8swcq085qjnvcmwyjm74lwj3rdrxmw91s09w96"; + name = "akonadi-16.04.3.tar.xz"; + }; + }; + akonadi-calendar = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/akonadi-calendar-16.04.3.tar.xz"; + sha256 = "18gwsk4snbp475kqpkl3jnca68pprpjhj8xjb4myf0s0bbsi01jl"; + name = "akonadi-calendar-16.04.3.tar.xz"; + }; + }; + akonadi-search = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/akonadi-search-16.04.3.tar.xz"; + sha256 = "109gl55zhrmvz2k31v7i724jm1jllz0yshg556ii3n9raijmny8m"; + name = "akonadi-search-16.04.3.tar.xz"; + }; + }; + analitza = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/analitza-16.04.3.tar.xz"; + sha256 = "0qk2gcrh2qb7krhijzvb95336l4zab4dkhplgbc1k6sdwm7r83dj"; + name = "analitza-16.04.3.tar.xz"; + }; + }; + ark = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ark-16.04.3.tar.xz"; + sha256 = "041bqkha4s01n8jn4agbg1vacfhiwr7x5rds9sh3jr5nvmr2573r"; + name = "ark-16.04.3.tar.xz"; + }; + }; + artikulate = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/artikulate-16.04.3.tar.xz"; + sha256 = "166dnlp34sbnmwjrvl4rg3a9c4s8z46nn7aqp5b0l66iis6qrhyn"; + name = "artikulate-16.04.3.tar.xz"; + }; + }; + audiocd-kio = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/audiocd-kio-16.04.3.tar.xz"; + sha256 = "1jds7f3m0x3f9x2invphsaxmj0gf3af6cbqczilhia2qchsyq0vb"; + name = "audiocd-kio-16.04.3.tar.xz"; + }; + }; + baloo-widgets = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/baloo-widgets-16.04.3.tar.xz"; + sha256 = "06nick4dcs3qqcv7vqs2cn8848yjifhyw79cvc6562siq66vh5zp"; + name = "baloo-widgets-16.04.3.tar.xz"; + }; + }; + blinken = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/blinken-16.04.3.tar.xz"; + sha256 = "1nbi7rshw2qd3jvgkky0hbn8yf38lmrs1x5sbd68wsxvpf2rwwzp"; + name = "blinken-16.04.3.tar.xz"; + }; + }; + bomber = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/bomber-16.04.3.tar.xz"; + sha256 = "1lb4cgsmk99j973gn4j5mqlj6zx8in3hmq8ma9n107y8sg46bzvv"; + name = "bomber-16.04.3.tar.xz"; + }; + }; + bovo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/bovo-16.04.3.tar.xz"; + sha256 = "0c8jyqlzplkfa55i3pf5f4brxdyszzlp542l8w6dnl7lpazyjrsi"; + name = "bovo-16.04.3.tar.xz"; + }; + }; + calendarsupport = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/calendarsupport-16.04.3.tar.xz"; + sha256 = "1la37axq0jz4palgw4pr0mqaw9s2dmr7jglzws5knvihvq1czls9"; + name = "calendarsupport-16.04.3.tar.xz"; + }; + }; + cantor = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/cantor-16.04.3.tar.xz"; + sha256 = "1mqcmb1dx5gvjaa89sszdkpkgd8sb36mvx074az3w69aj6bkpq7a"; + name = "cantor-16.04.3.tar.xz"; + }; + }; + cervisia = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/cervisia-16.04.3.tar.xz"; + sha256 = "1irxwwyc18n5j79nyyi7zimk9iqbhfhi81vkwfy9fq9w7iis1z0g"; + name = "cervisia-16.04.3.tar.xz"; + }; + }; + dolphin = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/dolphin-16.04.3.tar.xz"; + sha256 = "16c5lnqldc8jmz90ym35l4s21wmn6lg4p5xhyyi5khq9yz9447r0"; + name = "dolphin-16.04.3.tar.xz"; + }; + }; + dolphin-plugins = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/dolphin-plugins-16.04.3.tar.xz"; + sha256 = "1qwq1b9ivivn6sdql1q7kfg80790w1b651vwfqbqdsbgxc9b6qzg"; + name = "dolphin-plugins-16.04.3.tar.xz"; + }; + }; + dragon = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/dragon-16.04.3.tar.xz"; + sha256 = "1d8hrh3mjf3if6asi40arpihwv91xs7ydcmr0nf355vajsn337vl"; + name = "dragon-16.04.3.tar.xz"; + }; + }; + eventviews = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/eventviews-16.04.3.tar.xz"; + sha256 = "1rn3kfrkc48hwgd0b59gy6jax9gd78g7lwgmxcs977xzhl7mc3kh"; + name = "eventviews-16.04.3.tar.xz"; + }; + }; + ffmpegthumbs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ffmpegthumbs-16.04.3.tar.xz"; + sha256 = "03imnxzkbsfwgcqx1hhkpad6pdyw157picb9ydrlkwqlg0pqcgr0"; + name = "ffmpegthumbs-16.04.3.tar.xz"; + }; + }; + filelight = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/filelight-16.04.3.tar.xz"; + sha256 = "1li4ylbq9vr3vr91y1r085557p22bvqgg4kqm5ra7bdwp9151j09"; + name = "filelight-16.04.3.tar.xz"; + }; + }; + gpgmepp = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/gpgmepp-16.04.3.tar.xz"; + sha256 = "1850pdysi7c1w0nxnhcbrhnkrfqyrcl0laxyjcw1g1ln764pwcmj"; + name = "gpgmepp-16.04.3.tar.xz"; + }; + }; + granatier = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/granatier-16.04.3.tar.xz"; + sha256 = "172rlx3472gq6lv30p8sw09rj4bxj4lxny4xqi0vwkbdmfscfsxw"; + name = "granatier-16.04.3.tar.xz"; + }; + }; + grantleetheme = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/grantleetheme-16.04.3.tar.xz"; + sha256 = "071qybjfa83441xmxd6mjj189blcrds9ddqcpvvna1zlajn0rgby"; + name = "grantleetheme-16.04.3.tar.xz"; + }; + }; + gwenview = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/gwenview-16.04.3.tar.xz"; + sha256 = "02cjbz4zjbxvqcd7cwaxjzdhjhs86m79cdzcf41q1byk41jajshl"; + name = "gwenview-16.04.3.tar.xz"; + }; + }; + incidenceeditor = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/incidenceeditor-16.04.3.tar.xz"; + sha256 = "1yms81yzkj84hn5w8kkzsnxb6m7rn5n1d9n1nap4rh570bmssrjf"; + name = "incidenceeditor-16.04.3.tar.xz"; + }; + }; + jovie = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/jovie-16.04.3.tar.xz"; + sha256 = "0n8bk36n2024rhiy0qfwz03vx8nja2jylwgfqfj4y5lzdqnc9kbz"; + name = "jovie-16.04.3.tar.xz"; + }; + }; + juk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/juk-16.04.3.tar.xz"; + sha256 = "1nfs23dd5nd5qmdr8c2m6wxaq7m1vrxhdwjm7gqjrskmw3gcd0ai"; + name = "juk-16.04.3.tar.xz"; + }; + }; + kaccessible = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kaccessible-16.04.3.tar.xz"; + sha256 = "1qmqpcp5dfn2iwvkfya5bb8v56d2zw9136swzv9nf44gg8mlayvx"; + name = "kaccessible-16.04.3.tar.xz"; + }; + }; + kaccounts-integration = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kaccounts-integration-16.04.3.tar.xz"; + sha256 = "0wspjy6xpki8i2qkp289hmgz9cg8vqy50fp3ljljddqcgkxmi8lb"; + name = "kaccounts-integration-16.04.3.tar.xz"; + }; + }; + kaccounts-providers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kaccounts-providers-16.04.3.tar.xz"; + sha256 = "0imnqxcwyk1icbqzhmyz60sv85317w6v2ab3b35vnw65fl7dp7g9"; + name = "kaccounts-providers-16.04.3.tar.xz"; + }; + }; + kajongg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kajongg-16.04.3.tar.xz"; + sha256 = "0v8cvr0xf6895169w1qa9qw5ix3kb2820p6qs6klpn5jhk5v2xk5"; + name = "kajongg-16.04.3.tar.xz"; + }; + }; + kalarmcal = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kalarmcal-16.04.3.tar.xz"; + sha256 = "1cp9z52914h6ydzvnk1zhg0s2p4i51rx1d2s8x21n7vh4l7g89js"; + name = "kalarmcal-16.04.3.tar.xz"; + }; + }; + kalgebra = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kalgebra-16.04.3.tar.xz"; + sha256 = "17ym0q0qzgq4krk47k9vr6im658rryk51589w7r1ixpbzagwiwnv"; + name = "kalgebra-16.04.3.tar.xz"; + }; + }; + kalzium = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kalzium-16.04.3.tar.xz"; + sha256 = "1dpq0g52qfp3fi4ymynzqalyc2640j52xkkkh85awfmqrprwrrvr"; + name = "kalzium-16.04.3.tar.xz"; + }; + }; + kamera = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kamera-16.04.3.tar.xz"; + sha256 = "10bclanywlz3ac782hp2ahg6dik0q8dsh733w9cxww0v64pg932r"; + name = "kamera-16.04.3.tar.xz"; + }; + }; + kanagram = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kanagram-16.04.3.tar.xz"; + sha256 = "1pnazqmcjhckywch1wkr8ddncpd2anpx233084raynylkrx5m1fg"; + name = "kanagram-16.04.3.tar.xz"; + }; + }; + kapman = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kapman-16.04.3.tar.xz"; + sha256 = "0hzdbk741mb92fzkdpabrjkpw93yvxjwzj0q4dnlw4alyv90b2hi"; + name = "kapman-16.04.3.tar.xz"; + }; + }; + kapptemplate = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kapptemplate-16.04.3.tar.xz"; + sha256 = "07d6vbhs5mhqv9275lgplfp8y8cdx395ykncdr6cnpsgh3swn6ck"; + name = "kapptemplate-16.04.3.tar.xz"; + }; + }; + kate = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kate-16.04.3.tar.xz"; + sha256 = "1a8m7wzsxlxmqd6i90ascynrva61r486hqb3y78n34s64q1h9w4d"; + name = "kate-16.04.3.tar.xz"; + }; + }; + katomic = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/katomic-16.04.3.tar.xz"; + sha256 = "1jcb4fz91abbsfmpwsi55k2nbdg6bdazi135fxr4c3cxbm55zrmk"; + name = "katomic-16.04.3.tar.xz"; + }; + }; + kblackbox = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kblackbox-16.04.3.tar.xz"; + sha256 = "11zkp7yvwsiw54hvxmf55pw7yf165jrw6z56ak4lp936kb8w4i4v"; + name = "kblackbox-16.04.3.tar.xz"; + }; + }; + kblocks = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kblocks-16.04.3.tar.xz"; + sha256 = "11wxi7csqrf0scb7nhyvs6vp4gissig83gjpckksy0jkyszi9j2b"; + name = "kblocks-16.04.3.tar.xz"; + }; + }; + kblog = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kblog-16.04.3.tar.xz"; + sha256 = "0g79jb8wz3xhkq933ia7x00g2z9fb2kmif6wssipk6c88llspi70"; + name = "kblog-16.04.3.tar.xz"; + }; + }; + kbounce = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kbounce-16.04.3.tar.xz"; + sha256 = "0p0zkn9irksf9vb4zh3anbdhq7igjs6lqf2zqk503arjzp3f0aw3"; + name = "kbounce-16.04.3.tar.xz"; + }; + }; + kbreakout = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kbreakout-16.04.3.tar.xz"; + sha256 = "1dndpjzgksbwfqimnww4fzr69fifx7n4jrmjfxh51mkapj2p78mg"; + name = "kbreakout-16.04.3.tar.xz"; + }; + }; + kbruch = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kbruch-16.04.3.tar.xz"; + sha256 = "1f0ws4s6q8p6xn2mhxw039fb331dwk0z6grad20p2m149pw5nc23"; + name = "kbruch-16.04.3.tar.xz"; + }; + }; + kcachegrind = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcachegrind-16.04.3.tar.xz"; + sha256 = "1lvql6mm032vhmva95fw6mfkwlpigg1cc2vskhylb0kprjaywc83"; + name = "kcachegrind-16.04.3.tar.xz"; + }; + }; + kcalc = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcalc-16.04.3.tar.xz"; + sha256 = "1bb85fjyc2phgy890c7vxn935400zpcnbh46g42qgfd7pbpy9wm6"; + name = "kcalc-16.04.3.tar.xz"; + }; + }; + kcalcore = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcalcore-16.04.3.tar.xz"; + sha256 = "0m71j3h7ky21858vxlx3d2pv8mpyaf47rpmb8faffjq8gmqi277l"; + name = "kcalcore-16.04.3.tar.xz"; + }; + }; + kcalutils = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcalutils-16.04.3.tar.xz"; + sha256 = "01kip66agfjmm6fhlaxfnn4rzikwjb4lnx7siir76zzcv1y8qqyx"; + name = "kcalutils-16.04.3.tar.xz"; + }; + }; + kcharselect = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcharselect-16.04.3.tar.xz"; + sha256 = "0bqbjlhi8vlx141b1p3xfjdn6cfhxbz1m66qya9pyjnvl4vqxkf4"; + name = "kcharselect-16.04.3.tar.xz"; + }; + }; + kcolorchooser = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcolorchooser-16.04.3.tar.xz"; + sha256 = "1kh19yd2xy3scb3knganl1c09qd5674algb4cmh7l11n1g16mx7p"; + name = "kcolorchooser-16.04.3.tar.xz"; + }; + }; + kcontacts = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcontacts-16.04.3.tar.xz"; + sha256 = "1y36q145gfp2qzj9yshswz6kpq5v62by2r1g3zp9dp3wl6hvdzb5"; + name = "kcontacts-16.04.3.tar.xz"; + }; + }; + kcron = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kcron-16.04.3.tar.xz"; + sha256 = "11vy4iz59pfrbdp3z0c9gb7c6h9sps31kc48pjrjiynk6g4xharz"; + name = "kcron-16.04.3.tar.xz"; + }; + }; + kde-baseapps = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-baseapps-16.04.3.tar.xz"; + sha256 = "0silcbkjk7ka81pfnli7qdcvnl5b21ig8q6jc9l10bd14mlgf3ax"; + name = "kde-baseapps-16.04.3.tar.xz"; + }; + }; + kdebugsettings = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdebugsettings-16.04.3.tar.xz"; + sha256 = "18vcikq8ckba7vnkz2lfd613ysn3rjiaxp7v96ngiga1d3x4b3s6"; + name = "kdebugsettings-16.04.3.tar.xz"; + }; + }; + kde-dev-scripts = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-dev-scripts-16.04.3.tar.xz"; + sha256 = "133nj3n2617zdgv88s0zin1mkssa8f75cpfnqjdbd0xcyv2fyfx3"; + name = "kde-dev-scripts-16.04.3.tar.xz"; + }; + }; + kde-dev-utils = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-dev-utils-16.04.3.tar.xz"; + sha256 = "0h84liwdl0i4dlyk6ybr5pcn953i907jb7crhwp8dh7xa9zyjlim"; + name = "kde-dev-utils-16.04.3.tar.xz"; + }; + }; + kdeedu-data = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdeedu-data-16.04.3.tar.xz"; + sha256 = "0b6lkhp8ljscm8snb0yc5kqxqnhxs0rilrw9v68ybqc6xz1pma0y"; + name = "kdeedu-data-16.04.3.tar.xz"; + }; + }; + kdegraphics-mobipocket = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-mobipocket-16.04.3.tar.xz"; + sha256 = "119mdbk6zb7ppgqk2p8bmlzqpfmdrbpfb2cdmdw2cawgr0hhpfkm"; + name = "kdegraphics-mobipocket-16.04.3.tar.xz"; + }; + }; + kdegraphics-strigi-analyzer = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-strigi-analyzer-16.04.3.tar.xz"; + sha256 = "05pmzqwf6mixb1za3jni1yc1i6x6dwnk9qz4vflkifqjp1lrx823"; + name = "kdegraphics-strigi-analyzer-16.04.3.tar.xz"; + }; + }; + kdegraphics-thumbnailers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-thumbnailers-16.04.3.tar.xz"; + sha256 = "14310riwij79i6f10ld9fsf193bz8k5bhwmkp59h1l6nlhgaxyha"; + name = "kdegraphics-thumbnailers-16.04.3.tar.xz"; + }; + }; + kde-l10n-ar = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ar-16.04.3.tar.xz"; + sha256 = "1363604cck13wxi2i7n6in7qn2ss3qmqb1zsq2a0848d1y451y63"; + name = "kde-l10n-ar-16.04.3.tar.xz"; + }; + }; + kde-l10n-ast = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ast-16.04.3.tar.xz"; + sha256 = "1a1p60djslk05nxb3m89p95w5k83k9jnwrjs26jfmkk1qi1bhxgp"; + name = "kde-l10n-ast-16.04.3.tar.xz"; + }; + }; + kde-l10n-bg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bg-16.04.3.tar.xz"; + sha256 = "0ybrki3ba5wslhk1iwh3z27x0h3nv644mrj0ylzjr51k7nxkyn05"; + name = "kde-l10n-bg-16.04.3.tar.xz"; + }; + }; + kde-l10n-bs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bs-16.04.3.tar.xz"; + sha256 = "02fpi5ahi3s6p347xwy0908kavj6jx6k4gadwv747fwh5c6879dl"; + name = "kde-l10n-bs-16.04.3.tar.xz"; + }; + }; + kde-l10n-ca = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca-16.04.3.tar.xz"; + sha256 = "0dxsnlk6my79c6fx7zxg7ccy8jvkl5pk41mh5rn2savla1f8mg20"; + name = "kde-l10n-ca-16.04.3.tar.xz"; + }; + }; + kde-l10n-ca_valencia = { + version = "ca_valencia-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca@valencia-16.04.3.tar.xz"; + sha256 = "12i84ii4k94hkgdyxqpysrd7d7jid4swar2kd1vrkx7aw4n331y4"; + name = "kde-l10n-ca_valencia-16.04.3.tar.xz"; + }; + }; + kde-l10n-cs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-cs-16.04.3.tar.xz"; + sha256 = "0x6sk7rgwwk20hfy7b1wm4s062p36rd4j39a7c79wrhwnc1apsqj"; + name = "kde-l10n-cs-16.04.3.tar.xz"; + }; + }; + kde-l10n-da = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-da-16.04.3.tar.xz"; + sha256 = "1jah412d3yzixlw2wqp29nf2ils4qf9pi5hmafl0qb2ap0jf6p6i"; + name = "kde-l10n-da-16.04.3.tar.xz"; + }; + }; + kde-l10n-de = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-de-16.04.3.tar.xz"; + sha256 = "0ykxlc8l9kq9zy52rgwfs4ilcxa12s99jzwsfn4wxhhhif3brsxs"; + name = "kde-l10n-de-16.04.3.tar.xz"; + }; + }; + kde-l10n-el = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-el-16.04.3.tar.xz"; + sha256 = "0yjq29l9c5kfqd1qgr8rwln09gss23dk7fisznswzfns9mgwwa5r"; + name = "kde-l10n-el-16.04.3.tar.xz"; + }; + }; + kde-l10n-en_GB = { + version = "en_GB-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-en_GB-16.04.3.tar.xz"; + sha256 = "1abzb25182sk1xr1ppnfpbibspqccg72wxdg14mzq87c3v126p08"; + name = "kde-l10n-en_GB-16.04.3.tar.xz"; + }; + }; + kde-l10n-eo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eo-16.04.3.tar.xz"; + sha256 = "1lcb2payk5gq6pqj7wgr8q6f2ww3r11szw799xw4mysclnybadl6"; + name = "kde-l10n-eo-16.04.3.tar.xz"; + }; + }; + kde-l10n-es = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-es-16.04.3.tar.xz"; + sha256 = "1grl52msc6i2xbkgabyjkv4mvmiwlyfy51ipmb29rjygqz7xqrnc"; + name = "kde-l10n-es-16.04.3.tar.xz"; + }; + }; + kde-l10n-et = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-et-16.04.3.tar.xz"; + sha256 = "0a8hkf3yzqzy4sffd3c126icwsfqrhyq3xkqdg0ijz2sph9rx6vd"; + name = "kde-l10n-et-16.04.3.tar.xz"; + }; + }; + kde-l10n-eu = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eu-16.04.3.tar.xz"; + sha256 = "19083h2yrnw4mpjbx590ypks9ix0axs4lqhd9bria5b5bndhn2pd"; + name = "kde-l10n-eu-16.04.3.tar.xz"; + }; + }; + kde-l10n-fa = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fa-16.04.3.tar.xz"; + sha256 = "1c23m9s6gzlqbf68c5xqp8brk2q2gqsxskblk0zkial61bwnw77w"; + name = "kde-l10n-fa-16.04.3.tar.xz"; + }; + }; + kde-l10n-fi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fi-16.04.3.tar.xz"; + sha256 = "1m7cs18wgza50nb2ybasyg7j0l25bkx6zd1dlnfqdrfc9d7mg7ab"; + name = "kde-l10n-fi-16.04.3.tar.xz"; + }; + }; + kde-l10n-fr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fr-16.04.3.tar.xz"; + sha256 = "0zhfbqgir92fc5zgll5w68bdkqv24xsp4wp3vvk8cvgfqr7qxjv1"; + name = "kde-l10n-fr-16.04.3.tar.xz"; + }; + }; + kde-l10n-ga = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ga-16.04.3.tar.xz"; + sha256 = "1p8vfm4b4w070k841lnsxxgwls8dhdadnf48s4igg2zhcnngg5hk"; + name = "kde-l10n-ga-16.04.3.tar.xz"; + }; + }; + kde-l10n-gl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-gl-16.04.3.tar.xz"; + sha256 = "0l9nr6iqpmacaznl7d02gk6nvd97069qp065qxknsnzzhzxdr8h9"; + name = "kde-l10n-gl-16.04.3.tar.xz"; + }; + }; + kde-l10n-he = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-he-16.04.3.tar.xz"; + sha256 = "0dmz0acqdkg56g52nin13mdpii7p7nv5i4bscc6x5wqsvzcg83az"; + name = "kde-l10n-he-16.04.3.tar.xz"; + }; + }; + kde-l10n-hi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hi-16.04.3.tar.xz"; + sha256 = "0ywk9ylf8zjpf5cqchyziw2jmk27nhp0kgjj9a4cg88091q0ix4p"; + name = "kde-l10n-hi-16.04.3.tar.xz"; + }; + }; + kde-l10n-hr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hr-16.04.3.tar.xz"; + sha256 = "1cjdp3bm1mf50cdnr389gb58si2n8ylmgmw8xyx974ha7v6mxf71"; + name = "kde-l10n-hr-16.04.3.tar.xz"; + }; + }; + kde-l10n-hu = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hu-16.04.3.tar.xz"; + sha256 = "12mlm3gczb24k66yxk3spqimzknybpgz9piprrbxabdiha8p11iw"; + name = "kde-l10n-hu-16.04.3.tar.xz"; + }; + }; + kde-l10n-ia = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ia-16.04.3.tar.xz"; + sha256 = "1855ydjczfkn70s3vmdvg0qi06ix0rqp9ry49w15mmb23np8qmg2"; + name = "kde-l10n-ia-16.04.3.tar.xz"; + }; + }; + kde-l10n-id = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-id-16.04.3.tar.xz"; + sha256 = "0ljpg8iz1vjryp9arwr3wr66lscb6r0yd25wssxzsanfp595zhw4"; + name = "kde-l10n-id-16.04.3.tar.xz"; + }; + }; + kde-l10n-is = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-is-16.04.3.tar.xz"; + sha256 = "0xn7a701r80lqgbskkaca085fbkwnv872ph3p2hsiz3ps4aqp4sc"; + name = "kde-l10n-is-16.04.3.tar.xz"; + }; + }; + kde-l10n-it = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-it-16.04.3.tar.xz"; + sha256 = "06sbcp6maf316lr9vsa7922qqymrnj2ppyypx0vjzxswqwgykhvp"; + name = "kde-l10n-it-16.04.3.tar.xz"; + }; + }; + kde-l10n-ja = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ja-16.04.3.tar.xz"; + sha256 = "0p3d9zy6l4axj7p97b2q57ccwkglhamlbfjfw6kk5c26qxss9ig4"; + name = "kde-l10n-ja-16.04.3.tar.xz"; + }; + }; + kde-l10n-kk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-kk-16.04.3.tar.xz"; + sha256 = "0538hxcy2yc007m2bji8jjhdifdgyf7azbk32qn54bkvliis70l2"; + name = "kde-l10n-kk-16.04.3.tar.xz"; + }; + }; + kde-l10n-km = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-km-16.04.3.tar.xz"; + sha256 = "0b1vryn61pf3dqac4rn6hjznrrdylvsx8bsyamvhry7grdnaq9fp"; + name = "kde-l10n-km-16.04.3.tar.xz"; + }; + }; + kde-l10n-ko = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ko-16.04.3.tar.xz"; + sha256 = "05k261wxvl9plxx6fsx8y6paaqykmsmq5flv9jcgj958llq4d0a1"; + name = "kde-l10n-ko-16.04.3.tar.xz"; + }; + }; + kde-l10n-lt = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lt-16.04.3.tar.xz"; + sha256 = "1wk6q7i1p7nwa2dl4zqyqja2m615d5ghhn8hnkcnfpc2prslr3lr"; + name = "kde-l10n-lt-16.04.3.tar.xz"; + }; + }; + kde-l10n-lv = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lv-16.04.3.tar.xz"; + sha256 = "153vdr9q8zp3rm4h2paxg6gm8dk3d6vdvrg9wsk21s1pc2d3kha6"; + name = "kde-l10n-lv-16.04.3.tar.xz"; + }; + }; + kde-l10n-mr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-mr-16.04.3.tar.xz"; + sha256 = "1lmrs5vihb7zkl15mqihxb5vcrrzphzmfinmkbfb43sw91il8hiq"; + name = "kde-l10n-mr-16.04.3.tar.xz"; + }; + }; + kde-l10n-nb = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nb-16.04.3.tar.xz"; + sha256 = "03a1d8dzpbzbpd7sr718mwaaihyhvfwfkln09cnahykdykmnb545"; + name = "kde-l10n-nb-16.04.3.tar.xz"; + }; + }; + kde-l10n-nds = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nds-16.04.3.tar.xz"; + sha256 = "0716l1al3wi6ws2n25gdc845k1536nbxlxskvy1k2cravlabk2j6"; + name = "kde-l10n-nds-16.04.3.tar.xz"; + }; + }; + kde-l10n-nl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nl-16.04.3.tar.xz"; + sha256 = "1jy8shpfm7fvkzcg85w1b7h6pcl01hy3dk99cd9plaqgs25z5hg7"; + name = "kde-l10n-nl-16.04.3.tar.xz"; + }; + }; + kde-l10n-nn = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nn-16.04.3.tar.xz"; + sha256 = "1parcwfwkqs8n784k2mqlpn4gly6mk72akfa0k5250w198qcc1m9"; + name = "kde-l10n-nn-16.04.3.tar.xz"; + }; + }; + kde-l10n-pa = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pa-16.04.3.tar.xz"; + sha256 = "172p45xxpzh8ifiq35fzi42vad2icj5rpwqbswkd56dgvv8m6xwm"; + name = "kde-l10n-pa-16.04.3.tar.xz"; + }; + }; + kde-l10n-pl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pl-16.04.3.tar.xz"; + sha256 = "0nmjd68h4ybn68al8nhnzc9gj78j5zfzsy9h6kl6yzydgxsid9sc"; + name = "kde-l10n-pl-16.04.3.tar.xz"; + }; + }; + kde-l10n-pt = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt-16.04.3.tar.xz"; + sha256 = "03c0hwf0sc75kw81h0adbcmp6vi6ngjgq3bk1v7lqz12c3nkc6mf"; + name = "kde-l10n-pt-16.04.3.tar.xz"; + }; + }; + kde-l10n-pt_BR = { + version = "pt_BR-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt_BR-16.04.3.tar.xz"; + sha256 = "1s068mz6r0crqw3jqix9x94dcwk7z9nr4jisxlj8lwfa13qb20a1"; + name = "kde-l10n-pt_BR-16.04.3.tar.xz"; + }; + }; + kde-l10n-ro = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ro-16.04.3.tar.xz"; + sha256 = "0g2w1pjcwc1rk9fsqwmlv9a6hxxqzwcf8r889qcf4vrkra3xdfy8"; + name = "kde-l10n-ro-16.04.3.tar.xz"; + }; + }; + kde-l10n-ru = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ru-16.04.3.tar.xz"; + sha256 = "03jvisz6y2g3y1ci384dn7gb16lcx41cx0xvn4m1mkrry0ij0s4y"; + name = "kde-l10n-ru-16.04.3.tar.xz"; + }; + }; + kde-l10n-sk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sk-16.04.3.tar.xz"; + sha256 = "14jy06js16slf1qv20mkw05l06ragf5zcskzzm772q66y1qd712r"; + name = "kde-l10n-sk-16.04.3.tar.xz"; + }; + }; + kde-l10n-sl = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sl-16.04.3.tar.xz"; + sha256 = "0nq1g4hc3lnd4xwmlfa7lqical0k5rag4mw2xxgakpkhpwij5ff0"; + name = "kde-l10n-sl-16.04.3.tar.xz"; + }; + }; + kde-l10n-sr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sr-16.04.3.tar.xz"; + sha256 = "0qc5lfdfj45hpxly2bdy3h65qgq96k2sym56mwb52305dv380qlz"; + name = "kde-l10n-sr-16.04.3.tar.xz"; + }; + }; + kde-l10n-sv = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sv-16.04.3.tar.xz"; + sha256 = "08rh3waajhynyllnvsghmspxqxr23lk0w5x0r61c2wzcqsvmj8xg"; + name = "kde-l10n-sv-16.04.3.tar.xz"; + }; + }; + kde-l10n-tr = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-tr-16.04.3.tar.xz"; + sha256 = "04fqm0hlzc77hmxkycgd04vhfq9szgf0r16liaxgd03k0p8nk54x"; + name = "kde-l10n-tr-16.04.3.tar.xz"; + }; + }; + kde-l10n-ug = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ug-16.04.3.tar.xz"; + sha256 = "03dk6n5qp5qdgqbrlji9pz9lbi0kdq0w7pgk2f91xgfhnhd6c68b"; + name = "kde-l10n-ug-16.04.3.tar.xz"; + }; + }; + kde-l10n-uk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-uk-16.04.3.tar.xz"; + sha256 = "0d9xxh2avammp662nsxgj57bzp38wbv56hvbzpscr3qfmyqhdndc"; + name = "kde-l10n-uk-16.04.3.tar.xz"; + }; + }; + kde-l10n-wa = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-wa-16.04.3.tar.xz"; + sha256 = "0hjcn24i96qsvdsf2jhghb2jmgc6z9z2xx7ldkgrq5949vf0dcb0"; + name = "kde-l10n-wa-16.04.3.tar.xz"; + }; + }; + kde-l10n-zh_CN = { + version = "zh_CN-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_CN-16.04.3.tar.xz"; + sha256 = "19qnnd4lkqf3zd4l3c0ffprd6y0bqdyrvsmhm2jlhx4z7m3c491q"; + name = "kde-l10n-zh_CN-16.04.3.tar.xz"; + }; + }; + kde-l10n-zh_TW = { + version = "zh_TW-16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_TW-16.04.3.tar.xz"; + sha256 = "0kd0lkv3i4nlkgv9wapsyinv407np91h2hh14whkl2dx9mvmd7g1"; + name = "kde-l10n-zh_TW-16.04.3.tar.xz"; + }; + }; + kdelibs = { + version = "4.14.22"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdelibs-4.14.22.tar.xz"; + sha256 = "0rym674pr05in9wghhbwprlw5648ynnklfb858wxj9f3kvlsbjph"; + name = "kdelibs-4.14.22.tar.xz"; + }; + }; + kdenetwork-filesharing = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-filesharing-16.04.3.tar.xz"; + sha256 = "05kb0q6krfkx8hm6pxb6qx6ihd0r300qpibk62dj0v4qzvz4fqvl"; + name = "kdenetwork-filesharing-16.04.3.tar.xz"; + }; + }; + kdenetwork-strigi-analyzers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-strigi-analyzers-16.04.3.tar.xz"; + sha256 = "1hhlpj9dzkmg3ajia5mjsxcaq27yl35cpy99afx67n3nb3wf9113"; + name = "kdenetwork-strigi-analyzers-16.04.3.tar.xz"; + }; + }; + kdenlive = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdenlive-16.04.3.tar.xz"; + sha256 = "0354pcfjs9xndh4mb0x4sryg0l9rvmb0qjw45053yg6lq6b3zbym"; + name = "kdenlive-16.04.3.tar.xz"; + }; + }; + kdepim = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-16.04.3.tar.xz"; + sha256 = "1drvf4q50bknm2b806bzi2v80mlrmj1c5d6wpmrmy7f8pp2z7kj2"; + name = "kdepim-16.04.3.tar.xz"; + }; + }; + kdepim-addons = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-addons-16.04.3.tar.xz"; + sha256 = "1gnazsd3ihghccna0880c1nlqv938q3jnn613hxa5p25j9mgvn89"; + name = "kdepim-addons-16.04.3.tar.xz"; + }; + }; + kdepim-apps-libs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-apps-libs-16.04.3.tar.xz"; + sha256 = "08xrpdq6d51gimi3qs1njvv7h1pl0gwpkifxxn56nznjdrgl37l3"; + name = "kdepim-apps-libs-16.04.3.tar.xz"; + }; + }; + kdepimlibs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepimlibs-16.04.3.tar.xz"; + sha256 = "02nj4hml6wns6hkpc7vm0swjfalm5rhrwd33izkyqzp30gyz2bc6"; + name = "kdepimlibs-16.04.3.tar.xz"; + }; + }; + kdepim-runtime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdepim-runtime-16.04.3.tar.xz"; + sha256 = "129b94nsnwai4fd2rg3zqc5p8k1i7dq0l5z7hai15p5naab7541j"; + name = "kdepim-runtime-16.04.3.tar.xz"; + }; + }; + kde-runtime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kde-runtime-16.04.3.tar.xz"; + sha256 = "0pahf8rz4dfwl7c6q8liv6c4rmhiwnv03kfvj4j8lnrhif20y3k9"; + name = "kde-runtime-16.04.3.tar.xz"; + }; + }; + kdesdk-kioslaves = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdesdk-kioslaves-16.04.3.tar.xz"; + sha256 = "15ijhxd7x9mvpfsjv3xbs6l6nvbwa7d6sf25aa2j4h2qxx1qsq2l"; + name = "kdesdk-kioslaves-16.04.3.tar.xz"; + }; + }; + kdesdk-strigi-analyzers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdesdk-strigi-analyzers-16.04.3.tar.xz"; + sha256 = "1pyqw7vg0r5amma6jjjdwgspig4w0rawj0671qv9v3rgnvxqkcq4"; + name = "kdesdk-strigi-analyzers-16.04.3.tar.xz"; + }; + }; + kdesdk-thumbnailers = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdesdk-thumbnailers-16.04.3.tar.xz"; + sha256 = "1yh4cddpqx6f6xw9rpxwvnw8d31psdgy4gcrd68115jan4r7ppxh"; + name = "kdesdk-thumbnailers-16.04.3.tar.xz"; + }; + }; + kdewebdev = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdewebdev-16.04.3.tar.xz"; + sha256 = "1lkhv4flg7rdsn6wrrnmzqgdwhi9bjisapgsdgr68hqypzhfvbjm"; + name = "kdewebdev-16.04.3.tar.xz"; + }; + }; + kdf = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdf-16.04.3.tar.xz"; + sha256 = "1za42wv569phlfdkdhb9v9hnz8561f8jvyh2vdjb070bkylipk5k"; + name = "kdf-16.04.3.tar.xz"; + }; + }; + kdgantt2 = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdgantt2-16.04.3.tar.xz"; + sha256 = "0xdm105c01svxryxg9jy8sqg9s8jdhm5jmvn662mj50m0nllvqm6"; + name = "kdgantt2-16.04.3.tar.xz"; + }; + }; + kdiamond = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kdiamond-16.04.3.tar.xz"; + sha256 = "13rili5pp2zgbdgnr65gy43rlwnjigr3rqp954rbfh16pkdxsjzw"; + name = "kdiamond-16.04.3.tar.xz"; + }; + }; + kfloppy = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kfloppy-16.04.3.tar.xz"; + sha256 = "16mrfk8bqp1fnldxxrpycyx0wg87v2szs406jj1qfyywrz8w76b7"; + name = "kfloppy-16.04.3.tar.xz"; + }; + }; + kfourinline = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kfourinline-16.04.3.tar.xz"; + sha256 = "1ar4lglxy2dpmvl0s68wkmibn7m4qy8paxzhvh3pq95dcbvcg8yp"; + name = "kfourinline-16.04.3.tar.xz"; + }; + }; + kgeography = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kgeography-16.04.3.tar.xz"; + sha256 = "0kqc39i8yj9jah52fc5afh4g94l07faq4jv0si0b3c17x7q64nwh"; + name = "kgeography-16.04.3.tar.xz"; + }; + }; + kget = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kget-16.04.3.tar.xz"; + sha256 = "05sz7r6idkaskf193ryam83g77rzdz96wp1sqs36lr9x513bb5fh"; + name = "kget-16.04.3.tar.xz"; + }; + }; + kgoldrunner = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kgoldrunner-16.04.3.tar.xz"; + sha256 = "1rd6k64qkpa9hz1k2x9sv018fqzv57l74rv78rv54czrc9b0wdby"; + name = "kgoldrunner-16.04.3.tar.xz"; + }; + }; + kgpg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kgpg-16.04.3.tar.xz"; + sha256 = "0fr3dvfrp6yy9b82k4rc4izwyxvvg2yqz2fq4s6srcsn65rkspv8"; + name = "kgpg-16.04.3.tar.xz"; + }; + }; + khangman = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/khangman-16.04.3.tar.xz"; + sha256 = "0y63sr4q99j7m3yb6hdnydg3rl9hampkpy05qfz9jdm2znq6j1iw"; + name = "khangman-16.04.3.tar.xz"; + }; + }; + khelpcenter = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/khelpcenter-16.04.3.tar.xz"; + sha256 = "1hlwlaja1dwjszyig17f2kfma6li2nqi76yyagfk0b35w8fk50d9"; + name = "khelpcenter-16.04.3.tar.xz"; + }; + }; + kholidays = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kholidays-16.04.3.tar.xz"; + sha256 = "0p52bkysjfd7w24si2dcq7yv7diig2wz1a7x2c7vzwv9qw39m3g6"; + name = "kholidays-16.04.3.tar.xz"; + }; + }; + kidentitymanagement = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kidentitymanagement-16.04.3.tar.xz"; + sha256 = "1nv5nda3wkdhwh3lggb0pmcs4h9csh4kziw6nlk0q9iyymrkf2y0"; + name = "kidentitymanagement-16.04.3.tar.xz"; + }; + }; + kig = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kig-16.04.3.tar.xz"; + sha256 = "162ixbnb9y2h5q358m3cw51c2xapx6rb8yi9q3460jnhxmhvij7p"; + name = "kig-16.04.3.tar.xz"; + }; + }; + kigo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kigo-16.04.3.tar.xz"; + sha256 = "0324f2mjia73cq2v3kdipw81nsl2q74ziqhxqb9vrjk1jlpq8fhj"; + name = "kigo-16.04.3.tar.xz"; + }; + }; + killbots = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/killbots-16.04.3.tar.xz"; + sha256 = "15jspfavyka86djb19fq7h1x573l7nsb5d8p2zfgrc1qiw794h0h"; + name = "killbots-16.04.3.tar.xz"; + }; + }; + kimap = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kimap-16.04.3.tar.xz"; + sha256 = "0d3ckh7b6jdpwl2cqq93mz0gw6gfa7a0qbvgsrmzl25v1898dbda"; + name = "kimap-16.04.3.tar.xz"; + }; + }; + kio-extras = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kio-extras-16.04.3.tar.xz"; + sha256 = "1sxg7jaklqxaw7s05a83x769f430085wx7bqlbl9xwqdmpbnj3hh"; + name = "kio-extras-16.04.3.tar.xz"; + }; + }; + kiriki = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kiriki-16.04.3.tar.xz"; + sha256 = "1jk5v2z8ivc4q3zcaxmch7kym7pizch1fqpbrvql1ilfbmjgjjp9"; + name = "kiriki-16.04.3.tar.xz"; + }; + }; + kiten = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kiten-16.04.3.tar.xz"; + sha256 = "1rjb9icam7plqj8bhd7gfhbmwa381nszk1f7ibpgwxh1416njg1l"; + name = "kiten-16.04.3.tar.xz"; + }; + }; + kjumpingcube = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kjumpingcube-16.04.3.tar.xz"; + sha256 = "07zz862l1s348shkj9mbwppz54cqa5plw3jdca3fh5spfnllvhm0"; + name = "kjumpingcube-16.04.3.tar.xz"; + }; + }; + kldap = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kldap-16.04.3.tar.xz"; + sha256 = "01vm2q2sxzwapq7qhsgw5vaplsawmvcrd0virwc5k83viy8jxbi4"; + name = "kldap-16.04.3.tar.xz"; + }; + }; + kleopatra = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kleopatra-16.04.3.tar.xz"; + sha256 = "02hbdc976k304qfiak2iy34s8rcqyj8fgbz8p0yfpkh8jxrvgbym"; + name = "kleopatra-16.04.3.tar.xz"; + }; + }; + klettres = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/klettres-16.04.3.tar.xz"; + sha256 = "0xbxvzw3vskna4sxi8yy3z9d80dpjzgpark5wnyclyrdnkla9973"; + name = "klettres-16.04.3.tar.xz"; + }; + }; + klickety = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/klickety-16.04.3.tar.xz"; + sha256 = "12d700laya9apgp5pvrc2vpbz2d1l8dl8q37ccmkixh6dxf78z0c"; + name = "klickety-16.04.3.tar.xz"; + }; + }; + klines = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/klines-16.04.3.tar.xz"; + sha256 = "0xybhlz7m0k4dnxzpxjsx0fk715scjdly9ahdzcwdkf83vd52x97"; + name = "klines-16.04.3.tar.xz"; + }; + }; + kmag = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmag-16.04.3.tar.xz"; + sha256 = "1pc7a6ry0c4wg5fm42ccmjhgazi2wixbsc9mylk4qwa0246lk8rc"; + name = "kmag-16.04.3.tar.xz"; + }; + }; + kmahjongg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmahjongg-16.04.3.tar.xz"; + sha256 = "1zs4ndbf4lm9ry61bb2xcjsc2nnlvz36n8vnk2fpcvhvp266jhd7"; + name = "kmahjongg-16.04.3.tar.xz"; + }; + }; + kmailtransport = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmailtransport-16.04.3.tar.xz"; + sha256 = "16761r8ddmr7wdrqjwn5am35z8kz028mqcxmj582mrqfyr4w3s0k"; + name = "kmailtransport-16.04.3.tar.xz"; + }; + }; + kmbox = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmbox-16.04.3.tar.xz"; + sha256 = "0q6vf7813clnp349aq103m38mk0pazmwncmziwxmlwpj814887k2"; + name = "kmbox-16.04.3.tar.xz"; + }; + }; + kmime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmime-16.04.3.tar.xz"; + sha256 = "1cwls6kd9sh2iilncq0k2c9nb4hfwa454fmn9y4m5g2p7yb4n70n"; + name = "kmime-16.04.3.tar.xz"; + }; + }; + kmines = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmines-16.04.3.tar.xz"; + sha256 = "1m5hkanihvd1g1p1131jx1fp1d9ga8yr849ari4mmjnwcmjjlxlv"; + name = "kmines-16.04.3.tar.xz"; + }; + }; + kmix = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmix-16.04.3.tar.xz"; + sha256 = "0iqqhsq1v1cdy53dby35d8gpb2fll1drk32g82kbs7chddv5mnpd"; + name = "kmix-16.04.3.tar.xz"; + }; + }; + kmousetool = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmousetool-16.04.3.tar.xz"; + sha256 = "1a4nj6c1nvi2xbnbw6iqml5gbcmfi8ymynp3lvh1h8wrclljj3kd"; + name = "kmousetool-16.04.3.tar.xz"; + }; + }; + kmouth = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmouth-16.04.3.tar.xz"; + sha256 = "0fwjjcyif4p4w5nzv8s7fvlfp1z3fn2g1zmkjbz7s87bssndmiz4"; + name = "kmouth-16.04.3.tar.xz"; + }; + }; + kmplot = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kmplot-16.04.3.tar.xz"; + sha256 = "0pnawlmqr3fl0sxfll6ch4651q9cp2r1cfw7kn8fj3c9v03g6mfz"; + name = "kmplot-16.04.3.tar.xz"; + }; + }; + knavalbattle = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/knavalbattle-16.04.3.tar.xz"; + sha256 = "1k2wl33ipbhrcbv9hnskss6l46kk05j8rqw3a2kqflql16mv7wga"; + name = "knavalbattle-16.04.3.tar.xz"; + }; + }; + knetwalk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/knetwalk-16.04.3.tar.xz"; + sha256 = "0jy9v11chrqkw7kddwsjg5aixs0rbkx1g2m624pa3341iqrrqbml"; + name = "knetwalk-16.04.3.tar.xz"; + }; + }; + kolf = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kolf-16.04.3.tar.xz"; + sha256 = "0pbjkzzqfqqxl05kdb1hqfv4linzj2al6hrsp6h7gc2n5s9cq220"; + name = "kolf-16.04.3.tar.xz"; + }; + }; + kollision = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kollision-16.04.3.tar.xz"; + sha256 = "0jwml54bd6bhgm4hygcxzw74274ddx99q45n0i4zh7lx6x7j8zji"; + name = "kollision-16.04.3.tar.xz"; + }; + }; + kolourpaint = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kolourpaint-16.04.3.tar.xz"; + sha256 = "149w95j5fh9jxah2yjchwkcaqgd1x9qmgwnk7mzx5gxcdbawwwcc"; + name = "kolourpaint-16.04.3.tar.xz"; + }; + }; + kompare = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kompare-16.04.3.tar.xz"; + sha256 = "0ilfk8rkb4q1lgvcki0zwlmrbv630b4iyv58g4vnf72gpgnd981v"; + name = "kompare-16.04.3.tar.xz"; + }; + }; + konquest = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/konquest-16.04.3.tar.xz"; + sha256 = "16799yabykvfq7wcsc0vlwhws9iyf1risa8lxfdfmsh6f7yb5kf1"; + name = "konquest-16.04.3.tar.xz"; + }; + }; + konsole = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/konsole-16.04.3.tar.xz"; + sha256 = "1dhb2xyl8qzwhpnvfkqaqcn4qpsj1d9yc28qgvwyb6kn4ygywl7n"; + name = "konsole-16.04.3.tar.xz"; + }; + }; + kontactinterface = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kontactinterface-16.04.3.tar.xz"; + sha256 = "0fh1sy1rqs31km8v1vbv0gqrh7vsc6vdk7ab5cqx9nxkf0kqnj3v"; + name = "kontactinterface-16.04.3.tar.xz"; + }; + }; + kopete = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kopete-16.04.3.tar.xz"; + sha256 = "1fqagh40kx4dad131vild7wxlciwm54ilsrs5ahy63xisbi2aip3"; + name = "kopete-16.04.3.tar.xz"; + }; + }; + kpat = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kpat-16.04.3.tar.xz"; + sha256 = "02hinknnpi5cvpwdih10iizzzci9zhhcpwclw05fcwz65wig6b5r"; + name = "kpat-16.04.3.tar.xz"; + }; + }; + kpimtextedit = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kpimtextedit-16.04.3.tar.xz"; + sha256 = "1kp3wimzvqg7dqh204kdfkqqrlb5mq895bind9g524rc4mxzd882"; + name = "kpimtextedit-16.04.3.tar.xz"; + }; + }; + kppp = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kppp-16.04.3.tar.xz"; + sha256 = "0bnwgf3rvm3c3qgsp8301iba2yisd52miywmfblsh9z7zaf36qp2"; + name = "kppp-16.04.3.tar.xz"; + }; + }; + kqtquickcharts = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kqtquickcharts-16.04.3.tar.xz"; + sha256 = "10hjryss35zz7mj34ix1qgxmkww9d42mqx60ywgkpjv297z06vrv"; + name = "kqtquickcharts-16.04.3.tar.xz"; + }; + }; + krdc = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/krdc-16.04.3.tar.xz"; + sha256 = "1c4ngdc3xip72ag96fzd3fn49v5lli8g61h92c80myx57cs3qsl0"; + name = "krdc-16.04.3.tar.xz"; + }; + }; + kremotecontrol = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kremotecontrol-16.04.3.tar.xz"; + sha256 = "0xw7fmf6npv6n845kc01apc8lqy6fpbas6427292r6qkbjqb7vgz"; + name = "kremotecontrol-16.04.3.tar.xz"; + }; + }; + kreversi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kreversi-16.04.3.tar.xz"; + sha256 = "1jddmjv5vnp42pgkfrgwsnnzn9bxy90d7wbhdjyqir77vb14ccj5"; + name = "kreversi-16.04.3.tar.xz"; + }; + }; + krfb = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/krfb-16.04.3.tar.xz"; + sha256 = "13ifwp93662b8cx1hary3kx5js1w9wnpi6ykw1f5sriav3xmfyvb"; + name = "krfb-16.04.3.tar.xz"; + }; + }; + kross-interpreters = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kross-interpreters-16.04.3.tar.xz"; + sha256 = "0nl0gb03yqn4rv0i8r6axr7rf5w416f4h5912r9004hwyf1ahzda"; + name = "kross-interpreters-16.04.3.tar.xz"; + }; + }; + kruler = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kruler-16.04.3.tar.xz"; + sha256 = "0317sj7q7x436hzry7blpb8mnbqza7srk49r2jgiasj8i0mlxy5n"; + name = "kruler-16.04.3.tar.xz"; + }; + }; + ksaneplugin = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksaneplugin-16.04.3.tar.xz"; + sha256 = "1k9zdd3h2zavp4l7npirrj3vbb4hm7gbwgmn6l9x93p8dzpw3xsw"; + name = "ksaneplugin-16.04.3.tar.xz"; + }; + }; + kscd = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kscd-16.04.3.tar.xz"; + sha256 = "0l0wqxcajklymc21libaq1hlzbwwnzmd0s40ls1m8gfwqzrn03k4"; + name = "kscd-16.04.3.tar.xz"; + }; + }; + kshisen = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kshisen-16.04.3.tar.xz"; + sha256 = "1q2acfvbca8jw2yd1xkyny3mplzvsbjlfzilkyc6j4ccply4zsk0"; + name = "kshisen-16.04.3.tar.xz"; + }; + }; + ksirk = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksirk-16.04.3.tar.xz"; + sha256 = "03kpm7kck3d6nv2m5jmn24ni09pxg8jcfa0p6sjijpinh8n1r6aj"; + name = "ksirk-16.04.3.tar.xz"; + }; + }; + ksnakeduel = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksnakeduel-16.04.3.tar.xz"; + sha256 = "0h87rbspc0b4fnq21vr9nimzjir0i0gijk2wh1lmfjvfviinw6ww"; + name = "ksnakeduel-16.04.3.tar.xz"; + }; + }; + kspaceduel = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kspaceduel-16.04.3.tar.xz"; + sha256 = "0021pmxgh6pw777s5136hmgc83f5dy9bdk72gzfhjp20khl1dpm1"; + name = "kspaceduel-16.04.3.tar.xz"; + }; + }; + ksquares = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksquares-16.04.3.tar.xz"; + sha256 = "02byd0if709zc5zrn8a17b68jfh8fi4xilybiih7nppdy9jrmbap"; + name = "ksquares-16.04.3.tar.xz"; + }; + }; + kstars = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kstars-16.04.3.tar.xz"; + sha256 = "159gk8hslzx9lb0jgf2jv0h8p6618l9xkjdfbvydh4zvgixsh467"; + name = "kstars-16.04.3.tar.xz"; + }; + }; + ksudoku = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksudoku-16.04.3.tar.xz"; + sha256 = "0x9mqzl3s9p3p8x024wllqxff4p065ajirvw05fcqac7vdvndyd0"; + name = "ksudoku-16.04.3.tar.xz"; + }; + }; + ksystemlog = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ksystemlog-16.04.3.tar.xz"; + sha256 = "1fzr5lbwj85zwhc3ydhijwsmm2b3sfrg67xa71vswndfi8g5gh9v"; + name = "ksystemlog-16.04.3.tar.xz"; + }; + }; + kteatime = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kteatime-16.04.3.tar.xz"; + sha256 = "18pm3416kwi4pj71qgpm1qr83xpz5l2xjnrz9nx9vnlz9sdk44w3"; + name = "kteatime-16.04.3.tar.xz"; + }; + }; + ktimer = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktimer-16.04.3.tar.xz"; + sha256 = "0n4b7hrlmr64fm3m5yhi7pg2qj0r0xsb73yzlylgsn8i7m2zjap8"; + name = "ktimer-16.04.3.tar.xz"; + }; + }; + ktnef = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktnef-16.04.3.tar.xz"; + sha256 = "0ra0l0apkf9bpwwcr1i2z1qmax12qd2n01rnpff58hj1zg267aqw"; + name = "ktnef-16.04.3.tar.xz"; + }; + }; + ktouch = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktouch-16.04.3.tar.xz"; + sha256 = "0c2ylp41918wqxahsnkpvq4si37nh6fps53qyd62s09d1aafh28s"; + name = "ktouch-16.04.3.tar.xz"; + }; + }; + ktp-accounts-kcm = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-accounts-kcm-16.04.3.tar.xz"; + sha256 = "0bqcdwfm0l49dkqzj8p254bxl4wabj58g338g0i4ansky5svdfih"; + name = "ktp-accounts-kcm-16.04.3.tar.xz"; + }; + }; + ktp-approver = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-approver-16.04.3.tar.xz"; + sha256 = "1z4sh03w0rzv70qimchgxgmqpxbzsf29mp4pr18qgxvkwcx7nm89"; + name = "ktp-approver-16.04.3.tar.xz"; + }; + }; + ktp-auth-handler = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-auth-handler-16.04.3.tar.xz"; + sha256 = "1llqbjf89bj44wlwkp4pq4drc7qczzdf6ckqlqiidd69rwhqc8q9"; + name = "ktp-auth-handler-16.04.3.tar.xz"; + }; + }; + ktp-call-ui = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-call-ui-16.04.3.tar.xz"; + sha256 = "07d9a28rjnb4xlmpilwzcq8dxiz3pmi57wqm1pphyw8wnf6fz1ls"; + name = "ktp-call-ui-16.04.3.tar.xz"; + }; + }; + ktp-common-internals = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-common-internals-16.04.3.tar.xz"; + sha256 = "1l497fl1mldh926f29f51rn0d3jxkjfmacw483zgglfnl1z2igr6"; + name = "ktp-common-internals-16.04.3.tar.xz"; + }; + }; + ktp-contact-list = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-list-16.04.3.tar.xz"; + sha256 = "1s9cyxl4zkvv6j45gcdk9dkyhblz0p9w5rwdpaailx1wpx55223y"; + name = "ktp-contact-list-16.04.3.tar.xz"; + }; + }; + ktp-contact-runner = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-runner-16.04.3.tar.xz"; + sha256 = "06a72vjqrz52spjcf5gic48hmsbbshsnwws8lk18cnxxc94sbgq0"; + name = "ktp-contact-runner-16.04.3.tar.xz"; + }; + }; + ktp-desktop-applets = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-desktop-applets-16.04.3.tar.xz"; + sha256 = "1qrwy3ghy2aja87dqyiivbcdfj24zji7765225k2djh8k4m9fl25"; + name = "ktp-desktop-applets-16.04.3.tar.xz"; + }; + }; + ktp-filetransfer-handler = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-filetransfer-handler-16.04.3.tar.xz"; + sha256 = "0vacl8djizz6466l095snmyg400i8c8q2pxd7xjq7488pfpvl8b3"; + name = "ktp-filetransfer-handler-16.04.3.tar.xz"; + }; + }; + ktp-kded-module = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-kded-module-16.04.3.tar.xz"; + sha256 = "0jb31d7lcby68dnq33j6yj4nqhd627i4pd0x9dpg32hf7wsc1mhs"; + name = "ktp-kded-module-16.04.3.tar.xz"; + }; + }; + ktp-send-file = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-send-file-16.04.3.tar.xz"; + sha256 = "1fka8fg8sqh8sakaz55ja3b82nwd5a6g1w0r40s5ins8wrxinh24"; + name = "ktp-send-file-16.04.3.tar.xz"; + }; + }; + ktp-text-ui = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktp-text-ui-16.04.3.tar.xz"; + sha256 = "0bdfmn4jbi8w7jnfm22hbrm3zi9i2g9byfgivlrq6iwb00lk5hxx"; + name = "ktp-text-ui-16.04.3.tar.xz"; + }; + }; + ktuberling = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/ktuberling-16.04.3.tar.xz"; + sha256 = "1m860sim81j9gm24sjhfhx5spf3ax3m1f9jb8d7zxfc272lln1l0"; + name = "ktuberling-16.04.3.tar.xz"; + }; + }; + kturtle = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kturtle-16.04.3.tar.xz"; + sha256 = "0bj73flllph0r4xps6kdsnjzd2vdayqyran6fd3l7k4f2qnjd70a"; + name = "kturtle-16.04.3.tar.xz"; + }; + }; + kubrick = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kubrick-16.04.3.tar.xz"; + sha256 = "026d5sa1xbqabsf9yj4d94x0abp93z5wdivqdl7hb2zns9w7dgk5"; + name = "kubrick-16.04.3.tar.xz"; + }; + }; + kuser = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kuser-16.04.3.tar.xz"; + sha256 = "1xcb554p0i93gyy8vm1a5aajgv0vhqxa5lpmyfz1ibrbbnm3h0h8"; + name = "kuser-16.04.3.tar.xz"; + }; + }; + kwalletmanager = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kwalletmanager-16.04.3.tar.xz"; + sha256 = "1kfxqzidpbq88liqmh8qmxyycmfx7yyy509fbrb3c3bis0cvpgwq"; + name = "kwalletmanager-16.04.3.tar.xz"; + }; + }; + kwordquiz = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/kwordquiz-16.04.3.tar.xz"; + sha256 = "1wnxyshncbxidksqi96h9isq9v88n6dihjv91ml5q2ld1k46sjnv"; + name = "kwordquiz-16.04.3.tar.xz"; + }; + }; + libgravatar = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libgravatar-16.04.3.tar.xz"; + sha256 = "1nr6p484llm4vablm41v080b8hn83254qhgw2lgrndpwl8c8wi58"; + name = "libgravatar-16.04.3.tar.xz"; + }; + }; + libkcddb = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkcddb-16.04.3.tar.xz"; + sha256 = "0k6g4a1n5p4idn0aw2l134fk94py2a35hs1b7frcpvx6f395d7h8"; + name = "libkcddb-16.04.3.tar.xz"; + }; + }; + libkcompactdisc = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkcompactdisc-16.04.3.tar.xz"; + sha256 = "091cijlcax2fgj8grwi7wysqq9f3z4riklv66qx89xs0kqx372c8"; + name = "libkcompactdisc-16.04.3.tar.xz"; + }; + }; + libkdcraw = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdcraw-16.04.3.tar.xz"; + sha256 = "0qxl9jcn9c6ifvc2r2i9gv6mca83ysn28m92jrhrf2wirn53s5gx"; + name = "libkdcraw-16.04.3.tar.xz"; + }; + }; + libkdeedu = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdeedu-16.04.3.tar.xz"; + sha256 = "0j0x6psx2nv6v1h0895qqzpdavz3xb4z5amqnbhjiz0kspalpa9p"; + name = "libkdeedu-16.04.3.tar.xz"; + }; + }; + libkdegames = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdegames-16.04.3.tar.xz"; + sha256 = "1ryjz1k8jfayj4cy3ih5wzbx26qy6mp9zka2bfc8h30pi0l9f8zd"; + name = "libkdegames-16.04.3.tar.xz"; + }; + }; + libkdepim = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkdepim-16.04.3.tar.xz"; + sha256 = "1dxx026fd2hfwdxhwp4fswb05lx8s4wdha7lj5yk4g6s8x11m56a"; + name = "libkdepim-16.04.3.tar.xz"; + }; + }; + libkeduvocdocument = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkeduvocdocument-16.04.3.tar.xz"; + sha256 = "0ajfk2yzqp1rjxllrvknhwkxv16d40fi9m24gk7j0ma19fd90xg0"; + name = "libkeduvocdocument-16.04.3.tar.xz"; + }; + }; + libkexiv2 = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkexiv2-16.04.3.tar.xz"; + sha256 = "00v09mz8v7z1pan8r4qvgmsi7kyr8pmim0km88jdf3mcaswk6mia"; + name = "libkexiv2-16.04.3.tar.xz"; + }; + }; + libkface = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkface-16.04.3.tar.xz"; + sha256 = "0mx706gcjb9zvi32lmlk6mp93vk6pwkb5598nm4a0qcmfdnxfdsp"; + name = "libkface-16.04.3.tar.xz"; + }; + }; + libkgeomap = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkgeomap-16.04.3.tar.xz"; + sha256 = "0m5frrk6hyjzmhq7lqzx8sila9vhbxhhnlp1rwsv3gwnyq0lpf5w"; + name = "libkgeomap-16.04.3.tar.xz"; + }; + }; + libkipi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkipi-16.04.3.tar.xz"; + sha256 = "17hhs1lwckx4zgv10f8pw2y3g2arldxz5zzqi5yzf0g9zzqgv0y6"; + name = "libkipi-16.04.3.tar.xz"; + }; + }; + libkleo = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkleo-16.04.3.tar.xz"; + sha256 = "1989kr8yp6s7apxgd7jb1g4ims3gff7kp6z3ywkriv27h1wq0ym3"; + name = "libkleo-16.04.3.tar.xz"; + }; + }; + libkmahjongg = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkmahjongg-16.04.3.tar.xz"; + sha256 = "01lp82lyf71h7570bfgfr3inw5hxm3xs6k819gpljsb6ywjxf426"; + name = "libkmahjongg-16.04.3.tar.xz"; + }; + }; + libkomparediff2 = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libkomparediff2-16.04.3.tar.xz"; + sha256 = "0al466jm33mcmqwanf1mq34dqrk3dqzxpw847rfmax0npmwnsgs4"; + name = "libkomparediff2-16.04.3.tar.xz"; + }; + }; + libksane = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libksane-16.04.3.tar.xz"; + sha256 = "13rlpvg55ci2jcwsdl3hai9xicb41lgwsgnhpmzd1c7gpyf50c47"; + name = "libksane-16.04.3.tar.xz"; + }; + }; + libksieve = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/libksieve-16.04.3.tar.xz"; + sha256 = "1s0mz0ndchhpaq9lzv9ml537w8mj42rvq97wxyl8hfsvcfkfkqyv"; + name = "libksieve-16.04.3.tar.xz"; + }; + }; + lokalize = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/lokalize-16.04.3.tar.xz"; + sha256 = "1f63yzb2c9hbiyylsa7jfccr40bxwwzmz65s8ny8w3rs481i6mi1"; + name = "lokalize-16.04.3.tar.xz"; + }; + }; + lskat = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/lskat-16.04.3.tar.xz"; + sha256 = "12xpds0nq6bbnmxvjqj3an0ji9nz698l0n0lncw37r6ijbf023my"; + name = "lskat-16.04.3.tar.xz"; + }; + }; + mailcommon = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/mailcommon-16.04.3.tar.xz"; + sha256 = "0zls1a7dvrprbjy9l7vhyd5qcpik7z8m6s27y31rdvzjic1vpxbp"; + name = "mailcommon-16.04.3.tar.xz"; + }; + }; + mailimporter = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/mailimporter-16.04.3.tar.xz"; + sha256 = "1w81mnnlfdq61q1q36qingwx1nsav160lw779xn9gdzb3i9ag7nz"; + name = "mailimporter-16.04.3.tar.xz"; + }; + }; + marble = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/marble-16.04.3.tar.xz"; + sha256 = "1jriyclkdrbi5qx9znjpkmcd9l7h2fz3265b61h49d981b7sngas"; + name = "marble-16.04.3.tar.xz"; + }; + }; + messagelib = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/messagelib-16.04.3.tar.xz"; + sha256 = "1mvjglnq8vxhrpi2nl7p78mj1idmfci5jbzv0mn15bjs4s4kld41"; + name = "messagelib-16.04.3.tar.xz"; + }; + }; + minuet = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/minuet-16.04.3.tar.xz"; + sha256 = "13sz0a5ayis3w9d5fk9hm5jlv87vvclqwpbij6wl8df2zrqh29w4"; + name = "minuet-16.04.3.tar.xz"; + }; + }; + mplayerthumbs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/mplayerthumbs-16.04.3.tar.xz"; + sha256 = "01v4cc1y0rhzyxs7mhlvn1dmwgmnn8a5jn3lii6ydi2ln5s0kg7f"; + name = "mplayerthumbs-16.04.3.tar.xz"; + }; + }; + okteta = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/okteta-16.04.3.tar.xz"; + sha256 = "0qymdfyaa3zsfjbrm4scfqg53hmfvr3c747p6wj032b9kymy0d5h"; + name = "okteta-16.04.3.tar.xz"; + }; + }; + okular = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/okular-16.04.3.tar.xz"; + sha256 = "199q00ddqv53c6psm07xcnck9v5dmc89cj810gkkrbwwyb6r1mfd"; + name = "okular-16.04.3.tar.xz"; + }; + }; + palapeli = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/palapeli-16.04.3.tar.xz"; + sha256 = "1j2vvk98bkldq36x0kndyw7455q6kiwmg0gvhh18kn24arw1y2as"; + name = "palapeli-16.04.3.tar.xz"; + }; + }; + parley = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/parley-16.04.3.tar.xz"; + sha256 = "0ii0nh1m6ggza32brx6iwvl3cqsya6z2znrlxs63sra1ihlv2m1y"; + name = "parley-16.04.3.tar.xz"; + }; + }; + picmi = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/picmi-16.04.3.tar.xz"; + sha256 = "0jsrpwgmq33510gj2flqqlhc6hwqlynsqzr883aqj9bsxc15ngil"; + name = "picmi-16.04.3.tar.xz"; + }; + }; + pimcommon = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/pimcommon-16.04.3.tar.xz"; + sha256 = "0f5jrrdih18ar3ac43bqr3i2mqciil04aag66032izrfy4fvmp3f"; + name = "pimcommon-16.04.3.tar.xz"; + }; + }; + poxml = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/poxml-16.04.3.tar.xz"; + sha256 = "0cv6kdrhmx7m2xg0cmrc4mifwayfvlc9vpiigwzs6928xy7ffyzn"; + name = "poxml-16.04.3.tar.xz"; + }; + }; + print-manager = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/print-manager-16.04.3.tar.xz"; + sha256 = "1kh4malrlfchcmph9d8h1h9ljffjg8d1pfjil6gfprc6z877lmww"; + name = "print-manager-16.04.3.tar.xz"; + }; + }; + rocs = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/rocs-16.04.3.tar.xz"; + sha256 = "1xh9hzg6kl2mcgp7yjdx2rffalis4fp6y4166s527ikjqxvwr2xw"; + name = "rocs-16.04.3.tar.xz"; + }; + }; + signon-kwallet-extension = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/signon-kwallet-extension-16.04.3.tar.xz"; + sha256 = "015ps8zpbn15ml1s3qjwbpsf7md4sxn8232x2nl68nzv06n0bsx5"; + name = "signon-kwallet-extension-16.04.3.tar.xz"; + }; + }; + spectacle = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/spectacle-16.04.3.tar.xz"; + sha256 = "0pxals99p5wj40x84g98rxy6g5y7jqg7x2dsw1pc8nci6l0x6p4w"; + name = "spectacle-16.04.3.tar.xz"; + }; + }; + step = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/step-16.04.3.tar.xz"; + sha256 = "1rybd7apzp9ky094325qcgmhgwns8vvsvz6y17injxqjcwk25bxp"; + name = "step-16.04.3.tar.xz"; + }; + }; + svgpart = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/svgpart-16.04.3.tar.xz"; + sha256 = "17xnhf9g3qcyra8h5jvvmw6gavv25lm9x57j9vl0fhfrc7s398sq"; + name = "svgpart-16.04.3.tar.xz"; + }; + }; + sweeper = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/sweeper-16.04.3.tar.xz"; + sha256 = "1xx7im8kz08cmddy1n52ndxz67yiawabm9pyacjssr3nrs82imrh"; + name = "sweeper-16.04.3.tar.xz"; + }; + }; + syndication = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/syndication-16.04.3.tar.xz"; + sha256 = "036wpmqkqdry6gaxf56f1yc9vn41lwmkgxdslyb7r7y0g5mxlyr5"; + name = "syndication-16.04.3.tar.xz"; + }; + }; + umbrello = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/umbrello-16.04.3.tar.xz"; + sha256 = "05gphjb35if4882gf79vqpdpkifzp50v7g0hpbarx01b00ijb00i"; + name = "umbrello-16.04.3.tar.xz"; + }; + }; + zeroconf-ioslave = { + version = "16.04.3"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.3/src/zeroconf-ioslave-16.04.3.tar.xz"; + sha256 = "11bj016v0lppdqpasvqrqgljdbykar8bh1q0gwwykxh1zhk932jb"; + name = "zeroconf-ioslave-16.04.3.tar.xz"; + }; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6f06b05c156..93db1f924ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16182,7 +16182,7 @@ in let frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma { inherit pkgs; }; - applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; + applications = import ../desktops/kde-5/applications { inherit pkgs; }; merged = self: { plasma = plasma self; frameworks = frameworks self; From 3eb9b19d3b03b095fbed3be224659311f9429819 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:49:56 -0500 Subject: [PATCH 176/508] kde5.frameworks: remove version from directory name Now that we keep only one version of Frameworks in Nixpkgs, it is not necessary to version the directory which stores the Nix expressions. --- pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/attica.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/baloo.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/bluez-qt.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/breeze-icons.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/default.nix | 2 +- .../extra-cmake-modules/default.nix | 0 .../extra-cmake-modules/nix-lib-path.patch | 0 .../{frameworks-5.24 => frameworks}/extra-cmake-modules/series | 0 .../extra-cmake-modules/setup-hook.sh | 0 .../{frameworks-5.24 => frameworks}/frameworkintegration.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kactivities-stats.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kactivities.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kapidox.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/karchive.nix | 0 .../kauth/cmake-install-paths.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kauth/default.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kbookmarks.nix | 0 .../kcmutils/0001-qdiriterator-follow-symlinks.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kcmutils/default.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcodecs.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kcompletion.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfig.nix | 0 .../kconfigwidgets/0001-qdiriterator-follow-symlinks.patch | 0 .../{frameworks-5.24 => frameworks}/kconfigwidgets/default.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kcoreaddons.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcrash.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdbusaddons.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdeclarative.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kded.nix | 0 .../{frameworks-5.24 => frameworks}/kdelibs4support/default.nix | 0 .../kdelibs4support/nix-kde-include-dir.patch | 0 .../{frameworks-5.24 => frameworks}/kdelibs4support/series | 0 .../kdelibs4support/setup-hook.sh | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdesignerplugin.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdesu.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdnssd.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kdoctools/default.nix | 0 .../kdoctools/kdoctools-no-find-docbook-xml.patch | 0 .../{frameworks-5.24 => frameworks}/kdoctools/setup-hook.sh | 0 .../kde-5/{frameworks-5.24 => frameworks}/kemoticons.nix | 0 .../kfilemetadata/cmake-install-paths.patch | 0 .../{frameworks-5.24 => frameworks}/kfilemetadata/default.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kglobalaccel.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kguiaddons.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/khtml.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ki18n.nix | 0 .../kiconthemes/default-theme-breeze.patch | 0 .../{frameworks-5.24 => frameworks}/kiconthemes/default.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kiconthemes/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kidletime.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kimageformats.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kinit/default.nix | 0 .../{frameworks-5.24 => frameworks}/kinit/kinit-libpath.patch | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kio/default.nix | 0 .../{frameworks-5.24 => frameworks}/kio/samba-search-path.patch | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/kitemmodels.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kitemviews.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kjobwidgets.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjs.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kjsembed.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kmediaplayer.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/knewstuff.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/knotifications.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/knotifyconfig.nix | 0 .../kpackage/allow-external-paths.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kpackage/default.nix | 0 .../kpackage/qdiriterator-follow-symlinks.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kpackage/series | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kparts.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpeople.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kplotting.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpty.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kross.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/krunner.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kservice/default.nix | 0 .../kservice/no-canonicalize-path.patch | 0 .../kservice/qdiriterator-follow-symlinks.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/kservice/series | 0 .../{frameworks-5.24 => frameworks}/kservice/setup-hook.sh | 0 .../{frameworks-5.24 => frameworks}/ktexteditor/default.nix | 0 .../ktexteditor/no-qcoreapplication.patch | 0 .../kde-5/{frameworks-5.24 => frameworks}/ktexteditor/series | 0 .../kde-5/{frameworks-5.24 => frameworks}/ktextwidgets.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kunitconversion.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwallet.nix | 0 .../desktops/kde-5/{frameworks-5.24 => frameworks}/kwayland.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kwidgetsaddons.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kwindowsystem.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kxmlgui.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/kxmlrpcclient.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/modemmanager-qt.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/networkmanager-qt.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/oxygen-icons5.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/plasma-framework.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/solid.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/sonnet.nix | 0 pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/srcs.nix | 0 .../kde-5/{frameworks-5.24 => frameworks}/threadweaver.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 103 files changed, 2 insertions(+), 2 deletions(-) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/attica.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/baloo.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/bluez-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/breeze-icons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/default.nix (99%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/nix-lib-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/extra-cmake-modules/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/frameworkintegration.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kactivities-stats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kactivities.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kapidox.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/karchive.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kauth/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kbookmarks.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcmutils/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcmutils/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcodecs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcompletion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kconfigwidgets/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcoreaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kcrash.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdbusaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdeclarative.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kded.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/nix-kde-include-dir.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdelibs4support/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdesignerplugin.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdesu.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdnssd.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdoctools/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdoctools/kdoctools-no-find-docbook-xml.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kdoctools/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kemoticons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kfilemetadata/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kglobalaccel.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kguiaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/khtml.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ki18n.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kiconthemes/default-theme-breeze.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kiconthemes/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kiconthemes/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kidletime.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kimageformats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/kinit-libpath.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kinit/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/samba-search-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kio/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kitemmodels.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kitemviews.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjobwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kjsembed.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kmediaplayer.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/knewstuff.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/knotifications.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/knotifyconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/allow-external-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpackage/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kparts.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpeople.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kplotting.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kpty.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kross.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/krunner.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/no-canonicalize-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kservice/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktexteditor/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktexteditor/no-qcoreapplication.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktexteditor/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/ktextwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kunitconversion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwallet.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwayland.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwidgetsaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kwindowsystem.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kxmlgui.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/kxmlrpcclient.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/modemmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/networkmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/oxygen-icons5.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/plasma-framework.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/solid.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/sonnet.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/srcs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.24 => frameworks}/threadweaver.nix (100%) diff --git a/pkgs/desktops/kde-5/frameworks-5.24/attica.nix b/pkgs/desktops/kde-5/frameworks/attica.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/attica.nix rename to pkgs/desktops/kde-5/frameworks/attica.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/baloo.nix b/pkgs/desktops/kde-5/frameworks/baloo.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/baloo.nix rename to pkgs/desktops/kde-5/frameworks/baloo.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks/bluez-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/bluez-qt.nix rename to pkgs/desktops/kde-5/frameworks/bluez-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks/breeze-icons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/breeze-icons.nix rename to pkgs/desktops/kde-5/frameworks/breeze-icons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/default.nix b/pkgs/desktops/kde-5/frameworks/default.nix similarity index 99% rename from pkgs/desktops/kde-5/frameworks-5.24/default.nix rename to pkgs/desktops/kde-5/frameworks/default.nix index 851c142fe2d..1a8f08bde44 100644 --- a/pkgs/desktops/kde-5/frameworks-5.24/default.nix +++ b/pkgs/desktops/kde-5/frameworks/default.nix @@ -7,7 +7,7 @@ keep the old version around for a short time after major updates.) 1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh`. 2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-frameworks.sh > pkgs/desktops/kde-5/frameworks-$VERSION/srcs.nix'. + `./maintainers/scripts/generate-kde-frameworks.sh > pkgs/desktops/kde-5/frameworks/srcs.nix'. 3. Check that the new packages build correctly. 4. Commit the changes and open a pull request. diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/default.nix rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/nix-lib-path.patch rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/series rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/extra-cmake-modules/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks/frameworkintegration.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/frameworkintegration.nix rename to pkgs/desktops/kde-5/frameworks/frameworkintegration.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks/kactivities-stats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kactivities-stats.nix rename to pkgs/desktops/kde-5/frameworks/kactivities-stats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix b/pkgs/desktops/kde-5/frameworks/kactivities.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kactivities.nix rename to pkgs/desktops/kde-5/frameworks/kactivities.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix b/pkgs/desktops/kde-5/frameworks/kapidox.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kapidox.nix rename to pkgs/desktops/kde-5/frameworks/kapidox.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/karchive.nix b/pkgs/desktops/kde-5/frameworks/karchive.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/karchive.nix rename to pkgs/desktops/kde-5/frameworks/karchive.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kauth/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix b/pkgs/desktops/kde-5/frameworks/kauth/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kauth/default.nix rename to pkgs/desktops/kde-5/frameworks/kauth/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kauth/series b/pkgs/desktops/kde-5/frameworks/kauth/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kauth/series rename to pkgs/desktops/kde-5/frameworks/kauth/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks/kbookmarks.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kbookmarks.nix rename to pkgs/desktops/kde-5/frameworks/kbookmarks.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcmutils/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks/kcmutils/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcmutils/default.nix rename to pkgs/desktops/kde-5/frameworks/kcmutils/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix b/pkgs/desktops/kde-5/frameworks/kcodecs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcodecs.nix rename to pkgs/desktops/kde-5/frameworks/kcodecs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix b/pkgs/desktops/kde-5/frameworks/kcompletion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcompletion.nix rename to pkgs/desktops/kde-5/frameworks/kcompletion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix b/pkgs/desktops/kde-5/frameworks/kconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kconfig.nix rename to pkgs/desktops/kde-5/frameworks/kconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kconfigwidgets/default.nix rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcoreaddons.nix rename to pkgs/desktops/kde-5/frameworks/kcoreaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix b/pkgs/desktops/kde-5/frameworks/kcrash.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kcrash.nix rename to pkgs/desktops/kde-5/frameworks/kcrash.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdbusaddons.nix rename to pkgs/desktops/kde-5/frameworks/kdbusaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdeclarative.nix rename to pkgs/desktops/kde-5/frameworks/kdeclarative.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kded.nix b/pkgs/desktops/kde-5/frameworks/kded.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kded.nix rename to pkgs/desktops/kde-5/frameworks/kded.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/default.nix rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/nix-kde-include-dir.patch rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks/kdelibs4support/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/series rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdelibs4support/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdesignerplugin.nix rename to pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix b/pkgs/desktops/kde-5/frameworks/kdesu.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdesu.nix rename to pkgs/desktops/kde-5/frameworks/kdesu.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix b/pkgs/desktops/kde-5/frameworks/kdnssd.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdnssd.nix rename to pkgs/desktops/kde-5/frameworks/kdnssd.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdoctools/default.nix rename to pkgs/desktops/kde-5/frameworks/kdoctools/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdoctools/kdoctools-no-find-docbook-xml.patch rename to pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kdoctools/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix b/pkgs/desktops/kde-5/frameworks/kemoticons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kemoticons.nix rename to pkgs/desktops/kde-5/frameworks/kemoticons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/default.nix rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks/kfilemetadata/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kfilemetadata/series rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kglobalaccel.nix rename to pkgs/desktops/kde-5/frameworks/kglobalaccel.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks/kguiaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kguiaddons.nix rename to pkgs/desktops/kde-5/frameworks/kguiaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/khtml.nix b/pkgs/desktops/kde-5/frameworks/khtml.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/khtml.nix rename to pkgs/desktops/kde-5/frameworks/khtml.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix b/pkgs/desktops/kde-5/frameworks/ki18n.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ki18n.nix rename to pkgs/desktops/kde-5/frameworks/ki18n.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default-theme-breeze.patch rename to pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/default.nix rename to pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series b/pkgs/desktops/kde-5/frameworks/kiconthemes/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kiconthemes/series rename to pkgs/desktops/kde-5/frameworks/kiconthemes/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix b/pkgs/desktops/kde-5/frameworks/kidletime.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kidletime.nix rename to pkgs/desktops/kde-5/frameworks/kidletime.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix b/pkgs/desktops/kde-5/frameworks/kimageformats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kimageformats.nix rename to pkgs/desktops/kde-5/frameworks/kimageformats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix b/pkgs/desktops/kde-5/frameworks/kinit/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kinit/default.nix rename to pkgs/desktops/kde-5/frameworks/kinit/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kinit/kinit-libpath.patch rename to pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kinit/series b/pkgs/desktops/kde-5/frameworks/kinit/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kinit/series rename to pkgs/desktops/kde-5/frameworks/kinit/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix b/pkgs/desktops/kde-5/frameworks/kio/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kio/default.nix rename to pkgs/desktops/kde-5/frameworks/kio/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kio/samba-search-path.patch rename to pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kio/series b/pkgs/desktops/kde-5/frameworks/kio/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kio/series rename to pkgs/desktops/kde-5/frameworks/kio/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks/kitemmodels.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kitemmodels.nix rename to pkgs/desktops/kde-5/frameworks/kitemmodels.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix b/pkgs/desktops/kde-5/frameworks/kitemviews.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kitemviews.nix rename to pkgs/desktops/kde-5/frameworks/kitemviews.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks/kjobwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kjobwidgets.nix rename to pkgs/desktops/kde-5/frameworks/kjobwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kjs.nix b/pkgs/desktops/kde-5/frameworks/kjs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kjs.nix rename to pkgs/desktops/kde-5/frameworks/kjs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix b/pkgs/desktops/kde-5/frameworks/kjsembed.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kjsembed.nix rename to pkgs/desktops/kde-5/frameworks/kjsembed.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks/kmediaplayer.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kmediaplayer.nix rename to pkgs/desktops/kde-5/frameworks/kmediaplayer.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix b/pkgs/desktops/kde-5/frameworks/knewstuff.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/knewstuff.nix rename to pkgs/desktops/kde-5/frameworks/knewstuff.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix b/pkgs/desktops/kde-5/frameworks/knotifications.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/knotifications.nix rename to pkgs/desktops/kde-5/frameworks/knotifications.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks/knotifyconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/knotifyconfig.nix rename to pkgs/desktops/kde-5/frameworks/knotifyconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/allow-external-paths.patch rename to pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks/kpackage/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/default.nix rename to pkgs/desktops/kde-5/frameworks/kpackage/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpackage/series b/pkgs/desktops/kde-5/frameworks/kpackage/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpackage/series rename to pkgs/desktops/kde-5/frameworks/kpackage/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kparts.nix b/pkgs/desktops/kde-5/frameworks/kparts.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kparts.nix rename to pkgs/desktops/kde-5/frameworks/kparts.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix b/pkgs/desktops/kde-5/frameworks/kpeople.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpeople.nix rename to pkgs/desktops/kde-5/frameworks/kpeople.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix b/pkgs/desktops/kde-5/frameworks/kplotting.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kplotting.nix rename to pkgs/desktops/kde-5/frameworks/kplotting.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kpty.nix b/pkgs/desktops/kde-5/frameworks/kpty.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kpty.nix rename to pkgs/desktops/kde-5/frameworks/kpty.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kross.nix b/pkgs/desktops/kde-5/frameworks/kross.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kross.nix rename to pkgs/desktops/kde-5/frameworks/kross.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/krunner.nix b/pkgs/desktops/kde-5/frameworks/krunner.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/krunner.nix rename to pkgs/desktops/kde-5/frameworks/krunner.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix b/pkgs/desktops/kde-5/frameworks/kservice/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/default.nix rename to pkgs/desktops/kde-5/frameworks/kservice/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/no-canonicalize-path.patch rename to pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/series b/pkgs/desktops/kde-5/frameworks/kservice/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/series rename to pkgs/desktops/kde-5/frameworks/kservice/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kservice/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/default.nix rename to pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/no-qcoreapplication.patch rename to pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series b/pkgs/desktops/kde-5/frameworks/ktexteditor/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktexteditor/series rename to pkgs/desktops/kde-5/frameworks/ktexteditor/series diff --git a/pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks/ktextwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/ktextwidgets.nix rename to pkgs/desktops/kde-5/frameworks/ktextwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks/kunitconversion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kunitconversion.nix rename to pkgs/desktops/kde-5/frameworks/kunitconversion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix b/pkgs/desktops/kde-5/frameworks/kwallet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwallet.nix rename to pkgs/desktops/kde-5/frameworks/kwallet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix b/pkgs/desktops/kde-5/frameworks/kwayland.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwayland.nix rename to pkgs/desktops/kde-5/frameworks/kwayland.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwidgetsaddons.nix rename to pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks/kwindowsystem.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kwindowsystem.nix rename to pkgs/desktops/kde-5/frameworks/kwindowsystem.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks/kxmlgui.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kxmlgui.nix rename to pkgs/desktops/kde-5/frameworks/kxmlgui.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/kxmlrpcclient.nix rename to pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/modemmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/networkmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/oxygen-icons5.nix rename to pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks/plasma-framework.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/plasma-framework.nix rename to pkgs/desktops/kde-5/frameworks/plasma-framework.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/solid.nix b/pkgs/desktops/kde-5/frameworks/solid.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/solid.nix rename to pkgs/desktops/kde-5/frameworks/solid.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix b/pkgs/desktops/kde-5/frameworks/sonnet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/sonnet.nix rename to pkgs/desktops/kde-5/frameworks/sonnet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/srcs.nix b/pkgs/desktops/kde-5/frameworks/srcs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/srcs.nix rename to pkgs/desktops/kde-5/frameworks/srcs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix b/pkgs/desktops/kde-5/frameworks/threadweaver.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.24/threadweaver.nix rename to pkgs/desktops/kde-5/frameworks/threadweaver.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 93db1f924ee..128fe8b9777 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16180,7 +16180,7 @@ in kde5 = let - frameworks = import ../desktops/kde-5/frameworks-5.24 { inherit pkgs; }; + frameworks = import ../desktops/kde-5/frameworks { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma { inherit pkgs; }; applications = import ../desktops/kde-5/applications { inherit pkgs; }; merged = self: From 5630ac1d928ec9d1d773f4dccc5b24031fc8dae3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 13 Jul 2016 13:52:25 -0500 Subject: [PATCH 177/508] generate-kde-frameworks.sh: fix helper script path - Fix a bug in the script which prevented it from finding its helper script. - Automatically redirect the output of the script to make it even easier to use. --- maintainers/scripts/generate-kde-frameworks.sh | 4 +++- pkgs/desktops/kde-5/frameworks/default.nix | 12 ++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/maintainers/scripts/generate-kde-frameworks.sh b/maintainers/scripts/generate-kde-frameworks.sh index e690662b3f2..b3b559b3571 100755 --- a/maintainers/scripts/generate-kde-frameworks.sh +++ b/maintainers/scripts/generate-kde-frameworks.sh @@ -1,3 +1,5 @@ #!/bin/sh -./fetch-kde-qt.sh http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' +./maintainers/scripts/fetch-kde-qt.sh \ + http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' \ + >pkgs/desktops/kde-5/frameworks/srcs.nix diff --git a/pkgs/desktops/kde-5/frameworks/default.nix b/pkgs/desktops/kde-5/frameworks/default.nix index 1a8f08bde44..bff2b394038 100644 --- a/pkgs/desktops/kde-5/frameworks/default.nix +++ b/pkgs/desktops/kde-5/frameworks/default.nix @@ -2,14 +2,10 @@ # Updates -Before a major version update, make a copy of this directory. (We like to -keep the old version around for a short time after major updates.) - -1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh`. -2. From the top of the Nixpkgs tree, run - `./maintainers/scripts/generate-kde-frameworks.sh > pkgs/desktops/kde-5/frameworks/srcs.nix'. -3. Check that the new packages build correctly. -4. Commit the changes and open a pull request. +1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh` and + run that script from the top of the Nixpkgs tree. +2. Check that the new packages build correctly. +3. Commit the changes and open a pull request. */ From 697f0df394c728c27643251aa1d50356ab5774f9 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Thu, 7 Jul 2016 15:46:26 +0300 Subject: [PATCH 178/508] lenmus: init at 5.4.1 --- pkgs/applications/misc/lenmus/default.nix | 50 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 51 insertions(+) create mode 100644 pkgs/applications/misc/lenmus/default.nix diff --git a/pkgs/applications/misc/lenmus/default.nix b/pkgs/applications/misc/lenmus/default.nix new file mode 100644 index 00000000000..976563d1185 --- /dev/null +++ b/pkgs/applications/misc/lenmus/default.nix @@ -0,0 +1,50 @@ +{ stdenv, pkgconfig, fetchFromGitHub +, cmake, boost +, portmidi, sqlite +, freetype, libpng, pngpp, zlib +, wxGTK30, wxsqlite3 +}: + +stdenv.mkDerivation rec { + name = "lenmus-${version}"; + version = "5.4.1"; + + src = fetchFromGitHub { + owner = "lenmus"; + repo = "lenmus"; + rev = "Release_${version}"; + sha256 = "03xar8x38x20cns2gnv34jp0hw0k16sa62kkfhka9iiiw90wfyrp"; + }; + + postPatch = '' + substituteInPlace CMakeLists.txt \ + --replace "DESTINATION \"/usr/share" "DESTINATION \"$out/share" + ''; + + cmakeFlags = [ + "-DCMAKE_INSALL_PREFIX=$out" + ]; + + enableParallelBuilding = true; + + buildInputs = [ + pkgconfig + cmake boost + portmidi sqlite + freetype libpng pngpp zlib + wxGTK30 wxsqlite3 + ]; + + meta = with stdenv.lib; { + description = "LenMus Phonascus is a program for learning music"; + longDescription = '' + LenMus Phonascus is a free open source program (GPL v3) for learning music. + It allows you to focus on specific skills and exercises, on both theory and aural training. + The different activities can be customized to meet your needs + ''; + homepage = "http://www.lenmus.org/"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ramkromberg ]; + platforms = with platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 128fe8b9777..385fe782d25 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6415,6 +6415,7 @@ in lemon = callPackage ../development/tools/parsing/lemon { }; + lenmus = callPackage ../applications/misc/lenmus { }; libtool = self.libtool_2; From c6f99a3a92f6ba21bd32f68efb186776df80a737 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Thu, 14 Jul 2016 04:15:11 +0900 Subject: [PATCH 179/508] wireguard: split module and tools (#16883) --- pkgs/os-specific/linux/wireguard/default.nix | 57 +++++++++++++------- pkgs/top-level/all-packages.nix | 4 +- 2 files changed, 42 insertions(+), 19 deletions(-) diff --git a/pkgs/os-specific/linux/wireguard/default.nix b/pkgs/os-specific/linux/wireguard/default.nix index 5328743d8b8..3e5f6ae7480 100644 --- a/pkgs/os-specific/linux/wireguard/default.nix +++ b/pkgs/os-specific/linux/wireguard/default.nix @@ -1,7 +1,8 @@ -{ stdenv, fetchgit, libmnl, kernel }: +{ stdenv, fetchgit, libmnl, kernel ? null }: -stdenv.mkDerivation rec { +let name = "wireguard-${version}"; + version = "20160708"; src = fetchgit { @@ -10,25 +11,45 @@ stdenv.mkDerivation rec { sha256 = "1ciyjpp8c3fv95y1cypk9qyqynp8cqyh2676afq2hd33110d37ni"; }; - preConfigure = '' - cd src - sed -i /depmod/d Makefile - ''; - - buildInputs = [ libmnl ]; - - KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; - - makeFlags = [ - "DESTDIR=$(out)" - "PREFIX=/" - "INSTALL_MOD_PATH=$(out)" - ]; - meta = with stdenv.lib; { homepage = https://www.wireguard.io/; description = "Fast, modern, secure VPN tunnel"; license = licenses.gpl2; platforms = platforms.linux; }; -} + + module = stdenv.mkDerivation { + inherit src meta name; + + preConfigure = '' + cd src + sed -i '/depmod/,+1d' Makefile + ''; + + KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; + INSTALL_MOD_PATH = "\${out}"; + + buildPhase = "make module"; + + }; + + tools = stdenv.mkDerivation { + inherit src meta name; + + preConfigure = "cd src"; + + buildInputs = [ libmnl ]; + + makeFlags = [ + "DESTDIR=$(out)" + "PREFIX=/" + "-C" "tools" + ]; + + buildPhase = "make tools"; + + }; + +in if kernel == null + then tools + else module diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 128fe8b9777..b6e795740f2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11132,7 +11132,7 @@ in virtualboxGuestAdditions = callPackage ../applications/virtualization/virtualbox/guest-additions { }; - wireguard = callPackage ../os-specific/linux/wireguard {}; + wireguard = callPackage ../os-specific/linux/wireguard { }; x86_energy_perf_policy = callPackage ../os-specific/linux/x86_energy_perf_policy { }; @@ -14911,6 +14911,8 @@ in wings = callPackage ../applications/graphics/wings { }; + wireguard = callPackage ../os-specific/linux/wireguard { }; + wmname = callPackage ../applications/misc/wmname { }; wmctrl = callPackage ../tools/X11/wmctrl { }; From 19a4935c5513575b8f1368f897f8721cbf2ddb4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 13 Jul 2016 22:36:54 +0200 Subject: [PATCH 180/508] gnutls: fix up yet again Noticed on: https://github.com/NixOS/nixpkgs/commit/7d94f57309a4#commitcomment-18221038 Hopefully OK finally, evaluation tested on x86_64-{linux,darwin}. Apparently I'm trying to contribute in situations I'd better be relaxing already. --- pkgs/development/libraries/gnutls/generic.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gnutls/generic.nix b/pkgs/development/libraries/gnutls/generic.nix index 7cd8267192b..9866dd9fd3a 100644 --- a/pkgs/development/libraries/gnutls/generic.nix +++ b/pkgs/development/libraries/gnutls/generic.nix @@ -39,7 +39,8 @@ stdenv.mkDerivation { # for the actual fix. enableParallelBuilding = !guileBindings; - buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen nettools ] + buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen ] + ++ lib.optional doCheck nettools ++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv ++ lib.optional (tpmSupport && stdenv.isLinux) trousers ++ [ unbound ] From 4b3f87ff81de2ee5a39c71bf090a92349a4deba7 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Thu, 14 Jul 2016 08:04:41 +0800 Subject: [PATCH 181/508] emem: 0.2.15 -> 0.2.16 --- pkgs/applications/misc/emem/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/emem/default.nix b/pkgs/applications/misc/emem/default.nix index b2855e5a287..27736713024 100644 --- a/pkgs/applications/misc/emem/default.nix +++ b/pkgs/applications/misc/emem/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "emem"; - version = "0.2.15"; + version = "0.2.16"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar"; - sha256 = "0jj990syd9biq2awnjydi4x3p4hivigc522ds59hdf5wg4y2gg6c"; + sha256 = "1j6i40mcfwcx85zv0pxpwrqj0zy9s5qd7j63zdqf0lckkjvyrih9"; }; buildInputs = [ ]; From 48cf70c03e45bea5638d8b3959dfe6a009981b6d Mon Sep 17 00:00:00 2001 From: Karn Kallio Date: Wed, 13 Jul 2016 18:49:48 -0400 Subject: [PATCH 182/508] kde5.ark: remove obsolete patch --- .../applications/ark/0001-fix-start-from-plasma.patch | 10 ---------- pkgs/desktops/kde-5/applications/ark/default.nix | 3 --- 2 files changed, 13 deletions(-) delete mode 100644 pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch diff --git a/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch b/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch deleted file mode 100644 index 7590e49c498..00000000000 --- a/pkgs/desktops/kde-5/applications/ark/0001-fix-start-from-plasma.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/app/org.kde.ark.desktop.cmake -+++ b/app/org.kde.ark.desktop.cmake -@@ -154,7 +154,6 @@ - Terminal=false - X-DBUS-StartupType=Multi - X-DBUS-ServiceName=org.kde.ark --X-KDE-HasTempFileOption=true - Categories=Qt;KDE;Utility;Archiving;Compression;X-KDE-Utilities-File; - InitialPreference=3 - Comment=Work with file archives diff --git a/pkgs/desktops/kde-5/applications/ark/default.nix b/pkgs/desktops/kde-5/applications/ark/default.nix index 4e68488b323..331c8c647ca 100644 --- a/pkgs/desktops/kde-5/applications/ark/default.nix +++ b/pkgs/desktops/kde-5/applications/ark/default.nix @@ -35,9 +35,6 @@ kdeApp { khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice kpty kwidgetsaddons libarchive ]; - patches = [ - ./0001-fix-start-from-plasma.patch - ]; postInstall = '' wrapQtProgram "$out/bin/ark" \ --prefix PATH : "${PATH}" From 37fc141da355bd52bec27578d7ce6fd330e4994a Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 13 Jul 2016 17:46:34 -0700 Subject: [PATCH 183/508] glfw: 3.1.2 -> 3.2 --- pkgs/development/libraries/glfw/3.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/glfw/3.x.nix b/pkgs/development/libraries/glfw/3.x.nix index 681137cd590..3b015532ca8 100644 --- a/pkgs/development/libraries/glfw/3.x.nix +++ b/pkgs/development/libraries/glfw/3.x.nix @@ -3,14 +3,14 @@ }: stdenv.mkDerivation rec { - version = "3.1.2"; + version = "3.2"; name = "glfw-${version}"; src = fetchFromGitHub { owner = "glfw"; repo = "GLFW"; rev = "${version}"; - sha256 = "1aj1dfyyd0170gpz32j2xlqbvbsxwbg028xiqai3mqc44xfp10kw"; + sha256 = "0knqf40jij2z1mia091xqyky5r11r4qyh7b8172blrmgm9q23sl9"; }; enableParallelBuilding = true; From ea15a54ef2a7e9391708f3d5e76d1378f2341bc3 Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 7 Jul 2016 15:41:20 +0200 Subject: [PATCH 184/508] habitat: add an option to run in an FHS chroot `hab studio enter` as well as other `hab` commands that make use of the studio assume an FHS system when creating a chroot. See https://github.com/habitat-sh/habitat/issues/994 --- .../networking/cluster/habitat/chroot-env.nix | 9 +++++++++ pkgs/applications/networking/cluster/habitat/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 1 + 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 pkgs/applications/networking/cluster/habitat/chroot-env.nix diff --git a/pkgs/applications/networking/cluster/habitat/chroot-env.nix b/pkgs/applications/networking/cluster/habitat/chroot-env.nix new file mode 100644 index 00000000000..388477f96e8 --- /dev/null +++ b/pkgs/applications/networking/cluster/habitat/chroot-env.nix @@ -0,0 +1,9 @@ +# TODO: Drop once https://github.com/habitat-sh/habitat/issues/994 +# is resolved. +{ habitat, libsodium, libarchive, openssl, buildFHSUserEnv }: + +buildFHSUserEnv { + name = "hab"; + targetPkgs = pkgs: [ habitat libsodium libarchive openssl ]; + runScript = "bash"; +} diff --git a/pkgs/applications/networking/cluster/habitat/default.nix b/pkgs/applications/networking/cluster/habitat/default.nix index d806329e4ee..da82dac0019 100644 --- a/pkgs/applications/networking/cluster/habitat/default.nix +++ b/pkgs/applications/networking/cluster/habitat/default.nix @@ -5,18 +5,18 @@ with rustPlatform; buildRustPackage rec { name = "habitat-${version}"; - version = "0.7.0"; + version = "0.8.0"; src = fetchFromGitHub { owner = "habitat-sh"; repo = "habitat"; rev = version; - sha256 = "0pacxcc86w4zdakyd6qbz2rqx30rkv1j5aca1fqa1hf1jqg44vg0"; + sha256 = "1h9wv2v4hcv79jkkjf8j96lzxni9d51755zfflfr5s3ayaip7rzj"; }; sourceRoot = "habitat-${version}-src/components/hab"; - depsSha256 = "0bm9f6w7ircji4d1c1fgysna93w0lf8ws7gfkqq80zx92x3lz5z5"; + depsSha256 = "1612jaw3zdrgrb56r755bb18l8szdmf1wi7p9lpv3d2gklqcb7l1"; buildInputs = [ libsodium libarchive openssl ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6e795740f2..405ffabef40 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1940,6 +1940,7 @@ in haveged = callPackage ../tools/security/haveged { }; habitat = callPackage ../applications/networking/cluster/habitat { }; + habitat-sh = callPackage ../applications/networking/cluster/habitat/chroot-env.nix { }; hardlink = callPackage ../tools/system/hardlink { }; From 3b27257e9a199679f0ffa164454b21822b4959ef Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 14 Jul 2016 05:40:09 +0200 Subject: [PATCH 185/508] habitat: fix naming collision --- pkgs/applications/networking/cluster/habitat/chroot-env.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/habitat/chroot-env.nix b/pkgs/applications/networking/cluster/habitat/chroot-env.nix index 388477f96e8..7d6b3749904 100644 --- a/pkgs/applications/networking/cluster/habitat/chroot-env.nix +++ b/pkgs/applications/networking/cluster/habitat/chroot-env.nix @@ -3,7 +3,7 @@ { habitat, libsodium, libarchive, openssl, buildFHSUserEnv }: buildFHSUserEnv { - name = "hab"; + name = "habitat-sh"; targetPkgs = pkgs: [ habitat libsodium libarchive openssl ]; runScript = "bash"; } From e9ddfe3d4cf4d62e3499a8ff0818727e65ac05a2 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Thu, 14 Jul 2016 08:59:33 +0300 Subject: [PATCH 186/508] ansible: 1.9.4 -> 1.9.6 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 08014b2de30..8d6f465b452 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -813,13 +813,13 @@ in modules // { }; ansible = buildPythonPackage rec { - version = "1.9.4"; + version = "1.9.6"; name = "ansible-${version}"; disabled = isPy3k; src = pkgs.fetchurl { url = "https://releases.ansible.com/ansible/${name}.tar.gz"; - sha256 = "1qvgzb66nlyc2ncmgmqhzdk0x0p2px09967p1yypf5czwjn2yb4p"; + sha256 = "0pgfh5z4w44sjgd77q6k769a5ipigjlm28zbpf2jhvz7n60kfxsh"; }; prePatch = '' From ce04ed0a9519f071ba734608300c5fafca01ac3a Mon Sep 17 00:00:00 2001 From: rardiol Date: Thu, 14 Jul 2016 04:19:04 -0300 Subject: [PATCH 187/508] spring: 101.0 -> 102.0 (#16934) --- pkgs/games/spring/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index e6631c21654..3b7c307330d 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { name = "spring-${version}"; - version = "101.0"; + version = "102.0"; src = fetchurl { url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma"; - sha256 = "0nr65zhw92k36zgwqgi31vcp129vk7r3v7xzd6l9w7mp1ljvypgi"; + sha256 = "0gjlpzwl3bdv1ickm8r3xlrbc6dm7m8i968hw3p0an49k6bqa77i"; }; # The cmake included module correcly finds nix's glew, however From aab727fd77b70c714f642952396b894255d6d458 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 10:19:20 +0200 Subject: [PATCH 188/508] tokei: init at 3.0.0 --- pkgs/development/tools/misc/tokei/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/tools/misc/tokei/default.nix diff --git a/pkgs/development/tools/misc/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix new file mode 100644 index 00000000000..206c6b5f593 --- /dev/null +++ b/pkgs/development/tools/misc/tokei/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, rustPlatform }: + +with rustPlatform; + +buildRustPackage rec { + name = "tokei-${version}"; + version = "3.0.0"; + src = fetchurl { + url = "https://github.com/Aaronepower/tokei/archive/${version}.tar.gz"; + sha256 = "0xymz52gpasihzhxglzx4wh0312zkraxy4yrpxz694zalf2s5vj5"; + }; + + depsSha256 = "1syx8qzjn357dk2bf4ndmgc4zvrglmw88qiw117h6s511qyz8z0z"; + + installPhase = '' + mkdir -p $out/bin + cp -p target/release/tokei $out/bin/ + ''; + + meta = with stdenv.lib; { + description = "Count code, quickly"; + homepage = https://github.com/Aaronepower/tokei; + license = licenses.mit; + maintainers = with maintainers; [ gebner ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 405ffabef40..b17b243f3ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3666,6 +3666,8 @@ in toilet = callPackage ../tools/misc/toilet { }; + tokei = callPackage ../development/tools/misc/tokei { }; + tor = callPackage ../tools/security/tor { }; tor-arm = callPackage ../tools/security/tor/tor-arm.nix { }; From 6c7d1795099e75f3859083dc711c5068a8acb9ea Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 10:21:46 +0200 Subject: [PATCH 189/508] tokei: add meta.platforms --- pkgs/development/tools/misc/tokei/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/misc/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix index 206c6b5f593..212ebd9c967 100644 --- a/pkgs/development/tools/misc/tokei/default.nix +++ b/pkgs/development/tools/misc/tokei/default.nix @@ -22,5 +22,6 @@ buildRustPackage rec { homepage = https://github.com/Aaronepower/tokei; license = licenses.mit; maintainers = with maintainers; [ gebner ]; + platforms = platforms.all; }; } From 8e4248a95d69957f992e2125f726705308a9159f Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Thu, 14 Jul 2016 10:52:13 +0200 Subject: [PATCH 190/508] galen: 2.2.4 -> 2.3.0 --- pkgs/development/tools/galen/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/galen/default.nix b/pkgs/development/tools/galen/default.nix index 4b02ece0962..d553a574552 100644 --- a/pkgs/development/tools/galen/default.nix +++ b/pkgs/development/tools/galen/default.nix @@ -1,15 +1,15 @@ -{ stdenv, fetchurl, jdk, unzip }: +{ stdenv, fetchurl, jre8, unzip }: stdenv.mkDerivation rec { pname = "galen"; - version = "2.2.4"; + version = "2.3.0"; name = "${pname}-${version}"; - inherit jdk; + inherit jre8; src = fetchurl { url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip"; - sha256 = "0qx6pza6aw880ph76wbypcgy983pln8k4ad2indagb5qhiz4zw1d"; + sha256 = "10z7vh3jiq7kbzzp3j0354swkr4xxz9qimi5c5bddbiy671k6cra"; }; buildInputs = [ unzip ]; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { ''; installPhase = '' - cat galen | sed -e "s,java,$jdk/bin/java," > $out/bin/galen + cat galen | sed -e "s,java,$jre8/bin/java," > $out/bin/galen chmod +x $out/bin/galen cp galen.jar $out/bin ''; From 6046702e5e6ffee5c35fd93d74eb4bee261d5313 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Thu, 14 Jul 2016 12:42:03 +0300 Subject: [PATCH 191/508] flashplayer: 11.2.202.626 -> 11.2.202.632 --- .../browsers/mozilla-plugins/flashplayer-11/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index f9c978b2cd8..5ed1636aa65 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -70,11 +70,11 @@ let in stdenv.mkDerivation rec { name = "flashplayer-${version}"; - version = "11.2.202.626"; + version = "11.2.202.632"; src = fetchurl { url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip"; - sha256 = "1c7ffr1kjmdq5rcx3xzgkd4wg1c8b3zkb1ysmnjiicfm423xr9h7"; + sha256 = "0nf2d7jn8g6bp9vilkwwkkh6pm05fg3h73njsn4yvx3285k73lpn"; }; nativeBuildInputs = [ unzip ]; From d78a2b1ce9df168afd44f16ea07667d8e1e0732f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 14 Jul 2016 11:44:05 +0200 Subject: [PATCH 192/508] pythonPackages.sqlparse: fix tests --- pkgs/top-level/python-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8d6f465b452..230d857d2c3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22179,6 +22179,14 @@ in modules // { sha256 = "1s2fvaxgh9kqzrd6iwy5h7i61ckn05plx9np13zby93z3hdbx5nq"; }; + buildInputs = with self; [ pytest ]; + checkPhase = '' + py.test + ''; + + # Package supports 3.x, but tests are clearly 2.x only. + doCheck = !isPy3k; + meta = { description = "Non-validating SQL parser for Python"; longDescription = '' From c632980a0231a2514e7acec3e8a15feb5a5373fa Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 14 Jul 2016 11:44:36 +0200 Subject: [PATCH 193/508] pythonPackages.pgspecial: fix tests --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 230d857d2c3..377a2d7ed30 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16683,6 +16683,12 @@ in modules // { url = "mirror://pypi/p/pgspecial/${name}.tar.gz"; }; + buildInputs = with self; [ pytest psycopg2 ]; + + checkPhase = '' + py.test tests + ''; + propagatedBuildInputs = with self; [ click sqlparse ]; meta = { From f745e02510bb05aa199783155dc278949d65aa9b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 14 Jul 2016 11:44:55 +0200 Subject: [PATCH 194/508] pythonPackages.pgcli: fix tests, build on 3.5 --- pkgs/top-level/python-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 377a2d7ed30..40f9433b7b0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16644,7 +16644,6 @@ in modules // { pgcli = buildPythonPackage rec { name = "pgcli-${version}"; version = "1.1.0"; - disabled = isPy35; src = pkgs.fetchFromGitHub { sha256 = "155avdckg93w3rmx0mz17wi6vcaba3lcppv9qwa6xlxfds9yzvlq"; @@ -16653,6 +16652,11 @@ in modules // { owner = "dbcli"; }; + buildInputs = with self; [ pytest mock ]; + checkPhase = '' + py.test tests -k 'not test_missing_rc_dir and not test_quoted_db_uri and not test_port_db_uri' + ''; + propagatedBuildInputs = with self; [ click configobj humanize prompt_toolkit psycopg2 pygments sqlparse pgspecial setproctitle @@ -16660,6 +16664,7 @@ in modules // { postPatch = '' substituteInPlace setup.py --replace "==" ">=" + rm tests/test_rowlimit.py ''; meta = { From de80d0544caecb797df40fa108710c801f38bf27 Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 14 Jul 2016 11:52:08 +0200 Subject: [PATCH 195/508] ecryptfs: add test to release-combined.nix --- nixos/release-combined.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index f275291c716..9cc1ee762a8 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -68,6 +68,7 @@ in rec { (all nixos.tests.boot.uefiCdrom) (all nixos.tests.boot.uefiUsb) (all nixos.tests.boot-stage1) + (all nixos.tests.ecryptfs) (all nixos.tests.ipv6) (all nixos.tests.i3wm) (all nixos.tests.kde4) From 457a42881347871570194e6ec0974717abc0666b Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 11:46:57 +0200 Subject: [PATCH 196/508] rustracer: add meta.platforms --- pkgs/development/tools/rust/racer/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix index 0f4477c9b3f..3cb7a3e2346 100644 --- a/pkgs/development/tools/rust/racer/default.nix +++ b/pkgs/development/tools/rust/racer/default.nix @@ -31,5 +31,6 @@ buildRustPackage rec { homepage = https://github.com/phildawes/racer; license = stdenv.lib.licenses.mit; maintainers = with maintainers; [ jagajaga globin ]; + platforms = platforms.all; }; } From 40d5284cc27672b9879df4406f9938268d9cdcb6 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 11:47:18 +0200 Subject: [PATCH 197/508] rustfmt: add meta.platforms --- pkgs/development/tools/rust/rustfmt/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 0fad7290df3..5e661a8afb8 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -20,5 +20,6 @@ buildRustPackage rec { homepage = https://github.com/nrc/rustfmt; license = with licenses; [ mit asl20 ]; maintainers = [ maintainers.globin ]; + platforms = platforms.all; }; } From 53a8d9350e25d38b78b8e8ede173bdfd2bfb4d8e Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 14 Jul 2016 12:09:12 +0200 Subject: [PATCH 198/508] procmail: clean up and add meta section --- pkgs/applications/misc/procmail/default.nix | 28 ++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/misc/procmail/default.nix b/pkgs/applications/misc/procmail/default.nix index f4980cb2c6b..0bdc771e2bd 100644 --- a/pkgs/applications/misc/procmail/default.nix +++ b/pkgs/applications/misc/procmail/default.nix @@ -3,26 +3,26 @@ stdenv.mkDerivation { name = "procmail-3.22"; - buildInputs = [ stdenv.cc.libc ]; + patches = [ ./CVE-2014-3618.patch ]; # getline is defined differently in glibc now. So rename it. - installPhase = " - mkdir -p \$out/bin - sed -e \"s%^RM.*$%RM=`type -f rm | awk '{print $3;}'` -f%\" -i Makefile - sed -e \"s%^BASENAME.*%\BASENAME=$out%\" -i Makefile - sed -e \"s%^LIBS=.*%LIBS=-lm%\" -i Makefile - sed -e \"s%getline%thisgetline%g\" -i src/*.c src/*.h - make DESTDIR=\$out install - "; - - phases = "unpackPhase patchPhase installPhase"; - - patches = [ ./CVE-2014-3618.patch ]; + postPatch = '' + sed -e "s%^RM.*$%#%" -i Makefile + sed -e "s%^BASENAME.*%\BASENAME=$out%" -i Makefile + sed -e "s%^LIBS=.*%LIBS=-lm%" -i Makefile + sed -e "s%getline%thisgetline%g" -i src/*.c src/*.h + ''; src = fetchurl { url = ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/procmail-3.22.tar.gz; sha256 = "05z1c803n5cppkcq99vkyd5myff904lf9sdgynfqngfk9nrpaz08"; }; - meta.homepage = "http://www.procmail.org/"; + meta = with stdenv.lib; { + description = "Mail processing and filtering utility"; + homepage = http://www.procmail.org/; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ gebner ]; + }; } From efe4d48e8e6282ae8dde67fed5977b30e491399a Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Thu, 14 Jul 2016 03:18:07 -0700 Subject: [PATCH 199/508] rkt: 1.9.1 -> 1.10.1 (#16895) --- pkgs/applications/virtualization/rkt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 2fee98ac499..17c7f7e2928 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -11,7 +11,7 @@ let stage1Flavours = [ "coreos" "fly" ]; in stdenv.mkDerivation rec { - version = "1.9.1"; + version = "1.10.1"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -19,7 +19,7 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "094pqxcn91g1s3f0ly3z2lb11s4q3dn99h8cr7lqalkd0gj9l4xg"; + sha256 = "0hy6b0lyjsh0m1ca7hga31nybrbi9wpf8c59wbzvm1wlnqzsjkqi"; }; stage1BaseImage = fetchurl { @@ -50,7 +50,7 @@ in stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp -Rv $BUILDDIR/bin/* $out/bin + cp -Rv $BUILDDIR/target/bin/* $out/bin wrapProgram $out/bin/rkt \ --prefix LD_LIBRARY_PATH : ${systemd}/lib \ --prefix PATH : ${iptables}/bin From 2f00cea5df533ecde2b403f746161525bf0c3387 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 15:52:00 +0530 Subject: [PATCH 200/508] zscroll: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/applications/misc/zscroll/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/zscroll/default.nix b/pkgs/applications/misc/zscroll/default.nix index 4d9197c8fd4..92d173807f9 100644 --- a/pkgs/applications/misc/zscroll/default.nix +++ b/pkgs/applications/misc/zscroll/default.nix @@ -16,7 +16,7 @@ python3Packages.buildPythonApplication { doCheck = false; - propogatedBuildInputs = [ python3 ]; + propagatedBuildInputs = [ python3 ]; meta = with stdenv.lib; { description = "A text scroller for use with panels and shells"; From 79312dc614f111cb96de93ca20099eb871132ae9 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 15:53:09 +0530 Subject: [PATCH 201/508] xflux-gui: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/tools/misc/xflux/gui.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/xflux/gui.nix b/pkgs/tools/misc/xflux/gui.nix index b78eb910f93..0cf30942e73 100644 --- a/pkgs/tools/misc/xflux/gui.nix +++ b/pkgs/tools/misc/xflux/gui.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { # remove messing with shipped binary patches = [ ./setup.patch ]; - # not sure if these need to be propogated or not? + # not sure if these need to be propagated or not? propagatedBuildInputs = [ pexpect pyGtkGlade From ac19f09122a56ebd5539bce88007ea09c2d7ae9f Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 17:23:06 +0530 Subject: [PATCH 202/508] wicd: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/tools/networking/wicd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/wicd/default.nix b/pkgs/tools/networking/wicd/default.nix index 9294d4c88ae..9315a53cb3e 100644 --- a/pkgs/tools/networking/wicd/default.nix +++ b/pkgs/tools/networking/wicd/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ./fix-curses.patch ]; - # Should I be using pygtk's propogated build inputs? + # Should I be using pygtk's propagated build inputs? # !!! Should use makeWrapper. postPatch = '' # We don't have "python2". From bbd0a47950a2503eb448fc82b24f1d83325118c0 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Thu, 14 Jul 2016 17:26:19 +0530 Subject: [PATCH 203/508] vim-plugin:YouCompleteMe: propogatedBuildInputs -> propagatedBuildInputs --- pkgs/misc/vim-plugins/default.nix | 2 +- pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index a34690853fc..3134aa0eeba 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1126,7 +1126,7 @@ rec { llvmPackages.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; - propogatedBuildInputs = [ + propagatedBuildInputs = [ rustracerd ]; diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme index a27b1f053a2..eb7f6bedf49 100644 --- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme +++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme @@ -4,7 +4,7 @@ llvmPackages.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; - propogatedBuildInputs = [ + propagatedBuildInputs = [ rustracerd ]; From 4a9f77811896e3fada54d27835c0fd6df7ec566e Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 14 Jul 2016 15:10:12 +0300 Subject: [PATCH 204/508] kde4: Use ffmpeg_2 to fix ffmpegthumbs build --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cfb8840931b..4842279dc50 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15887,6 +15887,7 @@ in pythonBindings = true; }; ruby = ruby_2_2; # see https://github.com/NixOS/nixpkgs/pull/12610#issuecomment-188666473 + ffmpeg = ffmpeg_2; # ffmpegthumb doesn't build otherwise } ../desktops/kde-4.14; From 13160d9c10a0e1f77bf03e59fd9ee29b946cf9a5 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 14 Jul 2016 15:11:17 +0300 Subject: [PATCH 205/508] buildInLinuxVM: Workaround bug #16742 This is blocking the channel update: #16949 --- pkgs/build-support/vm/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 82cb72cb67e..fa7107bd738 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -319,6 +319,7 @@ rec { origArgs = args; origBuilder = builder; QEMU_OPTS = "${QEMU_OPTS} -m ${toString memSize}"; + passAsFile = []; # HACK fix - see https://github.com/NixOS/nixpkgs/issues/16742 }); From ab9515092b291fb92cf83a21c2a344a096ae8474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 14 Jul 2016 15:30:30 +0200 Subject: [PATCH 206/508] symlinkJoin: truly pass the defaulted parameters The catch is that in nix the @-pattern binds the set that was *explicitly* passed to the function, i.e. default values are *not* taken into account. --- pkgs/build-support/trivial-builders.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index 18e49105ae7..8775286b117 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -49,15 +49,17 @@ rec { # Create a forest of symlinks to the files in `paths'. symlinkJoin = - args@{ name + args_@{ name , paths , preferLocalBuild ? true , allowSubstitutes ? false , postBuild ? "" , ... }: - runCommand name - (removeAttrs args [ "name" "postBuild" ]) + let + args = removeAttrs args_ [ "name" "postBuild" ] + // { inherit preferLocalBuild allowSubstitutes; }; # pass the defaults + in runCommand name args '' mkdir -p $out for i in $paths; do From c0656fe0c124326ea6f014d8b49fb9b0cebdffe3 Mon Sep 17 00:00:00 2001 From: Konstantin Heil Date: Thu, 14 Jul 2016 14:18:57 +0200 Subject: [PATCH 207/508] LiE: include forgotten file INFO.a by installation --- pkgs/applications/science/math/LiE/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/LiE/default.nix b/pkgs/applications/science/math/LiE/default.nix index 233f44b44cc..b448b511421 100644 --- a/pkgs/applications/science/math/LiE/default.nix +++ b/pkgs/applications/science/math/LiE/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { cp -v Lie.exe $out cp -v lie $out/bin - cp -v LEARN LEARN.ind $out - cp -v INFO.ind INFO.[0-4] $out + cp -v LEARN* $out + cp -v INFO* $out ''; } From 52ed165c916500fd73d0d52395d6e71cc90d9e03 Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Thu, 14 Jul 2016 15:32:54 +0300 Subject: [PATCH 208/508] viber: 4.2.2.6 -> 6.0.1.5 - Use Qt provided by viber itself -> no longer broken - Remove notes about obsolete bugs --- .../instant-messengers/viber/default.nix | 99 +++++++++++++------ 1 file changed, 68 insertions(+), 31 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/viber/default.nix b/pkgs/applications/networking/instant-messengers/viber/default.nix index 8e07bbf975b..f16ee8bd5cc 100644 --- a/pkgs/applications/networking/instant-messengers/viber/default.nix +++ b/pkgs/applications/networking/instant-messengers/viber/default.nix @@ -1,20 +1,20 @@ -{ fetchurl, stdenv, dpkg, makeWrapper, xorg, qt5Full, gstreamer, zlib, sqlite, libxslt }: +{fetchurl, stdenv, dpkg, makeWrapper, + alsaLib, cups, curl, dbus, expat, fontconfig, freetype, glib, gst_all_1, harfbuzz, libcap, + libpulseaudio, mesa, nspr, nss, libudev, wayland, xorg, zlib, ... +}: assert stdenv.system == "x86_64-linux"; -# BUG: viber tries to access contacts list and that causes segfault -# FIX: you have to do `chmod 444 ~/.ViberPC//Avatars` -# BUG: viber tries to it's downloads and that causes segfault -# FIX: you have to do `chmod 444 ~/Documents/ViberDownloads` -# TODO: fix bugs +# BUG: Viber requires running tray application, segfaulting if it's missing +# FIX: Start something like `stalonetray` if you DE doesn't provide tray stdenv.mkDerivation rec { name = "viber-${version}"; - version = "4.2.2.6"; + version = "6.0.1.5"; src = fetchurl { url = "http://download.cdn.viber.com/cdn/desktop/Linux/viber.deb"; - sha256 = "1fv269z9sni21lc1ka25jnxr9w8zfg1gfn2c7fnd8cdd5fm57d26"; + sha256 = "026vp2pv66b2dlwi5w5wk4yjnnmnsqapdww98p7xdnz8n0hnsbbi"; }; buildInputs = [ dpkg makeWrapper ]; @@ -22,36 +22,74 @@ stdenv.mkDerivation rec { unpackPhase = "true"; libPath = stdenv.lib.makeLibraryPath [ - qt5Full - xorg.libX11 - gstreamer - zlib - sqlite - xorg.libXrender - libxslt + alsaLib + cups + curl + dbus + expat + fontconfig + freetype + glib + gst_all_1.gst-plugins-base + gst_all_1.gstreamer + harfbuzz + libcap + libpulseaudio + mesa + nspr + nss stdenv.cc.cc - xorg.libXScrnSaver + libudev + wayland + zlib + + xorg.libICE + xorg.libSM + xorg.libX11 + xorg.libxcb + xorg.libXcomposite + xorg.libXcursor + xorg.libXdamage xorg.libXext - ]; + xorg.libXfixes + xorg.libXi + xorg.libXrandr + xorg.libXrender + xorg.libXScrnSaver + xorg.libXtst + xorg.xcbutilimage + xorg.xcbutilkeysyms + xorg.xcbutilrenderutil + xorg.xcbutilwm + ] + ; installPhase = '' dpkg-deb -x $src $out mkdir -p $out/bin - mv $out/opt/viber/{Sound,icons,libqfacebook.so} $out - mv $out/opt/viber/Viber $out/viber - rm -rf $out/opt - ln -s $out/viber $out/bin/viber - mkdir -p usr/lib/mozilla/plugins - patchelf \ - --set-rpath $libPath \ - $out/libqfacebook.so - patchelf \ - --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath $libPath:$out \ - $out/viber + # Soothe nix-build "suspicions" + chmod -R g-w $out - wrapProgram $out/viber --prefix LD_LIBRARY_PATH : $libPath:$out + for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* \) ); do + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true + patchelf --set-rpath $libPath:$out/opt/viber/lib $file || true + done + + # qt.conf is not working, so override everything using environment variables + wrapProgram $out/opt/viber/Viber \ + --set QT_PLUGIN_PATH "$out/opt/viber/plugins" \ + --set QT_XKB_CONFIG_ROOT "${xorg.xkeyboardconfig}/share/X11/xkb" \ + --set QTCOMPOSE "${xorg.libX11}/share/X11/locale" + ln -s $out/opt/viber/Viber $out/bin/viber + + mv $out/usr/share $out/share + rm -rf $out/usr + + # Fix the desktop link + substituteInPlace $out/share/applications/viber.desktop \ + --replace /opt/viber/Viber $out/opt/viber/Viber \ + --replace /usr/share/ $out/share/ ''; dontStrip = true; @@ -63,7 +101,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.unfree; platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ jagajaga ]; - broken = true; }; } From c3ffae477767d22fd0e714e4071fb25e4f3ec8d7 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 14 Jul 2016 12:56:45 +0000 Subject: [PATCH 209/508] nodejs: implement a darwin-specific fix that properly refers to tr1/type_traits --- pkgs/development/web/nodejs/nodejs.nix | 5 ++--- pkgs/development/web/nodejs/v6.nix | 4 ++++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix index a04a0ed971b..cae7648e6e9 100644 --- a/pkgs/development/web/nodejs/nodejs.nix +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -2,6 +2,7 @@ , pkgconfig, runCommand, which, libtool , version , src +, preBuild ? "" , ... }: @@ -25,9 +26,7 @@ let in stdenv.mkDerivation { - inherit version; - - inherit src; + inherit version src preBuild; name = "nodejs-${version}"; diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix index 43a39451f9b..bde9065d085 100644 --- a/pkgs/development/web/nodejs/v6.nix +++ b/pkgs/development/web/nodejs/v6.nix @@ -9,4 +9,8 @@ import ./nodejs.nix (args // rec { url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz"; sha256 = "2dfeeddba750b52a528b38a1c31e35c1fb40b19cf28fbf430c3c8c7a6517005a"; }; + preBuild = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") '' + sed -i -e "s|tr1/type_traits|type_traits|g" \ + -e "s|std::tr1|std|" src/util.h + ''; }) From dc6306a69d510bf0818c2b4572ffc0cd7ba9a30d Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 14 Jul 2016 14:02:54 +0100 Subject: [PATCH 210/508] zerotierone: 1.1.6 -> 1.1.12 --- pkgs/tools/networking/zerotierone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/zerotierone/default.nix b/pkgs/tools/networking/zerotierone/default.nix index 29d131b509b..3dc68ca149a 100644 --- a/pkgs/tools/networking/zerotierone/default.nix +++ b/pkgs/tools/networking/zerotierone/default.nix @@ -3,12 +3,12 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "1.1.6"; + version = "1.1.12"; name = "zerotierone"; src = fetchurl { url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz"; - sha256 = "1bl8dppaqydsd1qf9pk3bp16amkwjxyqh1gvm62ys2a0m4c529ks"; + sha256 = "0mji6bmxjvxy2mhvzfz4vpdz62n1wv6a02rapzbiad8zr2c869cm"; }; preConfigure = '' From 9aee153f2b912b505aa273a6632a9cec0fc26f41 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Thu, 14 Jul 2016 11:10:56 +0800 Subject: [PATCH 211/508] zerofree: 1.0.3 -> 1.0.4 --- pkgs/tools/filesystems/zerofree/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/filesystems/zerofree/default.nix b/pkgs/tools/filesystems/zerofree/default.nix index 4e027a53ffc..994777680db 100644 --- a/pkgs/tools/filesystems/zerofree/default.nix +++ b/pkgs/tools/filesystems/zerofree/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, e2fsprogs }: stdenv.mkDerivation rec { - name = "zerofree-1.0.3"; + name = "zerofree-${version}"; + version = "1.0.4"; src = fetchurl { - url = "http://intgat.tigress.co.uk/rmy/uml/zerofree-1.0.3.tgz"; - sha256 = "3acfda860be0f0ddcb5c982ff3b4475b1ee8cc35a90ae2a910e93261dbe0ccf6"; + url = "http://frippery.org/uml/${name}.tgz"; + sha256 = "0f38mvn3wfacapayl54q04qlz4in417pfm6gapgm7dhyjs9y5yd7"; }; buildInputs = [ e2fsprogs ]; @@ -16,7 +17,7 @@ stdenv.mkDerivation rec { ''; meta = { - homepage = http://intgat.tigress.co.uk/rmy/uml/index.html; + homepage = http://frippery.org/uml/index.html; description = "Zero free blocks from ext2, ext3 and ext4 file-systems"; platforms = stdenv.lib.platforms.linux; maintainers = [ stdenv.lib.maintainers.theuni ]; From 2c169f83e7d43c92fe96b362b1ef45e390a0dc4d Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Thu, 14 Jul 2016 23:14:15 +0800 Subject: [PATCH 212/508] urweb: 20151220 -> 20160621 --- pkgs/development/compilers/urweb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix index eebc8a56765..d9c448970c9 100644 --- a/pkgs/development/compilers/urweb/default.nix +++ b/pkgs/development/compilers/urweb/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "urweb-${version}"; - version = "20151220"; + version = "20160621"; src = fetchurl { url = "http://www.impredicative.com/ur/${name}.tgz"; - sha256 = "155maalm4l1ni7az3yqs0lrgl5f2xr3pz4118ag1hnk82qldd4s5"; + sha256 = "08km96hli5yp754nsxxjzih2la0m89j5wc2cq12rkas43nqqgr65"; }; buildInputs = [ openssl mlton mysql postgresql sqlite ]; From cb7d8822e9cb173cfcb1238cb9db5bd4784e4ea8 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Thu, 14 Jul 2016 18:01:27 +0200 Subject: [PATCH 213/508] w3m: fix build on darwin (#16955) --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4842279dc50..56c435ae27b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14863,7 +14863,9 @@ in vym = callPackage ../applications/misc/vym { }; - w3m = callPackage ../applications/networking/browsers/w3m { }; + w3m = callPackage ../applications/networking/browsers/w3m { + graphicsSupport = !stdenv.isDarwin; + }; # Should always be the version with the most features w3m-full = w3m; From cbeb320c47bfc19c0ff45be15a6f16b54e878532 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:06:39 +0800 Subject: [PATCH 214/508] eventstat: 0.02.02 -> 0.03.02 --- pkgs/os-specific/linux/eventstat/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/eventstat/default.nix b/pkgs/os-specific/linux/eventstat/default.nix index d6122202b82..49eab1fe254 100644 --- a/pkgs/os-specific/linux/eventstat/default.nix +++ b/pkgs/os-specific/linux/eventstat/default.nix @@ -1,12 +1,13 @@ -{ stdenv, lib, fetchzip }: +{ stdenv, lib, fetchzip, ncurses }: stdenv.mkDerivation rec { name = "eventstat-${version}"; - version = "0.02.02"; + version = "0.03.02"; src = fetchzip { url = "http://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz"; - sha256 = "1l1shcj3c0pxv1g6sqc10ka1crbx0cm2gldxbyrzqv2lmlfnmm44"; + sha256 = "1bwv0m9pk9l0jfibvsfjggc5pp9lyyrsfr10h6jm6kf1v6r6hf5s"; }; + buildInputs = [ ncurses ]; installFlags = [ "DESTDIR=$(out)" ]; postInstall = '' mv $out/usr/* $out From 121a8c064613b6ff3d5bd336f909a593f34d7f60 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:06:54 +0800 Subject: [PATCH 215/508] stress-ng: 0.06.01 -> 0.06.11 --- pkgs/tools/system/stress-ng/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix index 0d55d1e7ca8..c45cc8a596b 100644 --- a/pkgs/tools/system/stress-ng/default.nix +++ b/pkgs/tools/system/stress-ng/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "stress-ng-${version}"; - version = "0.06.01"; + version = "0.06.11"; src = fetchurl { - sha256 = "1bk3sj6gyrgp5qfxiz6k7zml28m01iljgvxhp4yq391xzfyvrlg9"; + sha256 = "0481aji9hdq8qbslrrc87r2p2pn8jxf913ac8wm5kxj02yqf7ccv"; url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz"; }; @@ -24,8 +24,8 @@ stdenv.mkDerivation rec { longDescription = '' Stress test a system in various selectable ways, exercising both various physical subsystems and various operating system kernel interfaces: - - over 60 different stress tests - - over 50 CPU specific stress tests that exercise floating point, + - over 130 different stress tests + - over 70 CPU specific stress tests that exercise floating point, integer, bit manipulation and control flow - over 20 virtual memory stress tests stress-ng was originally intended to make a machine work hard and trip From b795186f2ee3e2ae5ca251db6d105aabeda1f554 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:22:54 +0800 Subject: [PATCH 216/508] fnotifystat: init at 0.01.14 --- .../os-specific/linux/fnotifystat/default.nix | 22 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/os-specific/linux/fnotifystat/default.nix diff --git a/pkgs/os-specific/linux/fnotifystat/default.nix b/pkgs/os-specific/linux/fnotifystat/default.nix new file mode 100644 index 00000000000..5708ed7c4df --- /dev/null +++ b/pkgs/os-specific/linux/fnotifystat/default.nix @@ -0,0 +1,22 @@ +{ stdenv, lib, fetchurl }: + +stdenv.mkDerivation rec { + name = "fnotifystat-${version}"; + version = "0.01.14"; + src = fetchurl { + url = "http://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz"; + sha256 = "1cc3w94v8b4nfpkgr33gfzxpwaf43brqyc0fla9p70gk3hxjqzi5"; + }; + installFlags = [ "DESTDIR=$(out)" ]; + postInstall = '' + mv $out/usr/* $out + rm -r $out/usr + ''; + meta = with lib; { + description = "File activity monitoring tool"; + homepage = http://kernel.ubuntu.com/~cking/fnotifystat/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ womfoo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e982c9c4ee7..a6228e374bf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10757,6 +10757,8 @@ in firejail = callPackage ../os-specific/linux/firejail {}; + fnotifystat = callPackage ../os-specific/linux/fnotifystat { }; + freefall = callPackage ../os-specific/linux/freefall { inherit (linuxPackages) kernel; }; From a927709a35cee56f878f0f57a932e1a6e2ebe23b Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Thu, 14 Jul 2016 20:54:06 +0200 Subject: [PATCH 217/508] openssh: Use the default privilege separation dir (/var/empty) If running NixOS inside a container where the host's root-owned files and directories have been mapped to some other uid (like nobody), the ssh daemon fails to start, producing this error message: fatal: /nix/store/...-openssh-7.2p2/empty must be owned by root and not group or world-writable. The reason for this is that when openssh is built, we explicitly set `--with-privsep-path=$out/empty`. This commit removes that flag which causes the default directory /var/empty to be used instead. Since NixOS' activation script correctly sets up that directory, the ssh daemon now also works within containers that have a non-root-owned nix store. --- pkgs/tools/networking/openssh/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 64b9fe98278..8d893c6a57f 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -66,11 +66,6 @@ stdenv.mkDerivation rec { ++ optional stdenv.isDarwin "--disable-libutil" ++ optional (!linkOpenssl) "--without-openssl"; - preConfigure = '' - configureFlagsArray+=("--with-privsep-path=$out/empty") - mkdir -p $out/empty - ''; - enableParallelBuilding = true; postInstall = '' From d2164cfcdae1a0315e5723cdf24e2c0572c0bbb9 Mon Sep 17 00:00:00 2001 From: davidak Date: Thu, 14 Jul 2016 22:04:55 +0200 Subject: [PATCH 218/508] caddy service: fix nix store output path systemd[11376]: caddy.service: Failed at step EXEC spawning /nix/store/ghpcwj6paccc92l1gk7ykb6gf2i2w6fi-go1.6-caddy-0.8.3/bin/caddy: No such file or directory --- nixos/modules/services/web-servers/caddy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-servers/caddy.nix b/nixos/modules/services/web-servers/caddy.nix index 0d2612aaa66..b84431373bd 100644 --- a/nixos/modules/services/web-servers/caddy.nix +++ b/nixos/modules/services/web-servers/caddy.nix @@ -33,7 +33,7 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { - ExecStart = "${pkgs.caddy}/bin/caddy -conf=${configFile} -email=${cfg.email}"; + ExecStart = "${pkgs.caddy.bin}/bin/caddy -conf=${configFile} -email=${cfg.email}"; Type = "simple"; User = "caddy"; Group = "caddy"; From d477991c4856d47b4e7ebded7c6822cdc68b0f50 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 7 Jul 2016 18:45:54 +0200 Subject: [PATCH 219/508] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v2.0-4-gb156b94 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/5bb0a1b20f0c9cc20c5e0c9c33deac5e855bb316 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/a5a99cf17698741e56c8efdf50989692c2e363e0 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/3664752ea8eaaca08dcc932bfcfaf3a3e20eddc4 --- .../haskell-modules/configuration-lts-0.0.nix | 43 + .../haskell-modules/configuration-lts-0.1.nix | 43 + .../haskell-modules/configuration-lts-0.2.nix | 43 + .../haskell-modules/configuration-lts-0.3.nix | 43 + .../haskell-modules/configuration-lts-0.4.nix | 43 + .../haskell-modules/configuration-lts-0.5.nix | 43 + .../haskell-modules/configuration-lts-0.6.nix | 43 + .../haskell-modules/configuration-lts-0.7.nix | 43 + .../haskell-modules/configuration-lts-1.0.nix | 44 + .../haskell-modules/configuration-lts-1.1.nix | 44 + .../configuration-lts-1.10.nix | 44 + .../configuration-lts-1.11.nix | 44 + .../configuration-lts-1.12.nix | 44 + .../configuration-lts-1.13.nix | 44 + .../configuration-lts-1.14.nix | 44 + .../configuration-lts-1.15.nix | 44 + .../haskell-modules/configuration-lts-1.2.nix | 44 + .../haskell-modules/configuration-lts-1.4.nix | 44 + .../haskell-modules/configuration-lts-1.5.nix | 44 + .../haskell-modules/configuration-lts-1.7.nix | 44 + .../haskell-modules/configuration-lts-1.8.nix | 44 + .../haskell-modules/configuration-lts-1.9.nix | 44 + .../haskell-modules/configuration-lts-2.0.nix | 44 + .../haskell-modules/configuration-lts-2.1.nix | 44 + .../configuration-lts-2.10.nix | 44 + .../configuration-lts-2.11.nix | 44 + .../configuration-lts-2.12.nix | 44 + .../configuration-lts-2.13.nix | 44 + .../configuration-lts-2.14.nix | 44 + .../configuration-lts-2.15.nix | 44 + .../configuration-lts-2.16.nix | 44 + .../configuration-lts-2.17.nix | 44 + .../configuration-lts-2.18.nix | 44 + .../configuration-lts-2.19.nix | 44 + .../haskell-modules/configuration-lts-2.2.nix | 44 + .../configuration-lts-2.20.nix | 44 + .../configuration-lts-2.21.nix | 44 + .../configuration-lts-2.22.nix | 44 + .../haskell-modules/configuration-lts-2.3.nix | 44 + .../haskell-modules/configuration-lts-2.4.nix | 44 + .../haskell-modules/configuration-lts-2.5.nix | 44 + .../haskell-modules/configuration-lts-2.6.nix | 44 + .../haskell-modules/configuration-lts-2.7.nix | 44 + .../haskell-modules/configuration-lts-2.8.nix | 44 + .../haskell-modules/configuration-lts-2.9.nix | 44 + .../haskell-modules/configuration-lts-3.0.nix | 47 + .../haskell-modules/configuration-lts-3.1.nix | 47 + .../configuration-lts-3.10.nix | 48 + .../configuration-lts-3.11.nix | 48 + .../configuration-lts-3.12.nix | 48 + .../configuration-lts-3.13.nix | 48 + .../configuration-lts-3.14.nix | 48 + .../configuration-lts-3.15.nix | 48 + .../configuration-lts-3.16.nix | 48 + .../configuration-lts-3.17.nix | 48 + .../configuration-lts-3.18.nix | 48 + .../configuration-lts-3.19.nix | 48 + .../haskell-modules/configuration-lts-3.2.nix | 47 + .../configuration-lts-3.20.nix | 48 + .../configuration-lts-3.21.nix | 48 + .../configuration-lts-3.22.nix | 48 + .../haskell-modules/configuration-lts-3.3.nix | 47 + .../haskell-modules/configuration-lts-3.4.nix | 47 + .../haskell-modules/configuration-lts-3.5.nix | 48 + .../haskell-modules/configuration-lts-3.6.nix | 48 + .../haskell-modules/configuration-lts-3.7.nix | 48 + .../haskell-modules/configuration-lts-3.8.nix | 48 + .../haskell-modules/configuration-lts-3.9.nix | 48 + .../haskell-modules/configuration-lts-4.0.nix | 51 + .../haskell-modules/configuration-lts-4.1.nix | 51 + .../haskell-modules/configuration-lts-4.2.nix | 51 + .../haskell-modules/configuration-lts-5.0.nix | 53 + .../haskell-modules/configuration-lts-5.1.nix | 53 + .../configuration-lts-5.10.nix | 58 + .../configuration-lts-5.11.nix | 58 + .../configuration-lts-5.12.nix | 58 + .../configuration-lts-5.13.nix | 58 + .../configuration-lts-5.14.nix | 59 + .../configuration-lts-5.15.nix | 59 + .../configuration-lts-5.16.nix | 61 + .../configuration-lts-5.17.nix | 62 + .../configuration-lts-5.18.nix | 63 + .../haskell-modules/configuration-lts-5.2.nix | 56 + .../haskell-modules/configuration-lts-5.3.nix | 57 + .../haskell-modules/configuration-lts-5.4.nix | 58 + .../haskell-modules/configuration-lts-5.5.nix | 58 + .../haskell-modules/configuration-lts-5.6.nix | 58 + .../haskell-modules/configuration-lts-5.7.nix | 58 + .../haskell-modules/configuration-lts-5.8.nix | 58 + .../haskell-modules/configuration-lts-5.9.nix | 58 + .../haskell-modules/configuration-lts-6.0.nix | 67 + .../haskell-modules/configuration-lts-6.1.nix | 70 + .../haskell-modules/configuration-lts-6.2.nix | 71 + .../haskell-modules/configuration-lts-6.3.nix | 73 + .../haskell-modules/configuration-lts-6.4.nix | 77 + .../haskell-modules/configuration-lts-6.5.nix | 79 + .../haskell-modules/configuration-lts-6.6.nix | 80 + .../haskell-modules/configuration-lts-6.7.nix | 8169 +++++++++++++++++ .../haskell-modules/hackage-packages.nix | 2885 +++++- 99 files changed, 15434 insertions(+), 464 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-6.7.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 0de5fc2f95f..a4b6af3eb6b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index e9649ded74e..04204e40226 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index ddd270cab51..eae18df92cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index ed01ed9ba0b..3ced309e08b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4428,9 +4443,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4942,6 +4959,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5410,6 +5428,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5455,6 +5474,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5720,6 +5740,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5834,6 +5855,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5933,6 +5955,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5997,6 +6020,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6150,6 +6174,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6390,6 +6415,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6685,6 +6711,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6934,6 +6961,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7224,6 +7252,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7499,6 +7531,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7749,6 +7782,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7863,6 +7897,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7980,6 +8015,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8119,6 +8155,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8212,6 +8249,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8490,6 +8528,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8635,6 +8674,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8671,6 +8711,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9133,6 +9174,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9375,6 +9417,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index a7ba69d54ce..48042705f5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4426,9 +4441,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4940,6 +4957,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5408,6 +5426,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5453,6 +5472,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5718,6 +5738,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5832,6 +5853,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5931,6 +5953,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5995,6 +6018,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6148,6 +6172,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6388,6 +6413,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6683,6 +6709,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6932,6 +6959,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7222,6 +7250,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7497,6 +7529,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7746,6 +7779,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7860,6 +7894,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7977,6 +8012,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8116,6 +8152,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8209,6 +8246,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8487,6 +8525,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8632,6 +8671,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8668,6 +8708,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9130,6 +9171,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9372,6 +9414,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 40e2308969d..5c246287aed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2088,7 +2090,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2198,6 +2202,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2518,6 +2523,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2594,6 +2600,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2606,6 +2613,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2659,6 +2667,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3439,6 +3448,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3597,6 +3607,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3607,6 +3620,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3693,6 +3707,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4426,9 +4441,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4940,6 +4957,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5408,6 +5426,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5453,6 +5472,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5718,6 +5738,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5832,6 +5853,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5931,6 +5953,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5995,6 +6018,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6148,6 +6172,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6388,6 +6413,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6683,6 +6709,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6932,6 +6959,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7222,6 +7250,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7497,6 +7529,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7746,6 +7779,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7860,6 +7894,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7977,6 +8012,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8116,6 +8152,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8209,6 +8246,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8487,6 +8525,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8632,6 +8671,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8668,6 +8708,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9130,6 +9171,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9372,6 +9414,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index fd306cd0a75..220a14bf4a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2087,7 +2089,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2197,6 +2201,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2517,6 +2522,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2593,6 +2599,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2605,6 +2612,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2658,6 +2666,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3438,6 +3447,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3596,6 +3606,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3606,6 +3619,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3692,6 +3706,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4424,9 +4439,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4938,6 +4955,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5406,6 +5424,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5451,6 +5470,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5716,6 +5736,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5830,6 +5851,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5929,6 +5951,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5993,6 +6016,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6146,6 +6170,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6386,6 +6411,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6681,6 +6707,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6930,6 +6957,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7220,6 +7248,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7494,6 +7526,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7743,6 +7776,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7857,6 +7891,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7974,6 +8009,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8113,6 +8149,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8206,6 +8243,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8484,6 +8522,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8629,6 +8668,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8665,6 +8705,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9127,6 +9168,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9369,6 +9411,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 6418e9b7209..7c3349d29e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -434,6 +435,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -2087,7 +2089,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2197,6 +2201,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2517,6 +2522,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2593,6 +2599,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2605,6 +2612,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2658,6 +2666,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3438,6 +3447,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3596,6 +3606,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3606,6 +3619,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3692,6 +3706,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4424,9 +4439,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4938,6 +4955,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5406,6 +5424,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5451,6 +5470,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5716,6 +5736,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_2_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5830,6 +5851,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5929,6 +5951,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5993,6 +6016,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6146,6 +6170,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6386,6 +6411,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6681,6 +6707,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6930,6 +6957,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7220,6 +7248,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7494,6 +7526,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7743,6 +7776,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7857,6 +7891,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7974,6 +8009,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8113,6 +8149,7 @@ self: super: { "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8206,6 +8243,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8484,6 +8522,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8629,6 +8668,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8665,6 +8705,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9127,6 +9168,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9369,6 +9411,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index ba011110146..d56ee1e4932 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1876,6 +1878,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2083,7 +2086,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2193,6 +2198,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2512,6 +2518,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2588,6 +2595,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2600,6 +2608,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2653,6 +2662,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3432,6 +3442,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3590,6 +3601,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3600,6 +3614,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3686,6 +3701,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4418,9 +4434,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4931,6 +4949,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5399,6 +5418,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5444,6 +5464,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5709,6 +5730,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5823,6 +5845,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5922,6 +5945,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5986,6 +6010,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6139,6 +6164,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6379,6 +6405,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6674,6 +6701,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6923,6 +6951,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7213,6 +7242,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7486,6 +7519,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7735,6 +7769,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7849,6 +7884,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7966,6 +8002,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8104,6 +8141,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8197,6 +8235,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8475,6 +8514,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8620,6 +8660,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8656,6 +8697,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9117,6 +9159,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9359,6 +9402,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index cfe4e6c6171..b576738f7a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1876,6 +1878,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2082,7 +2085,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2192,6 +2197,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2510,6 +2516,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2586,6 +2593,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2598,6 +2606,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2651,6 +2660,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3429,6 +3439,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3587,6 +3598,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3597,6 +3611,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3683,6 +3698,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4414,9 +4430,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4925,6 +4943,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5393,6 +5412,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5438,6 +5458,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5703,6 +5724,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5817,6 +5839,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5916,6 +5939,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5980,6 +6004,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6132,6 +6157,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6372,6 +6398,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6667,6 +6694,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6916,6 +6944,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7206,6 +7235,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7479,6 +7512,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7728,6 +7762,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7841,6 +7876,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7958,6 +7994,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8096,6 +8133,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8189,6 +8227,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8466,6 +8505,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8609,6 +8649,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8645,6 +8686,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9106,6 +9148,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9348,6 +9391,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index bfe57849529..5902d3d2d0a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3422,6 +3432,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3579,6 +3590,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3589,6 +3603,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3674,6 +3689,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4403,9 +4419,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4914,6 +4932,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5377,6 +5396,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5422,6 +5442,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5686,6 +5707,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5800,6 +5822,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5899,6 +5922,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5963,6 +5987,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6115,6 +6140,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6354,6 +6380,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6648,6 +6675,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6897,6 +6925,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7187,6 +7216,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7460,6 +7493,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7709,6 +7743,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7821,6 +7856,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7937,6 +7973,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8075,6 +8112,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8168,6 +8206,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8444,6 +8483,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8586,6 +8626,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8622,6 +8663,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9080,6 +9122,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9322,6 +9365,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 881dfeaa62e..a488786d3ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3421,6 +3431,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3578,6 +3589,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3588,6 +3602,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3673,6 +3688,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4402,9 +4418,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4913,6 +4931,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5374,6 +5393,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5419,6 +5439,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5683,6 +5704,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5797,6 +5819,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5896,6 +5919,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5960,6 +5984,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6112,6 +6137,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6351,6 +6377,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6645,6 +6672,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6894,6 +6922,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7184,6 +7213,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7457,6 +7490,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7706,6 +7740,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7818,6 +7853,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7934,6 +7970,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8072,6 +8109,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8165,6 +8203,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8441,6 +8480,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8583,6 +8623,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8619,6 +8660,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9077,6 +9119,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9319,6 +9362,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 9be52c89fe4..3ae2f86b854 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3421,6 +3431,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3578,6 +3589,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3588,6 +3602,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3673,6 +3688,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4402,9 +4418,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4913,6 +4931,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5374,6 +5393,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5419,6 +5439,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5683,6 +5704,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5797,6 +5819,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5896,6 +5919,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5960,6 +5984,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6112,6 +6137,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6351,6 +6377,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6645,6 +6672,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6894,6 +6922,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7184,6 +7213,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7457,6 +7490,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7706,6 +7740,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7818,6 +7853,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7934,6 +7970,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8072,6 +8109,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8165,6 +8203,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8441,6 +8480,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8583,6 +8623,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8619,6 +8660,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9077,6 +9119,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9319,6 +9362,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 5c278cc91c0..6fdfa9b2af2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3421,6 +3431,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3578,6 +3589,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3588,6 +3602,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3673,6 +3688,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4401,9 +4417,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4912,6 +4930,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5373,6 +5392,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5418,6 +5438,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5682,6 +5703,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5796,6 +5818,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5895,6 +5918,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5959,6 +5983,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6111,6 +6136,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6350,6 +6376,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6644,6 +6671,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6893,6 +6921,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7183,6 +7212,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7456,6 +7489,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7705,6 +7739,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7817,6 +7852,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7933,6 +7969,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8071,6 +8108,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8164,6 +8202,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8440,6 +8479,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8581,6 +8621,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8617,6 +8658,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9075,6 +9117,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9317,6 +9360,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index b2682cb4f13..fba79cca9bd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -431,6 +432,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1873,6 +1875,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2078,7 +2081,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2187,6 +2192,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2503,6 +2509,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2579,6 +2586,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2591,6 +2599,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2644,6 +2653,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3418,6 +3428,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3575,6 +3586,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3585,6 +3599,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3670,6 +3685,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4398,9 +4414,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4909,6 +4927,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5370,6 +5389,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5415,6 +5435,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5679,6 +5700,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5793,6 +5815,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5892,6 +5915,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5956,6 +5980,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6108,6 +6133,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6347,6 +6373,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6641,6 +6668,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6890,6 +6918,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7180,6 +7209,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7452,6 +7485,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7701,6 +7735,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7813,6 +7848,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7929,6 +7965,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8067,6 +8104,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8160,6 +8198,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8436,6 +8475,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8577,6 +8617,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8613,6 +8654,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9071,6 +9113,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9313,6 +9356,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index bf8c9eb0b04..df51f615b27 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -431,6 +432,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1872,6 +1874,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2077,7 +2080,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2185,6 +2190,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2501,6 +2507,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2576,6 +2583,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2588,6 +2596,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2641,6 +2650,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3415,6 +3425,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3572,6 +3583,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3582,6 +3596,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3667,6 +3682,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4395,9 +4411,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4906,6 +4924,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5367,6 +5386,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5412,6 +5432,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5676,6 +5697,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5790,6 +5812,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5889,6 +5912,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5953,6 +5977,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6105,6 +6130,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6342,6 +6368,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6636,6 +6663,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6885,6 +6913,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7175,6 +7204,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7446,6 +7479,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7695,6 +7729,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7807,6 +7842,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7923,6 +7959,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8061,6 +8098,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8154,6 +8192,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8429,6 +8468,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8570,6 +8610,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8606,6 +8647,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9064,6 +9106,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9306,6 +9349,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 05852c538a5..17a5abbc529 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1876,6 +1878,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2082,7 +2085,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2191,6 +2196,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2508,6 +2514,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2584,6 +2591,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2596,6 +2604,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2649,6 +2658,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3427,6 +3437,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3585,6 +3596,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3595,6 +3609,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3680,6 +3695,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4411,9 +4427,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4922,6 +4940,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5390,6 +5409,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5435,6 +5455,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5700,6 +5721,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5814,6 +5836,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5913,6 +5936,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5977,6 +6001,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6129,6 +6154,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6369,6 +6395,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6663,6 +6690,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6912,6 +6940,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7202,6 +7231,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7475,6 +7508,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7724,6 +7758,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7836,6 +7871,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7953,6 +7989,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8091,6 +8128,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8184,6 +8222,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8461,6 +8500,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8604,6 +8644,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8640,6 +8681,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9101,6 +9143,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9343,6 +9386,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 2aef19ffcd2..45e8cd33c16 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2081,7 +2084,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2190,6 +2195,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2507,6 +2513,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2583,6 +2590,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2595,6 +2603,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2648,6 +2657,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3425,6 +3435,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3583,6 +3594,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3593,6 +3607,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3678,6 +3693,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4408,9 +4424,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4919,6 +4937,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5387,6 +5406,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5432,6 +5452,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5697,6 +5718,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5811,6 +5833,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5910,6 +5933,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5974,6 +5998,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6126,6 +6151,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6365,6 +6391,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6659,6 +6686,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6908,6 +6936,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7198,6 +7227,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7471,6 +7504,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7720,6 +7754,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7832,6 +7867,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7949,6 +7985,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8087,6 +8124,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8180,6 +8218,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8457,6 +8496,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8599,6 +8639,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8635,6 +8676,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9096,6 +9138,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9338,6 +9381,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 5a546217a35..2456073a420 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3424,6 +3434,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3582,6 +3593,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3592,6 +3606,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3677,6 +3692,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4407,9 +4423,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4918,6 +4936,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5386,6 +5405,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5431,6 +5451,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5696,6 +5717,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5810,6 +5832,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5909,6 +5932,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5973,6 +5997,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6125,6 +6150,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6364,6 +6390,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6658,6 +6685,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6907,6 +6935,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7197,6 +7226,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7470,6 +7503,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7719,6 +7753,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7831,6 +7866,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7948,6 +7984,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8086,6 +8123,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8179,6 +8217,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8456,6 +8495,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8598,6 +8638,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8634,6 +8675,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9093,6 +9135,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9335,6 +9378,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index eb3a19da6a5..75985a07aef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3424,6 +3434,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3582,6 +3593,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3592,6 +3606,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3677,6 +3692,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4407,9 +4423,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4918,6 +4936,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5381,6 +5400,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5426,6 +5446,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5691,6 +5712,7 @@ self: super: { "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; "lifted-base" = doDistribute super."lifted-base_0_2_3_3"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5805,6 +5827,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5904,6 +5927,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5968,6 +5992,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6120,6 +6145,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6359,6 +6385,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6653,6 +6680,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6902,6 +6930,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7192,6 +7221,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7465,6 +7498,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7714,6 +7748,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7826,6 +7861,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7943,6 +7979,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8081,6 +8118,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8174,6 +8212,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8451,6 +8490,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8593,6 +8633,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8629,6 +8670,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9088,6 +9130,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9330,6 +9373,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 456b208b980..a588ecaeff9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3422,6 +3432,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3580,6 +3591,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3590,6 +3604,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3675,6 +3690,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4404,9 +4420,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4915,6 +4933,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5378,6 +5397,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5423,6 +5443,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5687,6 +5708,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5801,6 +5823,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5900,6 +5923,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5964,6 +5988,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6116,6 +6141,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6355,6 +6381,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6649,6 +6676,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6898,6 +6926,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7188,6 +7217,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7461,6 +7494,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7710,6 +7744,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7822,6 +7857,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7939,6 +7975,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8077,6 +8114,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8170,6 +8208,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8447,6 +8486,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8589,6 +8629,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8625,6 +8666,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9083,6 +9125,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9325,6 +9368,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index a933be151b7..7a8aa5bc545 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -199,6 +199,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -432,6 +433,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1875,6 +1877,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2080,7 +2083,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2189,6 +2194,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2506,6 +2512,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; @@ -2582,6 +2589,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2594,6 +2602,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2647,6 +2656,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3422,6 +3432,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3579,6 +3590,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3589,6 +3603,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3674,6 +3689,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4403,9 +4419,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4914,6 +4932,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5377,6 +5396,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5422,6 +5442,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_2"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5686,6 +5707,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_2_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5800,6 +5822,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_9_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = doDistribute super."logfloat_0_12_1"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5899,6 +5922,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = dontDistribute super."managed"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5963,6 +5987,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = dontDistribute super."mbox"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6115,6 +6140,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-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; @@ -6354,6 +6380,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6648,6 +6675,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6897,6 +6925,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7187,6 +7216,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7460,6 +7493,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7709,6 +7743,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7821,6 +7856,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7938,6 +7974,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_0"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8076,6 +8113,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8169,6 +8207,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8446,6 +8485,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8588,6 +8628,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8624,6 +8665,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9082,6 +9124,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9324,6 +9367,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index d7bedfd0bc0..bbe9bb5c785 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1864,6 +1866,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2070,7 +2073,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2177,6 +2182,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2491,6 +2497,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2566,6 +2573,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2578,6 +2586,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2631,6 +2640,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3404,6 +3414,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3562,6 +3573,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3572,6 +3586,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3657,6 +3672,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4383,9 +4399,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4892,6 +4910,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5346,6 +5365,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_1"; "json-sop" = dontDistribute super."json-sop"; @@ -5391,6 +5411,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5651,6 +5672,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5765,6 +5787,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5863,6 +5886,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5926,6 +5950,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6078,6 +6103,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6310,6 +6336,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6601,6 +6628,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6849,6 +6877,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7140,6 +7169,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7411,6 +7444,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7660,6 +7694,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7770,6 +7805,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7886,6 +7922,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8021,6 +8058,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8114,6 +8152,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8387,6 +8426,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8528,6 +8568,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8564,6 +8605,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9021,6 +9063,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9261,6 +9304,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 31db8fe1440..9c133a7d90e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1864,6 +1866,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2070,7 +2073,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2177,6 +2182,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2491,6 +2497,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2566,6 +2573,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2578,6 +2586,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2631,6 +2640,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3404,6 +3414,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3562,6 +3573,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3572,6 +3586,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3657,6 +3672,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4383,9 +4399,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4892,6 +4910,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5346,6 +5365,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_2"; "json-sop" = dontDistribute super."json-sop"; @@ -5391,6 +5411,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5651,6 +5672,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5765,6 +5787,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5863,6 +5886,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5926,6 +5950,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6078,6 +6103,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6310,6 +6336,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6601,6 +6628,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6849,6 +6877,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7140,6 +7169,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7411,6 +7444,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7660,6 +7694,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7770,6 +7805,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7886,6 +7922,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8021,6 +8058,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8114,6 +8152,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8387,6 +8426,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8528,6 +8568,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8564,6 +8605,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9021,6 +9063,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9261,6 +9304,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index e98942f659b..2bf1ca1242c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1858,6 +1860,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2063,7 +2066,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2170,6 +2175,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2483,6 +2489,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2558,6 +2565,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2570,6 +2578,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2622,6 +2631,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3391,6 +3401,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3549,6 +3560,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3559,6 +3573,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3644,6 +3659,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4369,9 +4385,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4878,6 +4896,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5328,6 +5347,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_5"; "json-sop" = dontDistribute super."json-sop"; @@ -5373,6 +5393,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5632,6 +5653,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5746,6 +5768,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5844,6 +5867,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5907,6 +5931,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6059,6 +6084,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6291,6 +6317,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6582,6 +6609,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6829,6 +6857,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7120,6 +7149,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7389,6 +7422,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7637,6 +7671,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7747,6 +7782,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7863,6 +7899,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7997,6 +8034,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8090,6 +8128,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8356,6 +8395,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8497,6 +8537,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8533,6 +8574,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8988,6 +9030,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9228,6 +9271,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index c8ae32d7c38..dce16c62c95 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3390,6 +3400,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3548,6 +3559,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3558,6 +3572,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3643,6 +3658,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4368,9 +4384,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4877,6 +4895,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5327,6 +5346,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5372,6 +5392,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5631,6 +5652,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5745,6 +5767,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5843,6 +5866,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5906,6 +5930,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6058,6 +6083,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6290,6 +6316,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6580,6 +6607,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6827,6 +6855,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7118,6 +7147,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7387,6 +7420,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7634,6 +7668,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7744,6 +7779,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7860,6 +7896,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7994,6 +8031,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8087,6 +8125,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8352,6 +8391,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8493,6 +8533,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8529,6 +8570,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8984,6 +9026,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9224,6 +9267,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 6750cb2d5d1..5d6a40dc3dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3390,6 +3400,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3548,6 +3559,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3558,6 +3572,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3643,6 +3658,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4368,9 +4384,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4877,6 +4895,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5327,6 +5346,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5372,6 +5392,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5631,6 +5652,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5745,6 +5767,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5843,6 +5866,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5906,6 +5930,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6058,6 +6083,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6290,6 +6316,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6580,6 +6607,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6827,6 +6855,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7118,6 +7147,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7387,6 +7420,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7634,6 +7668,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7743,6 +7778,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7859,6 +7895,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7993,6 +8030,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8086,6 +8124,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8351,6 +8390,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8492,6 +8532,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8528,6 +8569,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8983,6 +9025,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9223,6 +9266,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 61125b12723..68e7a0c544b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3390,6 +3400,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3548,6 +3559,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3558,6 +3572,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3643,6 +3658,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4368,9 +4384,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4877,6 +4895,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5326,6 +5345,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5371,6 +5391,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5630,6 +5651,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5744,6 +5766,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5842,6 +5865,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5905,6 +5929,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6057,6 +6082,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6289,6 +6315,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6579,6 +6606,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6826,6 +6854,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7117,6 +7146,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7386,6 +7419,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7633,6 +7667,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7742,6 +7777,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7858,6 +7894,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7992,6 +8029,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8085,6 +8123,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8350,6 +8389,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8491,6 +8531,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8527,6 +8568,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8982,6 +9024,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9222,6 +9265,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index d8cf7ce903f..b9fb7d6f8a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3389,6 +3399,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3547,6 +3558,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3557,6 +3571,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3642,6 +3657,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4367,9 +4383,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4875,6 +4893,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5324,6 +5343,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5369,6 +5389,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5628,6 +5649,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5742,6 +5764,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5840,6 +5863,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5903,6 +5927,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6055,6 +6080,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6287,6 +6313,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6577,6 +6604,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6824,6 +6852,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7115,6 +7144,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7384,6 +7417,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7631,6 +7665,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7740,6 +7775,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7856,6 +7892,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7990,6 +8027,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8083,6 +8121,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8348,6 +8387,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8489,6 +8529,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8525,6 +8566,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8980,6 +9022,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9220,6 +9263,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index b5ac5df9262..18a31397b64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2169,6 +2174,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2482,6 +2488,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2557,6 +2564,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2569,6 +2577,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2621,6 +2630,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3388,6 +3398,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3546,6 +3557,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3556,6 +3570,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3641,6 +3656,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4366,9 +4382,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4874,6 +4892,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5323,6 +5342,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5368,6 +5388,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5627,6 +5648,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5741,6 +5763,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5839,6 +5862,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5902,6 +5926,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6054,6 +6079,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6285,6 +6311,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6575,6 +6602,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6822,6 +6850,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7113,6 +7142,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7382,6 +7415,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7629,6 +7663,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7738,6 +7773,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7854,6 +7890,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7988,6 +8025,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8080,6 +8118,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8345,6 +8384,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8486,6 +8526,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8522,6 +8563,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8977,6 +9019,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9217,6 +9260,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index d1cefdb9f1a..fb751d3e2f9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1857,6 +1859,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2062,7 +2065,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2168,6 +2173,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2481,6 +2487,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2556,6 +2563,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2568,6 +2576,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2620,6 +2629,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3385,6 +3395,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3543,6 +3554,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3553,6 +3567,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3638,6 +3653,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4363,9 +4379,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4871,6 +4889,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5320,6 +5339,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_6"; "json-sop" = dontDistribute super."json-sop"; @@ -5365,6 +5385,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5623,6 +5644,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5737,6 +5759,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5835,6 +5858,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5898,6 +5922,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6050,6 +6075,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6281,6 +6307,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6571,6 +6598,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6818,6 +6846,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7109,6 +7138,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7378,6 +7411,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7625,6 +7659,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7734,6 +7769,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7850,6 +7886,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7984,6 +8021,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8076,6 +8114,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8341,6 +8380,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8482,6 +8522,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8518,6 +8559,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8973,6 +9015,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9213,6 +9256,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 62817592f11..90ca70be0eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2061,7 +2064,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2167,6 +2172,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2480,6 +2486,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2555,6 +2562,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2567,6 +2575,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2619,6 +2628,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3382,6 +3392,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3540,6 +3551,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3550,6 +3564,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3635,6 +3650,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4360,9 +4376,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4868,6 +4886,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5317,6 +5336,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5362,6 +5382,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5620,6 +5641,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5734,6 +5756,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5832,6 +5855,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5895,6 +5919,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6047,6 +6072,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6278,6 +6304,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6567,6 +6594,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6814,6 +6842,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7105,6 +7134,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7374,6 +7407,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7621,6 +7655,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7730,6 +7765,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7846,6 +7882,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7980,6 +8017,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8072,6 +8110,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8337,6 +8376,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8478,6 +8518,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8514,6 +8555,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8969,6 +9011,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9209,6 +9252,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 12e7a63a99c..83cef991962 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3380,6 +3390,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3538,6 +3549,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3548,6 +3562,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3633,6 +3648,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4358,9 +4374,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4866,6 +4884,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5315,6 +5334,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5360,6 +5380,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5618,6 +5639,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5732,6 +5754,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5830,6 +5853,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5893,6 +5917,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6045,6 +6070,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6276,6 +6302,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6564,6 +6591,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6811,6 +6839,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7102,6 +7131,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7371,6 +7404,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7618,6 +7652,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7727,6 +7762,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7843,6 +7879,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7977,6 +8014,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8069,6 +8107,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8334,6 +8373,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8475,6 +8515,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8511,6 +8552,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8966,6 +9008,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9206,6 +9249,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index c76562a5ae9..f4452f3e69b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4865,6 +4883,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5314,6 +5333,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5359,6 +5379,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5617,6 +5638,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5731,6 +5753,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_1_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5829,6 +5852,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5892,6 +5916,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6044,6 +6069,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6275,6 +6301,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6563,6 +6590,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6810,6 +6838,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7101,6 +7130,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7370,6 +7403,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7617,6 +7651,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7726,6 +7761,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7842,6 +7878,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7976,6 +8013,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8068,6 +8106,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8333,6 +8372,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8474,6 +8514,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8510,6 +8551,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8965,6 +9007,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9205,6 +9248,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 540f6a33be0..18a5fc3ef85 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2489,6 +2495,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2564,6 +2571,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2576,6 +2584,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2629,6 +2638,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3402,6 +3412,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3560,6 +3571,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3570,6 +3584,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3655,6 +3670,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4381,9 +4397,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4890,6 +4908,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5344,6 +5363,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_3"; "json-sop" = dontDistribute super."json-sop"; @@ -5389,6 +5409,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5649,6 +5670,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5763,6 +5785,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5861,6 +5884,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5924,6 +5948,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6076,6 +6101,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6308,6 +6334,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6599,6 +6626,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6847,6 +6875,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7138,6 +7167,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7409,6 +7442,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7658,6 +7692,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7768,6 +7803,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7884,6 +7920,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8019,6 +8056,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8112,6 +8150,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8385,6 +8424,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8526,6 +8566,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8562,6 +8603,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9019,6 +9061,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9259,6 +9302,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index ee32b47ad0b..1d03c9d5b80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4865,6 +4883,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5314,6 +5333,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5359,6 +5379,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5617,6 +5638,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5731,6 +5753,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5829,6 +5852,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5892,6 +5916,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6044,6 +6069,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6275,6 +6301,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6563,6 +6590,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6810,6 +6838,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7101,6 +7130,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7370,6 +7403,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7617,6 +7651,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7726,6 +7761,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7841,6 +7877,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7975,6 +8012,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8067,6 +8105,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8332,6 +8371,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8473,6 +8513,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8509,6 +8550,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8964,6 +9006,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9204,6 +9247,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 744ce37cb1d..e5f16f9bbb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4865,6 +4883,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5314,6 +5333,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_7"; "json-sop" = dontDistribute super."json-sop"; @@ -5359,6 +5379,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5617,6 +5638,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5731,6 +5753,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5829,6 +5852,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5892,6 +5916,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6044,6 +6069,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6275,6 +6301,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6563,6 +6590,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6810,6 +6838,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7100,6 +7129,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7369,6 +7402,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7616,6 +7650,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7725,6 +7760,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7840,6 +7876,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7974,6 +8011,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8066,6 +8104,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8331,6 +8370,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8472,6 +8512,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8508,6 +8549,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8963,6 +9005,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9203,6 +9246,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 1ca17474a51..66c6adc3881 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1856,6 +1858,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2060,7 +2063,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2166,6 +2171,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2479,6 +2485,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2554,6 +2561,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2566,6 +2574,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2618,6 +2627,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3379,6 +3389,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3537,6 +3548,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3547,6 +3561,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3632,6 +3647,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4357,9 +4373,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4864,6 +4882,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5313,6 +5332,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5358,6 +5378,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5616,6 +5637,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5730,6 +5752,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5828,6 +5851,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5891,6 +5915,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6043,6 +6068,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6274,6 +6300,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6562,6 +6589,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6809,6 +6837,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7099,6 +7128,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7368,6 +7401,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7615,6 +7649,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7724,6 +7759,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7839,6 +7875,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7973,6 +8010,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8065,6 +8103,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8330,6 +8369,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8471,6 +8511,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8507,6 +8548,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8962,6 +9004,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9202,6 +9245,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 65521fa360c..eb35a0931db 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2489,6 +2495,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2564,6 +2571,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2576,6 +2584,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2629,6 +2638,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3401,6 +3411,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3559,6 +3570,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3569,6 +3583,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3654,6 +3669,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4380,9 +4396,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4889,6 +4907,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5342,6 +5361,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5387,6 +5407,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5647,6 +5668,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5761,6 +5783,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5859,6 +5882,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5922,6 +5946,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6074,6 +6099,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6306,6 +6332,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6597,6 +6624,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_1"; "palindromes" = dontDistribute super."palindromes"; @@ -6845,6 +6873,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7136,6 +7165,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7407,6 +7440,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7656,6 +7690,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7766,6 +7801,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7882,6 +7918,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8017,6 +8054,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8110,6 +8148,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8383,6 +8422,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8524,6 +8564,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8560,6 +8601,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9017,6 +9059,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9257,6 +9300,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 589429db307..35bf5af61ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2489,6 +2495,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2564,6 +2571,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2576,6 +2584,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2629,6 +2638,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3401,6 +3411,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3559,6 +3570,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3569,6 +3583,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3654,6 +3669,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4380,9 +4396,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4889,6 +4907,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5342,6 +5361,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5387,6 +5407,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5647,6 +5668,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5761,6 +5783,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5859,6 +5882,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5922,6 +5946,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6074,6 +6099,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6306,6 +6332,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6597,6 +6624,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6844,6 +6872,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7135,6 +7164,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7405,6 +7438,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7654,6 +7688,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7764,6 +7799,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7880,6 +7916,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8015,6 +8052,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8108,6 +8146,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8381,6 +8420,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8522,6 +8562,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8558,6 +8599,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9015,6 +9057,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9255,6 +9298,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index e70c6e29102..c0754e8c86e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1863,6 +1865,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2068,7 +2071,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2175,6 +2180,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2488,6 +2494,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2563,6 +2570,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2575,6 +2583,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2628,6 +2637,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3400,6 +3410,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3558,6 +3569,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3568,6 +3582,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3653,6 +3668,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4379,9 +4395,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4888,6 +4906,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5341,6 +5360,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5386,6 +5406,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5646,6 +5667,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5760,6 +5782,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5858,6 +5881,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5921,6 +5945,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6073,6 +6098,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6305,6 +6331,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6596,6 +6623,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6843,6 +6871,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7134,6 +7163,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7404,6 +7437,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7653,6 +7687,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7763,6 +7798,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7879,6 +7915,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8014,6 +8051,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8107,6 +8145,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8380,6 +8419,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8521,6 +8561,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8557,6 +8598,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9014,6 +9056,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9254,6 +9297,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 4bce5603ac1..5f6fb229a54 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1861,6 +1863,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2066,7 +2069,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2173,6 +2178,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2486,6 +2492,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2561,6 +2568,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2573,6 +2581,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2626,6 +2635,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3398,6 +3408,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3556,6 +3567,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3566,6 +3580,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3651,6 +3666,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4376,9 +4392,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4885,6 +4903,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5338,6 +5357,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5383,6 +5403,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5643,6 +5664,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5757,6 +5779,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5855,6 +5878,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5918,6 +5942,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6070,6 +6095,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6301,6 +6327,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6592,6 +6619,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6839,6 +6867,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7130,6 +7159,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7400,6 +7433,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7649,6 +7683,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7759,6 +7794,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7875,6 +7911,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8010,6 +8047,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8103,6 +8141,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8376,6 +8415,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8517,6 +8557,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8553,6 +8594,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9008,6 +9050,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9248,6 +9291,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 96b0b5cc31a..741603cc89d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1861,6 +1863,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2066,7 +2069,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2173,6 +2178,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2486,6 +2492,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2561,6 +2568,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2573,6 +2581,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2626,6 +2635,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3398,6 +3408,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3556,6 +3567,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3566,6 +3580,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3651,6 +3666,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4376,9 +4392,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4885,6 +4903,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5338,6 +5357,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5383,6 +5403,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5643,6 +5664,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5757,6 +5779,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5855,6 +5878,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5918,6 +5942,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6070,6 +6095,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6302,6 +6328,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6593,6 +6620,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6840,6 +6868,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7131,6 +7160,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7401,6 +7434,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7650,6 +7684,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7760,6 +7795,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7876,6 +7912,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8011,6 +8048,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8104,6 +8142,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8377,6 +8416,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8518,6 +8558,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8554,6 +8595,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9009,6 +9051,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9249,6 +9292,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index e3f56a38ef6..aaf7d8ed806 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1860,6 +1862,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2065,7 +2068,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2172,6 +2177,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2485,6 +2491,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2560,6 +2567,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2572,6 +2580,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2625,6 +2634,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3396,6 +3406,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3554,6 +3565,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3564,6 +3578,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3649,6 +3664,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4374,9 +4390,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4883,6 +4901,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5336,6 +5355,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_4"; "json-sop" = dontDistribute super."json-sop"; @@ -5381,6 +5401,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5641,6 +5662,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5755,6 +5777,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5853,6 +5876,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5916,6 +5940,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6068,6 +6093,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6300,6 +6326,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6591,6 +6618,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6838,6 +6866,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7129,6 +7158,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7399,6 +7432,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7647,6 +7681,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7757,6 +7792,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7873,6 +7909,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8007,6 +8044,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8100,6 +8138,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8371,6 +8410,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8512,6 +8552,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8548,6 +8589,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -9003,6 +9045,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9243,6 +9286,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 2e5c024af52..e894b57599c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -198,6 +198,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -429,6 +430,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1858,6 +1860,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2063,7 +2066,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "cereal-vector" = dontDistribute super."cereal-vector"; "cf" = dontDistribute super."cf"; @@ -2170,6 +2175,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2483,6 +2489,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2558,6 +2565,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2570,6 +2578,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2623,6 +2632,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3392,6 +3402,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3550,6 +3561,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3560,6 +3574,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3645,6 +3660,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4370,9 +4386,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = dontDistribute super."hedis"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4879,6 +4897,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5331,6 +5350,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_3_5"; "json-sop" = dontDistribute super."json-sop"; @@ -5376,6 +5396,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5635,6 +5656,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5749,6 +5771,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_0_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5847,6 +5870,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5910,6 +5934,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -6062,6 +6087,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6294,6 +6320,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6585,6 +6612,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6832,6 +6860,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -7123,6 +7152,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -7393,6 +7426,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7641,6 +7675,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -7751,6 +7786,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7867,6 +7903,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -8001,6 +8038,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8094,6 +8132,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8361,6 +8400,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8502,6 +8542,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8538,6 +8579,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8993,6 +9035,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9233,6 +9276,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 785f9b4bbf0..c9f4481be8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1811,6 +1813,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2012,7 +2015,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2117,6 +2122,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2427,6 +2433,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2502,6 +2509,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2514,6 +2522,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2564,6 +2573,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3309,6 +3319,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3466,6 +3477,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3476,6 +3490,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3560,6 +3575,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4120,6 +4136,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4278,9 +4295,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4778,6 +4797,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5213,6 +5233,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5258,6 +5279,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5509,6 +5531,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5621,6 +5644,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5658,6 +5682,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5717,6 +5742,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5780,6 +5806,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5927,6 +5954,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6154,6 +6182,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6317,6 +6346,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6436,6 +6466,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6676,6 +6707,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6964,6 +6996,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7235,6 +7271,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7483,6 +7520,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; @@ -7585,6 +7623,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7700,6 +7739,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7835,6 +7875,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7925,6 +7966,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8181,6 +8223,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8321,6 +8364,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8357,6 +8401,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8803,6 +8848,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9039,6 +9085,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index e2804c9e689..4ca49045ed8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1810,6 +1812,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2011,7 +2014,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2116,6 +2121,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2426,6 +2432,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2501,6 +2508,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2513,6 +2521,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2563,6 +2572,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3307,6 +3317,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3464,6 +3475,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3474,6 +3488,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3558,6 +3573,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4118,6 +4134,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4276,9 +4293,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4776,6 +4795,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5211,6 +5231,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5256,6 +5277,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5507,6 +5529,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5619,6 +5642,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5656,6 +5680,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5714,6 +5739,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5777,6 +5803,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5924,6 +5951,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6151,6 +6179,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6314,6 +6343,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6433,6 +6463,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6672,6 +6703,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6960,6 +6992,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7231,6 +7267,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7478,6 +7515,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; @@ -7580,6 +7618,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7695,6 +7734,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7830,6 +7870,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7920,6 +7961,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8176,6 +8218,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8316,6 +8359,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8352,6 +8396,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8798,6 +8843,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9033,6 +9079,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 823b01c4c89..93738600458 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2109,6 +2114,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2418,6 +2424,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2493,6 +2500,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2505,6 +2513,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2555,6 +2564,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3294,6 +3304,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3451,6 +3462,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3461,6 +3475,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3544,6 +3559,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4102,6 +4118,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4259,9 +4276,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4757,6 +4776,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5190,6 +5210,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5235,6 +5256,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5484,6 +5506,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5596,6 +5619,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5633,6 +5657,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5691,6 +5716,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5754,6 +5780,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5900,6 +5927,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6126,6 +6154,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6287,6 +6316,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6406,6 +6436,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6645,6 +6676,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6930,6 +6962,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7200,6 +7236,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7447,6 +7484,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7549,6 +7587,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7664,6 +7703,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7797,6 +7837,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7886,6 +7927,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8141,6 +8183,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8171,6 +8214,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8277,6 +8321,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8313,6 +8358,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8757,6 +8803,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8990,6 +9037,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 793438b4421..0f0c6837104 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2109,6 +2114,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2418,6 +2424,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2493,6 +2500,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2505,6 +2513,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2555,6 +2564,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3293,6 +3303,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3450,6 +3461,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3460,6 +3474,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3543,6 +3558,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4101,6 +4117,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4258,9 +4275,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4756,6 +4775,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5189,6 +5209,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5234,6 +5255,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5483,6 +5505,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5595,6 +5618,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5632,6 +5656,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5690,6 +5715,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5753,6 +5779,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5899,6 +5926,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6125,6 +6153,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6286,6 +6315,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6405,6 +6435,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6644,6 +6675,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6929,6 +6961,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7199,6 +7235,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7446,6 +7483,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7548,6 +7586,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7663,6 +7702,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7796,6 +7836,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7885,6 +7926,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8140,6 +8182,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8170,6 +8213,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8276,6 +8320,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8312,6 +8357,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8756,6 +8802,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8989,6 +9036,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index d4c3a236f10..372de3cace5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4099,6 +4115,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4256,9 +4273,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4754,6 +4773,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5187,6 +5207,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5232,6 +5253,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5481,6 +5503,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5593,6 +5616,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5630,6 +5654,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5688,6 +5713,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5751,6 +5777,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5897,6 +5924,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6123,6 +6151,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6284,6 +6313,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6403,6 +6433,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6641,6 +6672,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6926,6 +6958,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7196,6 +7232,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7443,6 +7480,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7545,6 +7583,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7660,6 +7699,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7793,6 +7833,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7882,6 +7923,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8137,6 +8179,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8167,6 +8210,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8272,6 +8316,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8308,6 +8353,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8752,6 +8798,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8985,6 +9032,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 5ae2df82cb5..bcd60522489 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4099,6 +4115,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4256,9 +4273,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4753,6 +4772,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5186,6 +5206,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5231,6 +5252,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5479,6 +5501,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5591,6 +5614,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5628,6 +5652,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5686,6 +5711,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5749,6 +5775,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5895,6 +5922,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6121,6 +6149,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6282,6 +6311,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6401,6 +6431,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6638,6 +6669,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6923,6 +6955,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7193,6 +7229,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7440,6 +7477,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7542,6 +7580,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7657,6 +7696,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7790,6 +7830,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7879,6 +7920,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8134,6 +8176,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8164,6 +8207,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8269,6 +8313,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8305,6 +8350,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8749,6 +8795,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8982,6 +9029,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index c60052a30e0..56065ec833e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4099,6 +4115,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4256,9 +4273,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4753,6 +4772,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5185,6 +5205,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5230,6 +5251,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5478,6 +5500,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5590,6 +5613,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5627,6 +5651,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5685,6 +5710,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5748,6 +5774,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5894,6 +5921,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6120,6 +6148,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6281,6 +6310,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6400,6 +6430,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6637,6 +6668,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6922,6 +6954,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7192,6 +7228,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7439,6 +7476,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7541,6 +7579,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7656,6 +7695,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7789,6 +7829,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7878,6 +7919,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8133,6 +8175,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8163,6 +8206,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8268,6 +8312,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8304,6 +8349,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8748,6 +8794,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8980,6 +9027,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 4cf545c43ad..eea9625cfc9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2108,6 +2113,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2417,6 +2423,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2492,6 +2499,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2504,6 +2512,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2554,6 +2563,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3292,6 +3302,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3449,6 +3460,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3459,6 +3473,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3542,6 +3557,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4098,6 +4114,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4255,9 +4272,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4752,6 +4771,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5183,6 +5203,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5228,6 +5249,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5476,6 +5498,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5588,6 +5611,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5625,6 +5649,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5683,6 +5708,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5746,6 +5772,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5892,6 +5919,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6118,6 +6146,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6279,6 +6308,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6398,6 +6428,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6635,6 +6666,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6920,6 +6952,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7190,6 +7226,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7437,6 +7474,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7538,6 +7576,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7653,6 +7692,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7786,6 +7826,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7875,6 +7916,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8130,6 +8172,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8160,6 +8203,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8265,6 +8309,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8301,6 +8346,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8745,6 +8791,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8977,6 +9024,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index bcb89836ada..605d43e7462 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1802,6 +1804,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2003,7 +2006,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2107,6 +2112,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2416,6 +2422,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2491,6 +2498,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2503,6 +2511,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2553,6 +2562,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3291,6 +3301,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3448,6 +3459,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3458,6 +3472,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3541,6 +3556,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4097,6 +4113,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4254,9 +4271,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4751,6 +4770,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5182,6 +5202,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5227,6 +5248,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5474,6 +5496,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5586,6 +5609,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5623,6 +5647,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5681,6 +5706,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5743,6 +5769,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5889,6 +5916,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6115,6 +6143,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6276,6 +6305,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6395,6 +6425,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6632,6 +6663,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6916,6 +6948,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7185,6 +7221,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7432,6 +7469,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7533,6 +7571,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7648,6 +7687,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7781,6 +7821,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7870,6 +7911,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8125,6 +8167,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8154,6 +8197,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8258,6 +8302,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8294,6 +8339,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8738,6 +8784,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8970,6 +9017,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 30e57374bbf..0b9cef780e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1801,6 +1803,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2002,7 +2005,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2106,6 +2111,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2415,6 +2421,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2490,6 +2497,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2502,6 +2510,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2552,6 +2561,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3290,6 +3300,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3447,6 +3458,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3457,6 +3471,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3540,6 +3555,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4095,6 +4111,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4252,9 +4269,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4749,6 +4768,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5179,6 +5199,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5224,6 +5245,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5471,6 +5493,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5582,6 +5605,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5619,6 +5643,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5677,6 +5702,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5739,6 +5765,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5885,6 +5912,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6110,6 +6138,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6271,6 +6300,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6390,6 +6420,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6627,6 +6658,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6911,6 +6943,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7180,6 +7216,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7427,6 +7464,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7528,6 +7566,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7643,6 +7682,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7776,6 +7816,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7865,6 +7906,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8120,6 +8162,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8149,6 +8192,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8253,6 +8297,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8289,6 +8334,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8733,6 +8779,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8965,6 +9012,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index dc397c22a69..650c43f15e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1801,6 +1803,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2002,7 +2005,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2106,6 +2111,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2415,6 +2421,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2490,6 +2497,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2502,6 +2510,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2552,6 +2561,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3290,6 +3300,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3447,6 +3458,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3457,6 +3471,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3540,6 +3555,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4095,6 +4111,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4252,9 +4269,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4749,6 +4768,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5179,6 +5199,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5224,6 +5245,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5471,6 +5493,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5582,6 +5605,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5619,6 +5643,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5677,6 +5702,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5739,6 +5765,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5885,6 +5912,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6110,6 +6138,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6271,6 +6300,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6390,6 +6420,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6627,6 +6658,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6911,6 +6943,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7180,6 +7216,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7427,6 +7464,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7528,6 +7566,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7643,6 +7682,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7776,6 +7816,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7865,6 +7906,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8120,6 +8162,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8149,6 +8192,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8253,6 +8297,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8289,6 +8334,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8733,6 +8779,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8965,6 +9012,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 2a4d29f3616..1b8fb592432 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1799,6 +1801,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2000,7 +2003,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2104,6 +2109,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2412,6 +2418,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2487,6 +2494,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2499,6 +2507,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2549,6 +2558,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3287,6 +3297,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3444,6 +3455,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3454,6 +3468,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3537,6 +3552,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4092,6 +4108,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4249,9 +4266,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4744,6 +4763,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5174,6 +5194,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5218,6 +5239,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5465,6 +5487,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5576,6 +5599,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5613,6 +5637,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5671,6 +5696,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5733,6 +5759,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5879,6 +5906,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6103,6 +6131,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6264,6 +6293,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6383,6 +6413,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6620,6 +6651,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6904,6 +6936,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7173,6 +7209,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7420,6 +7457,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7521,6 +7559,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7636,6 +7675,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7768,6 +7808,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7857,6 +7898,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8112,6 +8154,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8141,6 +8184,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8245,6 +8289,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8281,6 +8326,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8725,6 +8771,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8957,6 +9004,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 773c5b19847..ed852ba2eec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1808,6 +1810,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2009,7 +2012,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2114,6 +2119,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2424,6 +2430,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2499,6 +2506,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2511,6 +2519,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2561,6 +2570,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3304,6 +3314,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3461,6 +3472,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3471,6 +3485,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3554,6 +3569,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4114,6 +4130,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4272,9 +4289,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4772,6 +4791,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5207,6 +5227,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5252,6 +5273,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5503,6 +5525,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5615,6 +5638,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5652,6 +5676,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5710,6 +5735,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5773,6 +5799,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5920,6 +5947,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6147,6 +6175,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6310,6 +6339,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6429,6 +6459,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6668,6 +6699,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6956,6 +6988,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7226,6 +7262,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7473,6 +7510,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7575,6 +7613,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7690,6 +7729,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7824,6 +7864,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7914,6 +7955,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8170,6 +8212,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8310,6 +8353,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8346,6 +8390,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8792,6 +8837,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9027,6 +9073,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 7dc6e7e26e7..c75fbd244f6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1798,6 +1800,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1999,7 +2002,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2103,6 +2108,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2411,6 +2417,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2486,6 +2493,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2498,6 +2506,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2548,6 +2557,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3286,6 +3296,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3443,6 +3454,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3453,6 +3467,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3536,6 +3551,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4091,6 +4107,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4248,9 +4265,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4743,6 +4762,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5173,6 +5193,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5217,6 +5238,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5464,6 +5486,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5575,6 +5598,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5612,6 +5636,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5670,6 +5695,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5732,6 +5758,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5878,6 +5905,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6102,6 +6130,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6263,6 +6292,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6382,6 +6412,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6619,6 +6650,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6903,6 +6935,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7171,6 +7207,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7418,6 +7455,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7519,6 +7557,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7634,6 +7673,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7766,6 +7806,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7855,6 +7896,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8109,6 +8151,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8138,6 +8181,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8242,6 +8286,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8278,6 +8323,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8722,6 +8768,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8954,6 +9001,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index c0cdf4eee8d..a3a576bffbd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1798,6 +1800,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1999,7 +2002,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2103,6 +2108,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2410,6 +2416,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2485,6 +2492,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2497,6 +2505,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2547,6 +2556,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3283,6 +3293,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3440,6 +3451,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3450,6 +3464,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3533,6 +3548,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4088,6 +4104,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4245,9 +4262,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4740,6 +4759,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5168,6 +5188,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5212,6 +5233,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5459,6 +5481,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5570,6 +5593,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5607,6 +5631,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5665,6 +5690,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5727,6 +5753,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5873,6 +5900,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6097,6 +6125,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6258,6 +6287,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6377,6 +6407,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6613,6 +6644,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6897,6 +6929,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7165,6 +7201,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7412,6 +7449,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7510,6 +7548,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7625,6 +7664,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7756,6 +7796,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7845,6 +7886,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8099,6 +8141,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8128,6 +8171,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8232,6 +8276,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8268,6 +8313,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8712,6 +8758,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8942,6 +8989,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 0c9103e4e02..08ab10f165e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1798,6 +1800,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1999,7 +2002,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2103,6 +2108,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2410,6 +2416,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2485,6 +2492,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2497,6 +2505,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2547,6 +2556,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3282,6 +3292,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3439,6 +3450,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3449,6 +3463,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3532,6 +3547,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4087,6 +4103,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4244,9 +4261,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4739,6 +4758,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5165,6 +5185,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5209,6 +5230,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5456,6 +5478,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5567,6 +5590,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5604,6 +5628,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5662,6 +5687,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5724,6 +5750,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5870,6 +5897,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6094,6 +6122,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6255,6 +6284,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6374,6 +6404,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6610,6 +6641,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6894,6 +6926,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7162,6 +7198,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7409,6 +7446,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7507,6 +7545,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7622,6 +7661,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7753,6 +7793,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7842,6 +7883,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_10_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8096,6 +8138,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8125,6 +8168,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; @@ -8229,6 +8273,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8265,6 +8310,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8709,6 +8755,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8939,6 +8986,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 752235c5ef5..9dd0cca2fa1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1808,6 +1810,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2009,7 +2012,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2114,6 +2119,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2424,6 +2430,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2499,6 +2506,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2511,6 +2519,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2561,6 +2570,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3303,6 +3313,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3460,6 +3471,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3470,6 +3484,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3553,6 +3568,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4113,6 +4129,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4271,9 +4288,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4770,6 +4789,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5205,6 +5225,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5250,6 +5271,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5501,6 +5523,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5613,6 +5636,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5650,6 +5674,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5708,6 +5733,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5771,6 +5797,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5918,6 +5945,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6145,6 +6173,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6308,6 +6337,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6427,6 +6457,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6666,6 +6697,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6954,6 +6986,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7224,6 +7260,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7471,6 +7508,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7573,6 +7611,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7688,6 +7727,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7821,6 +7861,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7911,6 +7952,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8167,6 +8209,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8307,6 +8350,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8343,6 +8387,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8788,6 +8833,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9023,6 +9069,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 67eebd091a2..ab34692cdfd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1808,6 +1810,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2009,7 +2012,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2114,6 +2119,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2424,6 +2430,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2499,6 +2506,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2511,6 +2519,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2561,6 +2570,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3303,6 +3313,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3460,6 +3471,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3470,6 +3484,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3553,6 +3568,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4113,6 +4129,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4271,9 +4288,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4770,6 +4789,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5205,6 +5225,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5250,6 +5271,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5501,6 +5523,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5613,6 +5636,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5650,6 +5674,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5708,6 +5733,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5771,6 +5797,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5918,6 +5945,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6145,6 +6173,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6308,6 +6337,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6427,6 +6457,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6666,6 +6697,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6954,6 +6986,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7224,6 +7260,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7471,6 +7508,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7573,6 +7611,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7688,6 +7727,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7821,6 +7861,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7911,6 +7952,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8166,6 +8208,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8306,6 +8349,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8342,6 +8386,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8787,6 +8832,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9021,6 +9067,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 5c07986528d..e0bba2b3882 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1807,6 +1809,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2008,7 +2011,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2113,6 +2118,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2423,6 +2429,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2498,6 +2505,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2510,6 +2518,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2560,6 +2569,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3301,6 +3311,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3458,6 +3469,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3468,6 +3482,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3551,6 +3566,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4111,6 +4127,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4269,9 +4286,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4767,6 +4786,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5200,6 +5220,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5245,6 +5266,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5496,6 +5518,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5608,6 +5631,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_2_1"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5645,6 +5669,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5703,6 +5728,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5766,6 +5792,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5913,6 +5940,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6139,6 +6167,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6302,6 +6331,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6421,6 +6451,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6660,6 +6691,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6947,6 +6979,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7217,6 +7253,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7464,6 +7501,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7566,6 +7604,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7681,6 +7720,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7814,6 +7854,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7904,6 +7945,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8159,6 +8201,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8190,6 +8233,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8296,6 +8340,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8332,6 +8377,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8777,6 +8823,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9011,6 +9058,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 80403083c0e..088599b21f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1807,6 +1809,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2008,7 +2011,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2113,6 +2118,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2423,6 +2429,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2498,6 +2505,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2510,6 +2518,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2560,6 +2569,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3301,6 +3311,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3458,6 +3469,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3468,6 +3482,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3551,6 +3566,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4109,6 +4125,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4267,9 +4284,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4765,6 +4784,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5198,6 +5218,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5243,6 +5264,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5492,6 +5514,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5604,6 +5627,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5641,6 +5665,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5699,6 +5724,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_0"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5762,6 +5788,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5909,6 +5936,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6135,6 +6163,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6298,6 +6327,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6417,6 +6447,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6656,6 +6687,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6943,6 +6975,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7213,6 +7249,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7460,6 +7497,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7562,6 +7600,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7677,6 +7716,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7810,6 +7850,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7900,6 +7941,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8155,6 +8197,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8186,6 +8229,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8292,6 +8336,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8328,6 +8373,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8773,6 +8819,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9006,6 +9053,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 34365164da1..089f82f285e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1806,6 +1808,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2007,7 +2010,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2112,6 +2117,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2421,6 +2427,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2496,6 +2503,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2508,6 +2516,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2558,6 +2567,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3299,6 +3309,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3456,6 +3467,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3466,6 +3480,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3549,6 +3564,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4107,6 +4123,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4264,9 +4281,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4762,6 +4781,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5195,6 +5215,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5240,6 +5261,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5489,6 +5511,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5601,6 +5624,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5638,6 +5662,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5696,6 +5721,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5759,6 +5785,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5906,6 +5933,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6132,6 +6160,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6295,6 +6324,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6414,6 +6444,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6653,6 +6684,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6938,6 +6970,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7208,6 +7244,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7455,6 +7492,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7557,6 +7595,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7672,6 +7711,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7805,6 +7845,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7894,6 +7935,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8149,6 +8191,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8180,6 +8223,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8286,6 +8330,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8322,6 +8367,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8767,6 +8813,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -9000,6 +9047,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index d9658f630df..d2c60d1621f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1804,6 +1806,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2005,7 +2008,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2110,6 +2115,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2419,6 +2425,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2494,6 +2501,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2506,6 +2514,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2556,6 +2565,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3296,6 +3306,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3453,6 +3464,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3463,6 +3477,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3546,6 +3561,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4104,6 +4120,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4261,9 +4278,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4759,6 +4778,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5192,6 +5212,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5237,6 +5258,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5486,6 +5508,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5598,6 +5621,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5635,6 +5659,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5693,6 +5718,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5756,6 +5782,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5902,6 +5929,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6128,6 +6156,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6291,6 +6320,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6410,6 +6440,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6649,6 +6680,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6934,6 +6966,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7204,6 +7240,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7451,6 +7488,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7553,6 +7591,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7668,6 +7707,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7801,6 +7841,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7890,6 +7931,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8145,6 +8187,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8175,6 +8218,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8281,6 +8325,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8317,6 +8362,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8762,6 +8808,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8995,6 +9042,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 9ed248935ac..eab92ecdca4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -420,6 +421,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -1803,6 +1805,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = dontDistribute super."brick"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -2004,7 +2007,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2109,6 +2114,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2418,6 +2424,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = dontDistribute super."css-syntax"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2493,6 +2500,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2505,6 +2513,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2555,6 +2564,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3294,6 +3304,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3451,6 +3462,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3461,6 +3475,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3544,6 +3559,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4102,6 +4118,7 @@ self: super: { "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4259,9 +4276,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4757,6 +4776,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = dontDistribute super."hsx2hs"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = dontDistribute super."htaglib"; @@ -5190,6 +5210,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; @@ -5235,6 +5256,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5484,6 +5506,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5596,6 +5619,7 @@ self: super: { "log-domain" = doDistribute super."log-domain_0_10_3"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5633,6 +5657,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5691,6 +5716,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5754,6 +5780,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5900,6 +5927,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -6126,6 +6154,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6289,6 +6318,7 @@ self: super: { "octopus" = dontDistribute super."octopus"; "oculus" = dontDistribute super."oculus"; "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = doDistribute super."oeis_0_3_6"; "off-simple" = dontDistribute super."off-simple"; "ofx" = dontDistribute super."ofx"; "ohloh-hs" = dontDistribute super."ohloh-hs"; @@ -6408,6 +6438,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6647,6 +6678,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = dontDistribute super."pkcs10"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6932,6 +6964,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7202,6 +7238,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7449,6 +7486,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; @@ -7551,6 +7589,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7666,6 +7705,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7799,6 +7839,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7888,6 +7929,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -8143,6 +8185,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -8173,6 +8216,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -8279,6 +8323,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = dontDistribute super."text-zipper"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8315,6 +8360,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = dontDistribute super."these"; @@ -8760,6 +8806,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8993,6 +9040,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index dbbbc48b70e..9dd5ce82db0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -414,6 +415,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -912,6 +914,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1773,6 +1776,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_3_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1970,7 +1974,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2072,6 +2078,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2376,6 +2383,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2450,6 +2458,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2462,6 +2471,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2512,6 +2522,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3238,6 +3249,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3392,6 +3404,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3402,6 +3417,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3484,6 +3500,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4032,6 +4049,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4188,9 +4206,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_9"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4668,6 +4688,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5081,6 +5102,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5125,6 +5147,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5368,6 +5391,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5478,6 +5502,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5514,6 +5539,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5572,6 +5598,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5631,6 +5658,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5772,6 +5800,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5991,6 +6020,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6150,6 +6180,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6263,6 +6294,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6492,6 +6524,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6768,6 +6801,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7026,6 +7063,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7260,6 +7298,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7271,6 +7310,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7367,6 +7407,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7483,6 +7524,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7611,6 +7653,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7698,6 +7741,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7948,6 +7992,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7975,6 +8020,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; @@ -8077,6 +8123,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8113,6 +8160,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_0"; @@ -8519,6 +8567,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8539,6 +8588,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8759,6 +8809,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 7186b056ce1..14bf0721a42 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -414,6 +415,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -912,6 +914,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1772,6 +1775,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_3_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1969,7 +1973,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2071,6 +2077,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2375,6 +2382,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2449,6 +2457,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2461,6 +2470,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2511,6 +2521,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3235,6 +3246,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3389,6 +3401,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3399,6 +3414,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3481,6 +3497,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4029,6 +4046,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4185,9 +4203,11 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4665,6 +4685,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5074,6 +5095,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5118,6 +5140,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5359,6 +5382,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5469,6 +5493,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5505,6 +5530,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5563,6 +5589,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5622,6 +5649,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5763,6 +5791,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5982,6 +6011,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6141,6 +6171,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6254,6 +6285,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6483,6 +6515,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6759,6 +6792,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -7017,6 +7054,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7251,6 +7289,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7262,6 +7301,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7358,6 +7398,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7474,6 +7515,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7602,6 +7644,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7689,6 +7732,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7939,6 +7983,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7966,6 +8011,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; @@ -8068,6 +8114,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8104,6 +8151,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_0"; @@ -8510,6 +8558,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8530,6 +8579,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8750,6 +8800,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 14092ca4534..f4b4ed74e0d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -414,6 +415,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -912,6 +914,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1772,6 +1775,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_3_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1967,7 +1971,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2069,6 +2075,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2372,6 +2379,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2446,6 +2454,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2458,6 +2467,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2508,6 +2518,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -3228,6 +3239,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3381,6 +3393,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3391,6 +3406,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3473,6 +3489,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -4017,6 +4034,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4172,9 +4190,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4651,6 +4671,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5058,6 +5079,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5102,6 +5124,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5343,6 +5366,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_7_0_2"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5453,6 +5477,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5489,6 +5514,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5547,6 +5573,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_1"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5606,6 +5633,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5747,6 +5775,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5964,6 +5993,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6123,6 +6153,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6236,6 +6267,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6465,6 +6497,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6738,6 +6771,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6995,6 +7032,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7228,6 +7266,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7239,6 +7278,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7335,6 +7375,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7447,6 +7488,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7575,6 +7617,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7661,6 +7704,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7911,6 +7955,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7938,6 +7983,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; @@ -8040,6 +8086,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8076,6 +8123,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_0"; @@ -8482,6 +8530,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8502,6 +8551,7 @@ self: super: { "validated-literals" = dontDistribute super."validated-literals"; "validation" = dontDistribute super."validation"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8721,6 +8771,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 4d06b5e2d35..79ddd3344d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -412,6 +413,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -907,6 +909,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1762,6 +1765,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1956,7 +1960,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2058,6 +2064,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2358,6 +2365,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2431,6 +2439,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2443,6 +2452,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2493,6 +2503,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2714,6 +2725,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3204,6 +3216,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3357,6 +3370,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3367,6 +3383,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3398,6 +3415,7 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3446,6 +3464,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3986,6 +4005,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4141,9 +4161,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4620,6 +4642,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5026,6 +5049,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5069,6 +5093,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5309,6 +5334,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5419,6 +5445,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5455,6 +5482,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5513,6 +5541,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5572,6 +5601,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5711,6 +5741,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5928,6 +5959,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6085,6 +6117,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6197,6 +6230,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6424,6 +6458,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6695,6 +6730,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6949,6 +6988,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7180,6 +7220,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7191,6 +7232,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7287,6 +7329,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7397,6 +7440,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7525,6 +7569,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7611,6 +7656,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7858,6 +7904,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7885,6 +7932,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7984,6 +8032,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8019,6 +8068,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8423,6 +8473,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8442,6 +8493,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8659,6 +8711,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 62fd0637274..a4e2b2a8d75 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -906,6 +908,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1760,6 +1763,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1953,7 +1957,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2054,6 +2060,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2354,6 +2361,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2427,6 +2435,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2439,6 +2448,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2489,6 +2499,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2710,6 +2721,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3200,6 +3212,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3353,6 +3366,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3363,6 +3379,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3394,6 +3411,7 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3442,6 +3460,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3982,6 +4001,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4137,9 +4157,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4616,6 +4638,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -5021,6 +5044,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5064,6 +5088,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5304,6 +5329,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5414,6 +5440,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5450,6 +5477,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5508,6 +5536,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5567,6 +5596,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5705,6 +5735,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5922,6 +5953,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6079,6 +6111,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6191,6 +6224,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6418,6 +6452,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6689,6 +6724,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6942,6 +6981,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7173,6 +7213,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7184,6 +7225,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7280,6 +7322,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7390,6 +7433,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7518,6 +7562,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7604,6 +7649,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7851,6 +7897,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7878,6 +7925,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7977,6 +8025,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -8012,6 +8061,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8416,6 +8466,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8435,6 +8486,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8651,6 +8703,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 216517197f3..4099b5a4144 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -409,6 +410,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -902,6 +904,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1753,6 +1756,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1943,7 +1947,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2042,6 +2048,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2264,6 +2271,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2339,6 +2347,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2412,6 +2421,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2424,6 +2434,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2473,6 +2484,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2689,6 +2701,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3012,6 +3025,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3171,6 +3185,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3309,6 +3324,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3321,6 +3337,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3331,6 +3350,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3361,6 +3381,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3408,6 +3430,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3947,6 +3970,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4100,9 +4124,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4575,6 +4601,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4620,6 +4647,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4974,6 +5002,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5016,6 +5045,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5255,6 +5285,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5364,6 +5395,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5399,6 +5431,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5456,6 +5489,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5514,6 +5548,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5647,6 +5682,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5862,6 +5898,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6016,6 +6053,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6127,6 +6165,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6346,6 +6385,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6617,6 +6657,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6867,6 +6911,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7097,6 +7142,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7108,6 +7154,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7203,6 +7250,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7312,6 +7360,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7437,6 +7486,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7523,6 +7573,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7769,6 +7820,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7796,6 +7848,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7893,6 +7946,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7928,6 +7982,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8330,6 +8385,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8349,6 +8405,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8559,6 +8616,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 4fa9c249adb..41358159978 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -901,6 +903,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1750,6 +1753,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1940,7 +1944,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2039,6 +2045,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2261,6 +2268,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2336,6 +2344,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2409,6 +2418,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2421,6 +2431,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2470,6 +2481,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2686,6 +2698,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3008,6 +3021,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3167,6 +3181,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3305,6 +3320,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3317,6 +3333,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3327,6 +3346,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3357,6 +3377,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3404,6 +3426,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3943,6 +3966,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4096,9 +4120,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4567,6 +4593,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4612,6 +4639,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4965,6 +4993,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5007,6 +5036,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5246,6 +5276,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5355,6 +5386,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5390,6 +5422,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5447,6 +5480,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5505,6 +5539,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5638,6 +5673,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5853,6 +5889,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6007,6 +6044,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6118,6 +6156,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6337,6 +6376,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6607,6 +6647,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6857,6 +6901,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7087,6 +7132,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7098,6 +7144,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7193,6 +7240,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7302,6 +7350,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7427,6 +7476,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7513,6 +7563,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7759,6 +7810,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7785,6 +7837,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7882,6 +7935,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7917,6 +7971,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8318,6 +8373,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8336,6 +8392,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8545,6 +8602,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 0449f630810..3fc49a72614 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -900,6 +902,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1749,6 +1752,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1939,7 +1943,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2038,6 +2044,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2260,6 +2267,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2335,6 +2343,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2408,6 +2417,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2420,6 +2430,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2469,6 +2480,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2685,6 +2697,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3005,6 +3018,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3164,6 +3178,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3302,6 +3317,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3314,6 +3330,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3324,6 +3343,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3354,6 +3374,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3401,6 +3423,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3940,6 +3963,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4093,9 +4117,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4564,6 +4590,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4608,6 +4635,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4961,6 +4989,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5003,6 +5032,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5242,6 +5272,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5351,6 +5382,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5386,6 +5418,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5441,6 +5474,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5498,6 +5532,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5629,6 +5664,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5844,6 +5880,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5998,6 +6035,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6109,6 +6147,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6328,6 +6367,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6598,6 +6638,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6848,6 +6892,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7078,6 +7123,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7089,6 +7135,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7183,6 +7230,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7292,6 +7340,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7417,6 +7466,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7503,6 +7553,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7749,6 +7800,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7775,6 +7827,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7872,6 +7925,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7907,6 +7961,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8308,6 +8363,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8326,6 +8382,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8535,6 +8592,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index a66652715c3..e4132c55105 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -899,6 +901,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1745,6 +1748,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1935,7 +1939,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2034,6 +2040,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2256,6 +2263,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2331,6 +2339,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2404,6 +2413,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2416,6 +2426,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2465,6 +2476,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2681,6 +2693,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3001,6 +3014,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3160,6 +3174,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3298,6 +3313,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3310,6 +3326,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3320,6 +3339,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3350,6 +3370,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3397,6 +3419,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3936,6 +3959,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4089,9 +4113,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4560,6 +4586,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4604,6 +4631,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4956,6 +4984,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4998,6 +5027,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5237,6 +5267,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5346,6 +5377,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5381,6 +5413,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5435,6 +5468,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5492,6 +5526,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5623,6 +5658,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5838,6 +5874,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5992,6 +6029,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6102,6 +6140,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6321,6 +6360,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6591,6 +6631,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6841,6 +6885,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7071,6 +7116,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7082,6 +7128,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7176,6 +7223,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7285,6 +7333,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7410,6 +7459,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7496,6 +7546,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7742,6 +7793,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7768,6 +7820,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7865,6 +7918,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7900,6 +7954,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8300,6 +8355,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8318,6 +8374,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8526,6 +8583,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index f353a00b1d1..37e420e1d4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -897,6 +899,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1740,6 +1743,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1930,7 +1934,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2028,6 +2034,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2224,6 +2231,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2247,6 +2255,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2322,6 +2331,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2395,6 +2405,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2407,6 +2418,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2456,6 +2468,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2672,6 +2685,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2992,6 +3006,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3150,6 +3165,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3288,6 +3304,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3299,6 +3316,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3309,6 +3329,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3339,6 +3360,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3386,6 +3409,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3925,6 +3949,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4078,9 +4103,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4548,6 +4575,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4592,6 +4620,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4944,6 +4973,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4986,6 +5016,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5224,6 +5255,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5333,6 +5365,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5368,6 +5401,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5422,6 +5456,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5479,6 +5514,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5609,6 +5645,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5824,6 +5861,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5978,6 +6016,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6088,6 +6127,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6306,6 +6346,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6575,6 +6616,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6825,6 +6870,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7055,6 +7101,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7066,6 +7113,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7160,6 +7208,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7269,6 +7318,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7394,6 +7444,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7480,6 +7531,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7725,6 +7777,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7751,6 +7804,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7847,6 +7901,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7882,6 +7937,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8282,6 +8338,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8300,6 +8357,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8506,6 +8564,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 9ec24560413..98d945acf55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -896,6 +898,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1739,6 +1742,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1929,7 +1933,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2027,6 +2033,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2222,6 +2229,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2245,6 +2253,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2320,6 +2329,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2392,6 +2402,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2404,6 +2415,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2453,6 +2465,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2669,6 +2682,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2987,6 +3001,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3145,6 +3160,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3283,6 +3299,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3294,6 +3311,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3304,6 +3324,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3334,6 +3355,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3381,6 +3404,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3920,6 +3944,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4072,9 +4097,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4541,6 +4568,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4585,6 +4613,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4937,6 +4966,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4979,6 +5009,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5216,6 +5247,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5325,6 +5357,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5360,6 +5393,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5414,6 +5448,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5471,6 +5506,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5601,6 +5637,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5816,6 +5853,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5970,6 +6008,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6080,6 +6119,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6298,6 +6338,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6565,6 +6606,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6815,6 +6860,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7045,6 +7091,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7056,6 +7103,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7150,6 +7198,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7259,6 +7308,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7384,6 +7434,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7470,6 +7521,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7715,6 +7767,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7740,6 +7793,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7836,6 +7890,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7871,6 +7926,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8270,6 +8326,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8288,6 +8345,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8494,6 +8552,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index fe35f1a0153..d8e8421c045 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -408,6 +409,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -895,6 +897,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1734,6 +1737,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1923,7 +1927,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2021,6 +2027,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2213,6 +2220,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2236,6 +2244,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2311,6 +2320,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2383,6 +2393,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2395,6 +2406,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2444,6 +2456,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2660,6 +2673,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2977,6 +2991,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3135,6 +3150,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3273,6 +3289,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3284,6 +3301,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3294,6 +3314,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3324,6 +3345,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3371,6 +3394,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3909,6 +3933,7 @@ self: super: { "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4060,9 +4085,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4529,6 +4556,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4573,6 +4601,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4924,6 +4953,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4966,6 +4996,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5202,6 +5233,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5311,6 +5343,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5346,6 +5379,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5400,6 +5434,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5419,6 +5454,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5456,6 +5492,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5586,6 +5623,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5800,6 +5838,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5954,6 +5993,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6064,6 +6104,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6281,6 +6322,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6546,6 +6588,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6796,6 +6842,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7022,6 +7069,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7033,6 +7081,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7127,6 +7176,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7236,6 +7286,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7358,6 +7409,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7443,6 +7495,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7686,7 +7739,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7711,6 +7766,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7807,6 +7863,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7841,6 +7898,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8240,6 +8298,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8258,6 +8317,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8464,6 +8524,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index 5d26d4a8c6e..3da09e186d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -406,6 +407,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -892,6 +894,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1731,6 +1734,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1920,7 +1924,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2018,6 +2024,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2210,6 +2217,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2233,6 +2241,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2308,6 +2317,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2380,6 +2390,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2392,6 +2403,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2441,6 +2453,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2657,6 +2670,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2974,6 +2988,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3132,6 +3147,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3270,6 +3286,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3281,6 +3298,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3291,6 +3311,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3321,6 +3342,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3368,6 +3391,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3906,6 +3930,7 @@ self: super: { "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4057,9 +4082,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4526,6 +4553,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4570,6 +4598,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4921,6 +4950,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4963,6 +4993,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5199,6 +5230,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5308,6 +5340,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5343,6 +5376,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5397,6 +5431,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_3"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5416,6 +5451,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5437,6 +5473,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5452,6 +5489,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5582,6 +5620,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5796,6 +5835,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5949,6 +5989,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6059,6 +6100,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6275,6 +6317,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6540,6 +6583,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6789,6 +6836,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7015,6 +7063,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7026,6 +7075,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7120,6 +7170,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7229,6 +7280,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7351,6 +7403,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7436,6 +7489,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7678,7 +7732,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7703,6 +7759,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7799,6 +7856,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7833,6 +7891,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8230,6 +8289,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8248,6 +8308,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8454,6 +8515,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index edb76237951..f3ed1e1b470 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -189,6 +189,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -406,6 +407,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -891,6 +893,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1730,6 +1733,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1918,7 +1922,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2016,6 +2022,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2207,6 +2214,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2230,6 +2238,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2305,6 +2314,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2377,6 +2387,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2389,6 +2400,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2438,6 +2450,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2650,6 +2663,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -2966,6 +2980,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3123,6 +3138,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3261,6 +3277,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3272,6 +3289,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3282,6 +3302,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3312,6 +3333,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3359,6 +3382,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3604,6 +3628,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3896,6 +3921,7 @@ self: super: { "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4047,9 +4073,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4515,6 +4543,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4559,6 +4588,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4907,6 +4937,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4949,6 +4980,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5185,6 +5217,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5294,6 +5327,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5329,6 +5363,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5383,6 +5418,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_4"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5402,6 +5438,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5423,6 +5460,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5438,6 +5476,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5567,6 +5606,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5779,6 +5819,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5930,6 +5971,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6040,6 +6082,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6256,6 +6299,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6520,6 +6564,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6769,6 +6817,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6995,6 +7044,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7006,6 +7056,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7100,6 +7151,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7209,6 +7261,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7331,6 +7384,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7416,6 +7470,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7658,7 +7713,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7683,6 +7740,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7779,6 +7837,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7812,6 +7871,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8209,6 +8269,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -8227,6 +8288,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8431,6 +8493,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index e9c764e7f8e..eda095a330c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -906,6 +908,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1760,6 +1763,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1953,7 +1957,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2054,6 +2060,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2354,6 +2361,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2427,6 +2435,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2439,6 +2448,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2489,6 +2499,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2709,6 +2720,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3036,6 +3048,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3197,6 +3210,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3350,6 +3364,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3360,6 +3377,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3391,6 +3409,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3438,6 +3458,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3977,6 +3998,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4132,9 +4154,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4611,6 +4635,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4656,6 +4681,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -5014,6 +5040,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5057,6 +5084,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5297,6 +5325,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5407,6 +5436,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5443,6 +5473,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5501,6 +5532,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5560,6 +5592,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5697,6 +5730,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5914,6 +5948,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6071,6 +6106,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6183,6 +6219,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6407,6 +6444,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6678,6 +6716,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6930,6 +6972,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7160,6 +7203,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7171,6 +7215,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7267,6 +7312,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7377,6 +7423,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7505,6 +7552,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7591,6 +7639,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7837,6 +7886,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7864,6 +7914,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7963,6 +8014,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7998,6 +8050,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8402,6 +8455,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8421,6 +8475,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8637,6 +8692,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 80bf104ea44..ab577fde58b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -905,6 +907,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1758,6 +1761,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1951,7 +1955,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2052,6 +2058,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2352,6 +2359,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2425,6 +2433,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2437,6 +2446,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2486,6 +2496,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2705,6 +2716,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3029,6 +3041,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3189,6 +3202,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3329,6 +3343,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3341,6 +3356,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3351,6 +3369,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3382,6 +3401,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3429,6 +3450,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3968,6 +3990,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4123,9 +4146,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4602,6 +4627,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4647,6 +4673,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -5004,6 +5031,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5047,6 +5075,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5287,6 +5316,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5396,6 +5426,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5432,6 +5463,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5490,6 +5522,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5549,6 +5582,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5685,6 +5719,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5902,6 +5937,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6059,6 +6095,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6171,6 +6208,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; @@ -6394,6 +6432,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6665,6 +6704,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6915,6 +6958,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7145,6 +7189,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7156,6 +7201,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7252,6 +7298,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7362,6 +7409,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7488,6 +7536,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7574,6 +7623,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7820,6 +7870,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7847,6 +7898,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; @@ -7946,6 +7998,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7981,6 +8034,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8385,6 +8439,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8404,6 +8459,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8617,6 +8673,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index d17565f14a8..e61030058bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -904,6 +906,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1757,6 +1760,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1950,7 +1954,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2051,6 +2057,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2273,6 +2280,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2349,6 +2357,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2422,6 +2431,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2434,6 +2444,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2483,6 +2494,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2700,6 +2712,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3023,6 +3036,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3182,6 +3196,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3322,6 +3337,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3334,6 +3350,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3344,6 +3363,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3374,6 +3394,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3421,6 +3443,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3960,6 +3983,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4115,9 +4139,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4594,6 +4620,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4639,6 +4666,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4996,6 +5024,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5039,6 +5068,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5279,6 +5309,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5388,6 +5419,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5423,6 +5455,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5481,6 +5514,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5540,6 +5574,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5676,6 +5711,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5892,6 +5928,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6048,6 +6085,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6160,6 +6198,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6381,6 +6420,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6652,6 +6692,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6902,6 +6946,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7132,6 +7177,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7143,6 +7189,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7239,6 +7286,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7349,6 +7397,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7475,6 +7524,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7561,6 +7611,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7807,6 +7858,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7834,6 +7886,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7932,6 +7985,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7967,6 +8021,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8371,6 +8426,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8390,6 +8446,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8603,6 +8660,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 1e2bdb39d05..216beaa5e1e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -411,6 +412,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -904,6 +906,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1757,6 +1760,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1949,7 +1953,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2050,6 +2056,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2272,6 +2279,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2348,6 +2356,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2421,6 +2430,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2433,6 +2443,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2482,6 +2493,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2699,6 +2711,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3022,6 +3035,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3181,6 +3195,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3321,6 +3336,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3333,6 +3349,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3343,6 +3362,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3373,6 +3393,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3420,6 +3442,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3959,6 +3982,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4114,9 +4138,11 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4592,6 +4618,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4637,6 +4664,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4994,6 +5022,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5037,6 +5066,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5277,6 +5307,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5386,6 +5417,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5421,6 +5453,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5479,6 +5512,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5538,6 +5572,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5674,6 +5709,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5890,6 +5926,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6046,6 +6083,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6158,6 +6196,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6379,6 +6418,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6650,6 +6690,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6900,6 +6944,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7130,6 +7175,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7141,6 +7187,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7237,6 +7284,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7347,6 +7395,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7473,6 +7522,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7559,6 +7609,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7805,6 +7856,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7832,6 +7884,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7930,6 +7983,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7965,6 +8019,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8369,6 +8424,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8388,6 +8444,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8600,6 +8657,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 5b23bea6a10..a54dcb147c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1756,6 +1759,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1948,7 +1952,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2049,6 +2055,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2271,6 +2278,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2346,6 +2354,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2419,6 +2428,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2431,6 +2441,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2480,6 +2491,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2697,6 +2709,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3020,6 +3033,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3179,6 +3193,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3317,6 +3332,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3329,6 +3345,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3339,6 +3358,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3369,6 +3389,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3416,6 +3438,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3955,6 +3978,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4109,9 +4133,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4587,6 +4613,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4632,6 +4659,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4989,6 +5017,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5032,6 +5061,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5271,6 +5301,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5380,6 +5411,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5415,6 +5447,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5472,6 +5505,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5531,6 +5565,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5667,6 +5702,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5882,6 +5918,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6038,6 +6075,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6150,6 +6188,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6370,6 +6409,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6641,6 +6681,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6891,6 +6935,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7121,6 +7166,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7132,6 +7178,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7228,6 +7275,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7338,6 +7386,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7464,6 +7513,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7550,6 +7600,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7796,6 +7847,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7823,6 +7875,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7921,6 +7974,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7956,6 +8010,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8359,6 +8414,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8378,6 +8434,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8589,6 +8646,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 77883246470..4c26b8ecf88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1756,6 +1759,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1947,7 +1951,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2046,6 +2052,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2268,6 +2275,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2343,6 +2351,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2416,6 +2425,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2428,6 +2438,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2477,6 +2488,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2694,6 +2706,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3017,6 +3030,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3176,6 +3190,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3314,6 +3329,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3326,6 +3342,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3336,6 +3355,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3366,6 +3386,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3413,6 +3435,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3952,6 +3975,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4106,9 +4130,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4583,6 +4609,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4628,6 +4655,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4985,6 +5013,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5028,6 +5057,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5267,6 +5297,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5376,6 +5407,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5411,6 +5443,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5468,6 +5501,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5527,6 +5561,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5662,6 +5697,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5877,6 +5913,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6033,6 +6070,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6145,6 +6183,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6365,6 +6404,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6636,6 +6676,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6886,6 +6930,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7116,6 +7161,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7127,6 +7173,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7223,6 +7270,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7333,6 +7381,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7459,6 +7508,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7545,6 +7595,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7791,6 +7842,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7818,6 +7870,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7916,6 +7969,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7951,6 +8005,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8353,6 +8408,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8372,6 +8428,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8583,6 +8640,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index a5a4a2e7bed..1ef3e83698f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1756,6 +1759,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1947,7 +1951,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2046,6 +2052,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2268,6 +2275,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2343,6 +2351,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2416,6 +2425,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2428,6 +2438,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2477,6 +2488,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2694,6 +2706,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3017,6 +3030,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3176,6 +3190,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3314,6 +3329,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3326,6 +3342,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3336,6 +3355,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3366,6 +3386,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3413,6 +3435,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3952,6 +3975,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4106,9 +4130,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4583,6 +4609,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4628,6 +4655,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4985,6 +5013,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5028,6 +5057,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5267,6 +5297,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5376,6 +5407,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5411,6 +5443,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5468,6 +5501,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5527,6 +5561,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5662,6 +5697,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5877,6 +5913,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6033,6 +6070,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6145,6 +6183,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_6"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6365,6 +6404,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6636,6 +6676,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6886,6 +6930,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7116,6 +7161,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7127,6 +7173,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7223,6 +7270,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7333,6 +7381,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7459,6 +7508,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7545,6 +7595,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7791,6 +7842,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7818,6 +7870,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7916,6 +7969,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7951,6 +8005,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8353,6 +8408,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8372,6 +8428,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8582,6 +8639,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 2e2c7266d00..26420ddae5c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -190,6 +190,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -410,6 +411,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -903,6 +905,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1755,6 +1758,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1945,7 +1949,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -2044,6 +2050,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2266,6 +2273,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2341,6 +2349,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2414,6 +2423,7 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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"; @@ -2426,6 +2436,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2475,6 +2486,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2691,6 +2703,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; @@ -3014,6 +3027,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3173,6 +3187,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3311,6 +3326,7 @@ self: super: { "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3323,6 +3339,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3333,6 +3352,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3363,6 +3383,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3410,6 +3432,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3949,6 +3972,7 @@ self: super: { "haskell-names" = dontDistribute super."haskell-names"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = doDistribute super."haskell-packages_0_3"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; "haskell-player" = dontDistribute super."haskell-player"; @@ -4102,9 +4126,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4579,6 +4605,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4624,6 +4651,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4978,6 +5006,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -5021,6 +5050,7 @@ self: super: { "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; "kdt" = doDistribute super."kdt_0_2_3"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5260,6 +5290,7 @@ self: super: { "life" = dontDistribute super."life"; "lift-generics" = dontDistribute super."lift-generics"; "lifted-async" = doDistribute super."lifted-async_0_8_0_1"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5369,6 +5400,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logfloat" = dontDistribute super."logfloat"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; @@ -5404,6 +5436,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; @@ -5461,6 +5494,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5520,6 +5554,7 @@ self: super: { "maybench" = dontDistribute super."maybench"; "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5655,6 +5690,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5870,6 +5906,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = dontDistribute super."nested-routes"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -6025,6 +6062,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -6136,6 +6174,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6355,6 +6394,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6626,6 +6666,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6876,6 +6920,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -7106,6 +7151,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -7117,6 +7163,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; @@ -7212,6 +7259,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7321,6 +7369,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7446,6 +7495,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7532,6 +7582,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; @@ -7778,6 +7829,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7805,6 +7857,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7902,6 +7955,7 @@ self: super: { "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; "text-zipper" = doDistribute super."text-zipper_0_3_1"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7937,6 +7991,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -8339,6 +8394,7 @@ self: super: { "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; @@ -8358,6 +8414,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8568,6 +8625,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index 94bb9acdb21..d4442d43a24 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -188,6 +188,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -403,6 +404,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -881,6 +883,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1701,6 +1704,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1887,7 +1891,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1982,6 +1988,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2165,6 +2172,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2188,6 +2196,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2259,6 +2268,7 @@ self: super: { "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; "css-syntax" = doDistribute super."css-syntax_0_0_4"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2330,8 +2340,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2341,6 +2353,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2389,6 +2402,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2590,6 +2604,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2894,6 +2909,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3046,6 +3062,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3181,6 +3198,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generics-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3192,6 +3210,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3202,6 +3223,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3232,6 +3254,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3268,6 +3292,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3509,6 +3534,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3947,9 +3973,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4404,6 +4432,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4447,6 +4476,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4457,6 +4487,7 @@ self: super: { "http-trace" = dontDistribute super."http-trace"; "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4786,6 +4817,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4826,6 +4858,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4911,6 +4944,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -5051,6 +5085,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5159,6 +5194,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5193,6 +5229,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5242,6 +5279,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "managed" = doDistribute super."managed_1_0_4"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; @@ -5261,6 +5299,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5283,6 +5322,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5298,6 +5338,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5424,6 +5465,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5628,6 +5670,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5776,6 +5819,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5884,6 +5928,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6099,6 +6144,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; @@ -6352,6 +6398,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6408,6 +6458,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6592,6 +6643,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6807,6 +6859,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6818,6 +6871,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6899,6 +6953,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -7005,6 +7060,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7126,6 +7182,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7210,10 +7267,12 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7441,7 +7500,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7465,6 +7526,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7559,6 +7621,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7591,6 +7654,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7975,6 +8039,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7992,6 +8057,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8189,6 +8255,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index d5032927ded..d9d6fe893c2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -188,6 +188,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -403,6 +404,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -879,6 +881,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1696,6 +1699,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1875,7 +1879,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1970,6 +1976,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2153,6 +2160,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2176,6 +2184,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2246,6 +2255,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2317,8 +2327,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2328,6 +2340,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2375,6 +2388,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2576,6 +2590,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2873,6 +2888,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3022,6 +3038,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3156,6 +3173,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3167,6 +3185,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3177,6 +3198,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3207,6 +3229,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3243,6 +3267,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3480,6 +3505,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3916,9 +3942,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4369,6 +4397,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4412,6 +4441,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4422,6 +4452,7 @@ self: super: { "http-trace" = dontDistribute super."http-trace"; "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4747,6 +4778,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4787,6 +4819,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4828,6 +4861,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4871,6 +4905,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -5009,6 +5044,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5117,6 +5153,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5151,6 +5188,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5200,6 +5238,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5218,6 +5257,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5240,6 +5280,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5254,6 +5295,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5379,6 +5421,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5582,6 +5625,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5729,6 +5773,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5835,6 +5880,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -6004,6 +6050,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -6046,6 +6093,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6294,6 +6342,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6350,6 +6402,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6533,6 +6586,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6557,6 +6611,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6746,6 +6801,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6757,6 +6813,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6838,6 +6895,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6944,6 +7002,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7065,6 +7124,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7149,10 +7209,12 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7379,7 +7441,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7402,6 +7466,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7495,6 +7560,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7527,6 +7593,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7909,6 +7976,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7926,6 +7994,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8118,6 +8187,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix index 745d629e695..3b5eaf8b11c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -187,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -400,6 +401,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -874,6 +876,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1687,6 +1690,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1866,7 +1870,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1961,6 +1967,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2142,6 +2149,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2165,6 +2173,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2235,6 +2244,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2306,8 +2316,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2317,6 +2329,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2364,6 +2377,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2564,6 +2578,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2860,6 +2875,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -3006,6 +3022,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3140,6 +3157,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3151,6 +3169,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3161,6 +3182,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3189,6 +3211,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3225,6 +3249,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3462,6 +3487,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3895,9 +3921,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4347,6 +4375,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4390,6 +4419,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4399,6 +4429,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4723,6 +4754,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4762,6 +4794,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4803,6 +4836,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4846,6 +4880,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4984,6 +5019,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -5091,6 +5127,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5125,6 +5162,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5174,6 +5212,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5192,6 +5231,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5214,6 +5254,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5228,6 +5269,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5353,6 +5395,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5555,6 +5598,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5701,6 +5745,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5806,6 +5851,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5971,6 +6017,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -6013,6 +6060,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6261,6 +6309,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6317,6 +6369,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6497,6 +6550,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6521,6 +6575,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6707,6 +6762,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6718,6 +6774,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6799,6 +6856,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6905,6 +6963,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -7025,6 +7084,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7109,10 +7169,12 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_2"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7336,7 +7398,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7359,6 +7423,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7372,6 +7437,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7451,6 +7517,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7483,6 +7550,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7863,6 +7931,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7880,6 +7949,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -8071,6 +8141,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.3.nix b/pkgs/development/haskell-modules/configuration-lts-6.3.nix index b2012886939..855f6aca367 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.3.nix @@ -187,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -400,6 +401,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -871,6 +873,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1609,6 +1612,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1786,7 +1790,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1861,6 +1867,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_7"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_7"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1874,6 +1881,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2055,6 +2063,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2078,6 +2087,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2148,6 +2158,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2219,8 +2230,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2230,6 +2243,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2277,6 +2291,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2469,6 +2484,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2765,6 +2781,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2911,6 +2928,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3045,6 +3063,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3056,6 +3075,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3066,6 +3088,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3093,6 +3116,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3129,6 +3154,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3366,6 +3392,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3557,6 +3584,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3794,9 +3822,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4242,6 +4272,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4284,6 +4315,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4293,6 +4325,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4615,6 +4648,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4653,6 +4687,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4694,6 +4729,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4737,6 +4773,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4875,6 +4912,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4981,6 +5019,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -5015,6 +5054,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5064,6 +5104,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5082,6 +5123,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5104,6 +5146,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5118,6 +5161,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5243,6 +5287,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5443,6 +5488,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5589,6 +5635,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5694,6 +5741,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5858,6 +5906,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5896,6 +5945,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6143,6 +6193,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6199,6 +6253,7 @@ self: super: { "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow" = doDistribute super."rainbow_0_28_0_0"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6378,6 +6433,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6402,6 +6458,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6587,6 +6644,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6598,6 +6656,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6679,6 +6738,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6785,6 +6845,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6905,6 +6966,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6989,9 +7051,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7213,7 +7277,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7235,6 +7301,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7248,6 +7315,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7327,6 +7395,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7359,6 +7428,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7733,6 +7803,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7750,6 +7821,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7937,6 +8009,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.4.nix b/pkgs/development/haskell-modules/configuration-lts-6.4.nix index 10a4c6a780b..f81089bf70c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.4.nix @@ -126,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -186,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -399,6 +401,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -869,6 +872,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1606,6 +1610,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1782,7 +1787,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1857,6 +1864,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1870,6 +1878,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2051,6 +2060,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2074,6 +2084,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2144,6 +2155,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2215,8 +2227,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2226,6 +2240,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2273,6 +2288,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2460,6 +2476,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2754,6 +2771,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2900,6 +2918,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3025,6 +3044,7 @@ self: super: { "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_10_5"; "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; "generic-maybe" = dontDistribute super."generic-maybe"; "generic-pretty" = dontDistribute super."generic-pretty"; @@ -3033,6 +3053,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3044,6 +3065,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3054,6 +3078,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3081,6 +3106,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3117,6 +3144,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3354,6 +3382,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3545,6 +3574,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3782,9 +3812,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4228,6 +4260,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4269,6 +4302,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4278,6 +4312,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4600,6 +4635,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4638,6 +4674,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4679,6 +4716,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4722,6 +4760,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4859,6 +4898,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4965,6 +5005,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -4999,6 +5040,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5048,6 +5090,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5066,6 +5109,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5088,6 +5132,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5102,6 +5147,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5227,6 +5273,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5424,6 +5471,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5569,6 +5617,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5674,6 +5723,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5836,6 +5886,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5874,6 +5925,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6121,6 +6173,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6175,7 +6231,9 @@ self: super: { "radix" = dontDistribute super."radix"; "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_28_0_2"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6352,6 +6410,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6376,6 +6435,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6561,6 +6621,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6572,6 +6633,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6653,6 +6715,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6757,6 +6820,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6877,6 +6941,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6961,9 +7026,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7183,7 +7250,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7205,6 +7274,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7218,6 +7288,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7296,6 +7367,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7328,6 +7400,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7701,6 +7774,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7718,6 +7792,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7837,6 +7912,7 @@ self: super: { "wai-test" = dontDistribute super."wai-test"; "wai-thrift" = dontDistribute super."wai-thrift"; "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = doDistribute super."wai-transformers_0_0_6"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7904,6 +7980,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.5.nix b/pkgs/development/haskell-modules/configuration-lts-6.5.nix index ea5bde113e9..3547508f8c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.5.nix @@ -126,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -186,6 +187,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -397,6 +399,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -867,6 +870,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1281,6 +1285,7 @@ self: super: { "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1"; "atom-msp430" = dontDistribute super."atom-msp430"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; @@ -1602,6 +1607,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1777,7 +1783,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1852,6 +1860,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1864,6 +1873,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2045,6 +2055,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2068,6 +2079,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2137,6 +2149,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2208,8 +2221,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2219,6 +2234,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2266,6 +2282,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2452,6 +2469,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2745,6 +2763,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2891,6 +2910,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3016,6 +3036,7 @@ self: super: { "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_10_5"; "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; "generic-maybe" = dontDistribute super."generic-maybe"; "generic-pretty" = dontDistribute super."generic-pretty"; @@ -3024,6 +3045,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3035,6 +3057,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3045,6 +3070,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3072,6 +3098,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3108,6 +3136,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3345,6 +3374,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3535,6 +3565,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3771,9 +3802,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4216,6 +4249,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4257,6 +4291,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4266,6 +4301,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4587,6 +4623,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4625,6 +4662,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4666,6 +4704,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4709,6 +4748,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4843,6 +4883,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4949,6 +4990,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -4983,6 +5025,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5032,6 +5075,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5050,6 +5094,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5072,6 +5117,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5086,6 +5132,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5211,6 +5258,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5406,6 +5454,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5551,6 +5600,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5656,6 +5706,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5816,6 +5867,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5853,6 +5905,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6100,6 +6153,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6152,7 +6209,9 @@ self: super: { "radix" = dontDistribute super."radix"; "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_28_0_2"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6326,6 +6385,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6350,6 +6410,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6535,6 +6596,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6546,6 +6608,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6627,6 +6690,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6730,6 +6794,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6848,6 +6913,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6931,9 +6997,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7151,7 +7219,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7173,6 +7243,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7186,6 +7257,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7261,6 +7333,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7291,6 +7364,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7661,6 +7735,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7678,6 +7753,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7797,6 +7873,7 @@ self: super: { "wai-test" = dontDistribute super."wai-test"; "wai-thrift" = dontDistribute super."wai-thrift"; "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = doDistribute super."wai-transformers_0_0_6"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7863,6 +7940,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7932,6 +8010,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_2_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.6.nix b/pkgs/development/haskell-modules/configuration-lts-6.6.nix index e90a3c848dc..017412c76ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.6.nix @@ -126,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -185,6 +186,7 @@ self: super: { "Command" = dontDistribute super."Command"; "Commando" = dontDistribute super."Commando"; "ComonadSheet" = dontDistribute super."ComonadSheet"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; "Concurrential" = dontDistribute super."Concurrential"; "Condor" = dontDistribute super."Condor"; @@ -395,6 +397,7 @@ self: super: { "HERA" = dontDistribute super."HERA"; "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; "HGL" = dontDistribute super."HGL"; "HGamer3D" = dontDistribute super."HGamer3D"; "HGamer3D-API" = dontDistribute super."HGamer3D-API"; @@ -864,6 +867,7 @@ self: super: { "Stomp" = dontDistribute super."Stomp"; "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; "StrappedTemplates" = dontDistribute super."StrappedTemplates"; "StrategyLib" = dontDistribute super."StrategyLib"; "Stream" = dontDistribute super."Stream"; @@ -1277,6 +1281,7 @@ self: super: { "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1"; "atom-msp430" = dontDistribute super."atom-msp430"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; @@ -1597,6 +1602,7 @@ self: super: { "brians-brain" = dontDistribute super."brians-brain"; "brick" = doDistribute super."brick_0_4_1"; "brillig" = dontDistribute super."brillig"; + "broadcast-chan" = doDistribute super."broadcast-chan_0_1_0"; "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; @@ -1772,7 +1778,9 @@ self: super: { "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-io-streams" = dontDistribute super."cereal-io-streams"; "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; "cereal-text" = dontDistribute super."cereal-text"; "certificate" = dontDistribute super."certificate"; "cf" = dontDistribute super."cf"; @@ -1847,6 +1855,7 @@ self: super: { "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1859,6 +1868,7 @@ self: super: { "clevercss" = dontDistribute super."clevercss"; "cli" = dontDistribute super."cli"; "click-clack" = dontDistribute super."click-clack"; + "clientsession" = doDistribute super."clientsession_0_9_1_1"; "clifford" = dontDistribute super."clifford"; "clippard" = dontDistribute super."clippard"; "clipper" = dontDistribute super."clipper"; @@ -2040,6 +2050,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_2"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2063,6 +2074,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_2"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2132,6 +2144,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-text" = doDistribute super."css-text_0_1_2_1"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2203,8 +2216,10 @@ self: super: { "data-construction" = dontDistribute super."data-construction"; "data-cycle" = dontDistribute super."data-cycle"; "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; "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_1_0"; "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"; @@ -2214,6 +2229,7 @@ self: super: { "data-dispersal" = dontDistribute super."data-dispersal"; "data-dword" = dontDistribute super."data-dword"; "data-easy" = dontDistribute super."data-easy"; + "data-elf" = dontDistribute super."data-elf"; "data-embed" = dontDistribute super."data-embed"; "data-endian" = dontDistribute super."data-endian"; "data-extend-generic" = dontDistribute super."data-extend-generic"; @@ -2261,6 +2277,7 @@ self: super: { "data-store" = dontDistribute super."data-store"; "data-stringmap" = dontDistribute super."data-stringmap"; "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-sword" = dontDistribute super."data-sword"; "data-tensor" = dontDistribute super."data-tensor"; "data-textual" = dontDistribute super."data-textual"; "data-timeout" = dontDistribute super."data-timeout"; @@ -2447,6 +2464,7 @@ self: super: { "distribution" = dontDistribute super."distribution"; "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = doDistribute super."diversity_0_8_0_0"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2740,6 +2758,7 @@ self: super: { "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = doDistribute super."fasta_0_10_2_0"; "fastbayes" = dontDistribute super."fastbayes"; "fastcgi" = dontDistribute super."fastcgi"; "fastedit" = dontDistribute super."fastedit"; @@ -2886,6 +2905,7 @@ self: super: { "formlets-hsp" = dontDistribute super."formlets-hsp"; "formura" = dontDistribute super."formura"; "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; "foscam-directory" = dontDistribute super."foscam-directory"; "foscam-filename" = dontDistribute super."foscam-filename"; "foscam-sort" = dontDistribute super."foscam-sort"; @@ -3011,6 +3031,7 @@ self: super: { "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_10_5"; "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; "generic-maybe" = dontDistribute super."generic-maybe"; "generic-pretty" = dontDistribute super."generic-pretty"; @@ -3019,6 +3040,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_2_1_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3030,6 +3052,9 @@ self: super: { "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3040,6 +3065,7 @@ self: super: { "geoip2" = dontDistribute super."geoip2"; "geojson" = dontDistribute super."geojson"; "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; "geom2d" = dontDistribute super."geom2d"; "getemx" = dontDistribute super."getemx"; "getflag" = dontDistribute super."getflag"; @@ -3067,6 +3093,8 @@ self: super: { "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-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1_1"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_1"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3103,6 +3131,7 @@ self: super: { "gi-webkit" = dontDistribute super."gi-webkit"; "gi-webkit2" = dontDistribute super."gi-webkit2"; "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "giak" = dontDistribute super."giak"; "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; @@ -3340,6 +3369,7 @@ self: super: { "graphmod" = dontDistribute super."graphmod"; "graphql" = dontDistribute super."graphql"; "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; "grasp" = dontDistribute super."grasp"; "gray-code" = dontDistribute super."gray-code"; "gray-extended" = dontDistribute super."gray-extended"; @@ -3530,6 +3560,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3766,9 +3797,11 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "heckle" = dontDistribute super."heckle"; "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; "hedis-pile" = dontDistribute super."hedis-pile"; "hedis-simple" = dontDistribute super."hedis-simple"; "hedis-tags" = dontDistribute super."hedis-tags"; @@ -4210,6 +4243,7 @@ self: super: { "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog" = doDistribute super."hsyslog_2_0"; "hsyslog-udp" = dontDistribute super."hsyslog-udp"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4250,6 +4284,7 @@ self: super: { "http-kinder" = dontDistribute super."http-kinder"; "http-kit" = dontDistribute super."http-kit"; "http-listen" = dontDistribute super."http-listen"; + "http-media" = doDistribute super."http-media_0_6_3"; "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; @@ -4259,6 +4294,7 @@ self: super: { "http-test" = dontDistribute super."http-test"; "http-trace" = dontDistribute super."http-trace"; "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_6_0"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; "httpspec" = dontDistribute super."httpspec"; @@ -4580,6 +4616,7 @@ self: super: { "json-qq" = dontDistribute super."json-qq"; "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-generic" = dontDistribute super."json-rpc-generic"; "json-rpc-server" = dontDistribute super."json-rpc-server"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; @@ -4618,6 +4655,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keenser" = dontDistribute super."keenser"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4659,6 +4697,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_2"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4702,6 +4741,7 @@ self: super: { "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; "lambdacube-engine" = dontDistribute super."lambdacube-engine"; "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; @@ -4836,6 +4876,7 @@ self: super: { "libxml-enumerator" = dontDistribute super."libxml-enumerator"; "libxslt" = dontDistribute super."libxslt"; "life" = dontDistribute super."life"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; "lifted-threads" = dontDistribute super."lifted-threads"; "lifter" = dontDistribute super."lifter"; "ligature" = dontDistribute super."ligature"; @@ -4942,6 +4983,7 @@ self: super: { "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; "log2json" = dontDistribute super."log2json"; + "logentries" = dontDistribute super."logentries"; "logger" = dontDistribute super."logger"; "logging" = dontDistribute super."logging"; "logging-effect" = dontDistribute super."logging-effect"; @@ -4976,6 +5018,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltext" = doDistribute super."ltext_0_0_2_1"; "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -5025,6 +5068,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5043,6 +5087,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_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; @@ -5065,6 +5110,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5079,6 +5125,7 @@ self: super: { "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; "mbox-tools" = dontDistribute super."mbox-tools"; + "mcm" = dontDistribute super."mcm"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; @@ -5200,6 +5247,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; @@ -5395,6 +5443,7 @@ self: super: { "nero-wai" = dontDistribute super."nero-wai"; "nero-warp" = dontDistribute super."nero-warp"; "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; "nested-sets" = dontDistribute super."nested-sets"; "nestedmap" = dontDistribute super."nestedmap"; "net-concurrent" = dontDistribute super."net-concurrent"; @@ -5540,6 +5589,7 @@ self: super: { "oden-go-packages" = dontDistribute super."oden-go-packages"; "oeis" = dontDistribute super."oeis"; "off-simple" = dontDistribute super."off-simple"; + "ofx" = doDistribute super."ofx_0_4_0_4"; "ohloh-hs" = dontDistribute super."ohloh-hs"; "oi" = dontDistribute super."oi"; "oidc-client" = dontDistribute super."oidc-client"; @@ -5644,6 +5694,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagination" = dontDistribute super."pagination"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5804,6 +5855,7 @@ self: super: { "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; "pinch" = doDistribute super."pinch_0_2_0_1"; + "pinchot" = doDistribute super."pinchot_0_18_0_2"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5841,6 +5893,7 @@ self: super: { "pit" = dontDistribute super."pit"; "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; "pkcs1" = dontDistribute super."pkcs1"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; @@ -6086,6 +6139,10 @@ self: super: { "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; "qt" = dontDistribute super."qt"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quantfin" = dontDistribute super."quantfin"; "quantities" = dontDistribute super."quantities"; @@ -6138,7 +6195,9 @@ self: super: { "radix" = dontDistribute super."radix"; "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_28_0_2"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6312,6 +6371,7 @@ self: super: { "repa-v4l2" = dontDistribute super."repa-v4l2"; "repl" = dontDistribute super."repl"; "repl-toolkit" = dontDistribute super."repl-toolkit"; + "replicant" = dontDistribute super."replicant"; "repline" = dontDistribute super."repline"; "repo-based-blog" = dontDistribute super."repo-based-blog"; "repr" = dontDistribute super."repr"; @@ -6336,6 +6396,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; @@ -6494,6 +6555,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6520,6 +6582,7 @@ self: super: { "scyther-proof" = dontDistribute super."scyther-proof"; "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_2_1_1"; "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; @@ -6531,6 +6594,7 @@ self: super: { "seal-module" = dontDistribute super."seal-module"; "search" = dontDistribute super."search"; "sec" = dontDistribute super."sec"; + "secd" = dontDistribute super."secd"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; @@ -6611,6 +6675,7 @@ self: super: { "sext" = dontDistribute super."sext"; "sfml-audio" = dontDistribute super."sfml-audio"; "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; "sgd" = dontDistribute super."sgd"; "sgf" = dontDistribute super."sgf"; "sgrep" = dontDistribute super."sgrep"; @@ -6713,6 +6778,7 @@ self: super: { "singleton-nats" = dontDistribute super."singleton-nats"; "singletons" = doDistribute super."singletons_2_0_1"; "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; "size-based" = dontDistribute super."size-based"; @@ -6831,6 +6897,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -6914,9 +6981,11 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stache" = dontDistribute super."stache"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7134,7 +7203,9 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; "tak" = dontDistribute super."tak"; @@ -7156,6 +7227,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7169,6 +7241,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_3_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7244,6 +7317,7 @@ self: super: { "text-utf7" = dontDistribute super."text-utf7"; "text-xml-generic" = dontDistribute super."text-xml-generic"; "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; "text1" = dontDistribute super."text1"; "textPlot" = dontDistribute super."textPlot"; "textmatetags" = dontDistribute super."textmatetags"; @@ -7274,6 +7348,7 @@ self: super: { "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; "theoremquest" = dontDistribute super."theoremquest"; "theoremquest-client" = dontDistribute super."theoremquest-client"; "these" = doDistribute super."these_0_6_2_1"; @@ -7643,6 +7718,7 @@ self: super: { "uuagd" = dontDistribute super."uuagd"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; "uuid-quasi" = dontDistribute super."uuid-quasi"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; @@ -7660,6 +7736,7 @@ self: super: { "validate" = dontDistribute super."validate"; "validated-literals" = dontDistribute super."validated-literals"; "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; "value-supply" = dontDistribute super."value-supply"; "vampire" = dontDistribute super."vampire"; "var" = dontDistribute super."var"; @@ -7779,6 +7856,7 @@ self: super: { "wai-test" = dontDistribute super."wai-test"; "wai-thrift" = dontDistribute super."wai-thrift"; "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = doDistribute super."wai-transformers_0_0_6"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7844,6 +7922,7 @@ self: super: { "windowslive" = dontDistribute super."windowslive"; "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; "wiring" = dontDistribute super."wiring"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7913,6 +7992,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_2_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.7.nix b/pkgs/development/haskell-modules/configuration-lts-6.7.nix new file mode 100644 index 00000000000..afbe25cc30d --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-6.7.nix @@ -0,0 +1,8169 @@ +{ 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-6.7 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_5_1"; + "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"; + "BiGUL" = dontDistribute super."BiGUL"; + "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"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_3_1"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_6"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_6"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_6"; + "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"; + "Concurrent-Cache" = dontDistribute super."Concurrent-Cache"; + "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"; + "Delta-Lambda" = dontDistribute super."Delta-Lambda"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "Diff" = doDistribute super."Diff_0_3_2"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = doDistribute super."EdisonAPI_1_3"; + "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"; + "H" = doDistribute super."H_0_8_0_0"; + "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"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGE2D" = dontDistribute super."HGE2D"; + "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"; + "HPhone" = dontDistribute super."HPhone"; + "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"; + "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"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; + "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"; + "LambdaDB" = dontDistribute super."LambdaDB"; + "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"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingH" = doDistribute super."MissingH_1_3_0_2"; + "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"; + "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"; + "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" = doDistribute super."PortMidi_0_1_6_0"; + "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-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"; + "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"; + "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"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = doDistribute super."Strafunski-StrategyLib_5_0_0_8"; + "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" = doDistribute super."Win32_2_3_1_0"; + "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"; + "abnf" = dontDistribute super."abnf"; + "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-typelits" = dontDistribute super."accelerate-typelits"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "accuerr" = dontDistribute super."accuerr"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-coerce" = dontDistribute super."aeson-coerce"; + "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-json-ast" = dontDistribute super."aeson-json-ast"; + "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"; + "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_5_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-lattice" = dontDistribute super."aivika-lattice"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_9"; + "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-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; + "ampersand" = dontDistribute super."ampersand"; + "amqp" = doDistribute super."amqp_0_13_1"; + "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-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "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"; + "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" = dontDistribute super."argon"; + "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"; + "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-flatten" = dontDistribute super."ascii-flatten"; + "ascii-table" = dontDistribute super."ascii-table"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = doDistribute super."atom-conduit_0_3_1_1"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "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"; + "aur-api" = dontDistribute super."aur-api"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "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"; + "avwx" = dontDistribute super."avwx"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_2"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; + "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"; + "bcrypt" = doDistribute super."bcrypt_0_0_8"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beam-th" = dontDistribute super."beam-th"; + "beamable" = dontDistribute super."beamable"; + "bearriver" = dontDistribute super."bearriver"; + "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"; + "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"; + "bifunctors" = doDistribute super."bifunctors_5_2"; + "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-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-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-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-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"; + "biophd" = doDistribute super."biophd_0_0_4"; + "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-payment-channel" = dontDistribute super."bitcoin-payment-channel"; + "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" = doDistribute super."bits_0_4"; + "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-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; + "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"; + "bmp" = doDistribute super."bmp_1_2_5_2"; + "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"; + "boring-window-switcher" = dontDistribute super."boring-window-switcher"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = doDistribute super."brick_0_4_1"; + "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-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; + "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"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = doDistribute super."cabal-helper_0_6_3_1"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_9_0"; + "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"; + "cache" = dontDistribute super."cache"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_6_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_1"; + "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"; + "calendar-recycling" = dontDistribute super."calendar-recycling"; + "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_16_0_0"; + "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-megaparsec" = dontDistribute super."cassava-megaparsec"; + "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-io-streams" = dontDistribute super."cereal-io-streams"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-streams" = dontDistribute super."cereal-streams"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chorale-geo" = dontDistribute super."chorale-geo"; + "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"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; + "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"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; + "clay" = doDistribute super."clay_0_10_1"; + "clckwrks" = doDistribute super."clckwrks_0_23_16"; + "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"; + "cloben" = dontDistribute super."cloben"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "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"; + "codex" = doDistribute super."codex_0_4_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coin" = dontDistribute super."coin"; + "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"; + "colonnade" = dontDistribute super."colonnade"; + "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" = doDistribute super."comonad_4_2_7_2"; + "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"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-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-merge" = dontDistribute super."conduit-merge"; + "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"; + "config-value-getopt" = dontDistribute super."config-value-getopt"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "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-builder" = dontDistribute super."container-builder"; + "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"; + "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-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"; + "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"; + "courier" = doDistribute super."courier_0_1_1_2"; + "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"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cql" = doDistribute super."cql_3_0_7"; + "cql-io" = doDistribute super."cql-io_0_15_2"; + "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-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-multihash" = dontDistribute super."crypto-multihash"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; + "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; + "cryptonite" = doDistribute super."cryptonite_0_15"; + "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"; + "css-text" = doDistribute super."css-text_0_1_2_1"; + "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-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" = doDistribute super."data-default_0_5_3"; + "data-default-class" = doDistribute super."data-default-class_0_0_1"; + "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_1_0"; + "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-elf" = dontDistribute super."data-elf"; + "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-function-meld" = dontDistribute super."data-function-meld"; + "data-function-tacit" = dontDistribute super."data-function-tacit"; + "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-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-sword" = dontDistribute super."data-sword"; + "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"; + "datadog" = dontDistribute super."datadog"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddate" = dontDistribute super."ddate"; + "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" = doDistribute super."debian-build_0_9_2_0"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "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-generics" = doDistribute super."deepseq-generics_0_1_1_2"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "delude" = dontDistribute super."delude"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dense" = dontDistribute super."dense"; + "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" = doDistribute super."deriving-compat_0_2"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; + "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"; + "dictionary-sharing" = dontDistribute super."dictionary-sharing"; + "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"; + "digits" = doDistribute super."digits_0_2"; + "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"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "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-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "docvim" = dontDistribute super."docvim"; + "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"; + "dot-linker" = dontDistribute super."dot-linker"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_3_0_1"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "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" = doDistribute super."dpor_0_1_0_1"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "drmaa" = dontDistribute super."drmaa"; + "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"; + "dunai" = dontDistribute super."dunai"; + "duplo" = dontDistribute super."duplo"; + "dustme" = dontDistribute super."dustme"; + "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"; + "ec2-unikernel" = dontDistribute super."ec2-unikernel"; + "eccrypto" = dontDistribute super."eccrypto"; + "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"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-export" = dontDistribute super."elm-export"; + "elm-get" = dontDistribute super."elm-get"; + "elm-hybrid" = dontDistribute super."elm-hybrid"; + "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-validate-json" = dontDistribute super."email-validate-json"; + "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"; + "enchant" = dontDistribute super."enchant"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventsourced" = dontDistribute super."eventsourced"; + "eventstore" = doDistribute super."eventstore_0_12_0_0"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "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"; + "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"; + "failure-detector" = dontDistribute super."failure-detector"; + "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"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; + "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-gipeda" = dontDistribute super."feed-gipeda"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fitspec" = dontDistribute super."fitspec"; + "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"; + "fizzbuzz" = dontDistribute super."fizzbuzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "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"; + "flow-er" = dontDistribute super."flow-er"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock" = dontDistribute super."flowdock"; + "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"; + "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"; + "foobar" = dontDistribute super."foobar"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "fortran-src" = dontDistribute super."fortran-src"; + "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"; + "fraxl" = dontDistribute super."fraxl"; + "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"; + "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"; + "funnyprint" = dontDistribute super."funnyprint"; + "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"; + "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_10_5"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-random" = dontDistribute super."generic-random"; + "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" = doDistribute super."generics-sop_0_2_1_0"; + "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"; + "genvalidity" = dontDistribute super."genvalidity"; + "genvalidity-containers" = dontDistribute super."genvalidity-containers"; + "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "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"; + "geojson-types" = dontDistribute super."geojson-types"; + "geolite-csv" = dontDistribute super."geolite-csv"; + "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-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-history-parser" = dontDistribute super."ghci-history-parser"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; + "ghcjs-dom" = doDistribute super."ghcjs-dom_0_2_4_0"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-dom-jsaddle" = dontDistribute super."ghcjs-dom-jsaddle"; + "ghcjs-dom-jsffi" = dontDistribute super."ghcjs-dom-jsffi"; + "ghcjs-dom-webkit" = dontDistribute super."ghcjs-dom-webkit"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-perch" = dontDistribute super."ghcjs-perch"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "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-hs" = dontDistribute super."gi-gtk-hs"; + "gi-gtkosxapplication" = dontDistribute super."gi-gtkosxapplication"; + "gi-gtksource" = dontDistribute super."gi-gtksource"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pangocairo" = dontDistribute super."gi-pangocairo"; + "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"; + "giak" = dontDistribute super."giak"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_1"; + "gipeda" = doDistribute super."gipeda_0_2_0_1"; + "gist" = dontDistribute super."gist"; + "git" = dontDistribute super."git"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160511"; + "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-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"; + "glib" = doDistribute super."glib_0_13_2_2"; + "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-cloudmonitoring" = dontDistribute super."gogol-cloudmonitoring"; + "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-dataproc" = dontDistribute super."gogol-dataproc"; + "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-firebase-rules" = dontDistribute super."gogol-firebase-rules"; + "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-kgsearch" = dontDistribute super."gogol-kgsearch"; + "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-people" = dontDistribute super."gogol-people"; + "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-script" = dontDistribute super."gogol-script"; + "gogol-sheets" = dontDistribute super."gogol-sheets"; + "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-vision" = dontDistribute super."gogol-vision"; + "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"; + "google-translate" = dontDistribute super."google-translate"; + "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"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = doDistribute super."graphviz_2999_18_1_0"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "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" = doDistribute super."gtk_0_14_2"; + "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-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_5"; + "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" = doDistribute super."gtk3_0_14_2"; + "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" = doDistribute super."gtksourceview3_0_13_2_1"; + "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"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_4"; + "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"; + "hablog" = dontDistribute super."hablog"; + "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-processing" = dontDistribute super."hackage-processing"; + "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-api" = doDistribute super."haddock-api_2_16_1"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddock-library" = doDistribute super."haddock-library_1_2_1"; + "haddock-test" = dontDistribute super."haddock-test"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv"; + "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm"; + "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"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_4_2"; + "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"; + "harvest-api" = dontDistribute super."harvest-api"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascar" = dontDistribute super."hascar"; + "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"; + "hashing" = dontDistribute super."hashing"; + "hashmap" = dontDistribute super."hashmap"; + "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-fake-user-agent" = dontDistribute super."haskell-fake-user-agent"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = doDistribute super."haskell-gi_0_17_4"; + "haskell-gi-base" = doDistribute super."haskell-gi-base_0_17"; + "haskell-google-trends" = dontDistribute super."haskell-google-trends"; + "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-packages" = dontDistribute super."haskell-packages"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-player" = dontDistribute super."haskell-player"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-proxy-list" = dontDistribute super."haskell-proxy-list"; + "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-tools-ast" = dontDistribute super."haskell-tools-ast"; + "haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc"; + "haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen"; + "haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf"; + "haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint"; + "haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor"; + "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"; + "haskelzinc" = dontDistribute super."haskelzinc"; + "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-backend" = dontDistribute super."hasql-backend"; + "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-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"; + "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"; + "hdo" = dontDistribute super."hdo"; + "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"; + "heckle" = dontDistribute super."heckle"; + "hedis" = doDistribute super."hedis_0_6_10"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-namespace" = dontDistribute super."hedis-namespace"; + "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-dict" = dontDistribute super."hetero-dict"; + "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"; + "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_5_2"; + "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"; + "hjs" = dontDistribute super."hjs"; + "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" = doDistribute super."hledger_0_27"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_27"; + "hledger-ui" = doDistribute super."hledger-ui_0_27_4"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt-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"; + "homoiconic" = dontDistribute super."homoiconic"; + "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" = doDistribute super."hoogle_4_2_43"; + "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_18"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-docs" = dontDistribute super."hoppy-docs"; + "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-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"; + "houseman" = dontDistribute super."houseman"; + "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"; + "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"; + "hpath" = dontDistribute super."hpath"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hpio" = dontDistribute super."hpio"; + "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_2_0"; + "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-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-popen" = dontDistribute super."hs-popen"; + "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"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "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-megaparsec" = doDistribute super."hspec-megaparsec_0_1_1"; + "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"; + "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"; + "hsyslog" = doDistribute super."hsyslog_2_0"; + "hsyslog-udp" = dontDistribute super."hsyslog-udp"; + "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"; + "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-media" = doDistribute super."http-media_0_6_3"; + "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-trace" = dontDistribute super."http-trace"; + "http-wget" = dontDistribute super."http-wget"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-json" = doDistribute super."hw-json_0_0_0_2"; + "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; + "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; + "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"; + "hylide" = dontDistribute super."hylide"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; + "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"; + "identicon" = dontDistribute super."identicon"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = doDistribute super."idris_0_11_2"; + "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_7"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "ilist" = dontDistribute super."ilist"; + "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-maps" = dontDistribute super."incremental-maps"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentation-core" = dontDistribute super."indentation-core"; + "indentation-parsec" = dontDistribute super."indentation-parsec"; + "indentation-trifecta" = dontDistribute super."indentation-trifecta"; + "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"; + "inline-r" = doDistribute super."inline-r_0_8_0_1"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instance-control" = dontDistribute super."instance-control"; + "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"; + "integer-simple" = dontDistribute super."integer-simple"; + "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"; + "intero" = dontDistribute super."intero"; + "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-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" = dontDistribute super."ip"; + "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-client" = doDistribute super."irc-client_0_3_0_0"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = doDistribute super."irc-conduit_0_1_2_0"; + "irc-core" = dontDistribute super."irc-core"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "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"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_4"; + "jsaddle" = doDistribute super."jsaddle_0_3_0_3"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-aeson" = dontDistribute super."json-pointer-aeson"; + "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-generic" = dontDistribute super."json-rpc-generic"; + "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"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "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"; + "keenser" = dontDistribute super."keenser"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "khph" = dontDistribute super."khph"; + "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"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = doDistribute super."lambdacube-gl_0_5_0_5"; + "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-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dart" = dontDistribute super."language-dart"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_8_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"; + "lazy-search" = dontDistribute super."lazy-search"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "ld-intervals" = dontDistribute super."ld-intervals"; + "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"; + "legion" = dontDistribute super."legion"; + "leksah" = dontDistribute super."leksah"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; + "lens-family-th" = doDistribute super."lens-family-th_0_4_1_0"; + "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"; + "lifted-protolude" = dontDistribute super."lifted-protolude"; + "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"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; + "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-transformer" = dontDistribute super."list-transformer"; + "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"; + "located-monad-logger" = dontDistribute super."located-monad-logger"; + "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"; + "logentries" = dontDistribute super."logentries"; + "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"; + "ltext" = doDistribute super."ltext_0_0_2_1"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; + "ltl" = dontDistribute super."ltl"; + "lua-bc" = dontDistribute super."lua-bc"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_6_0_1"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "makefile" = dontDistribute super."makefile"; + "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_2_1"; + "mandulia" = dontDistribute super."mandulia"; + "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-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"; + "math-functions" = doDistribute super."math-functions_0_1_7_0"; + "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"; + "mcm" = dontDistribute super."mcm"; + "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"; + "means" = dontDistribute super."means"; + "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_4_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "mellon-core" = dontDistribute super."mellon-core"; + "mellon-gpio" = dontDistribute super."mellon-gpio"; + "mellon-web" = dontDistribute super."mellon-web"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "merge-bash-history" = dontDistribute super."merge-bash-history"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "micrologger" = dontDistribute super."micrologger"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; + "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-dijkstra" = dontDistribute super."monad-dijkstra"; + "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-lgbt" = dontDistribute super."monad-lgbt"; + "monad-log" = dontDistribute super."monad-log"; + "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "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-ste" = dontDistribute super."monad-ste"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-stm" = dontDistribute super."monad-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-timing" = dontDistribute super."monad-timing"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongoDB" = doDistribute super."mongoDB_2_0_10"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; + "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-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; + "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"; + "morph" = dontDistribute super."morph"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "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"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-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"; + "mywatch" = dontDistribute super."mywatch"; + "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"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "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"; + "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" = doDistribute super."nested-routes_7_0_0"; + "nested-sequence" = dontDistribute super."nested-sequence"; + "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-hans" = dontDistribute super."network-hans"; + "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-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"; + "neural" = dontDistribute super."neural"; + "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"; + "ngx-export" = dontDistribute super."ngx-export"; + "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"; + "nullpipe" = dontDistribute super."nullpipe"; + "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"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = doDistribute super."octane_0_4_24"; + "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"; + "ofx" = doDistribute super."ofx_0_4_0_4"; + "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"; + "once" = doDistribute super."once_0_1_0_0"; + "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" = doDistribute super."opaleye_0_4_2_0"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "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-text" = dontDistribute super."optparse-text"; + "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"; + "oscpacking" = dontDistribute super."oscpacking"; + "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"; + "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"; + "pagination" = dontDistribute super."pagination"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9_1_1"; + "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"; + "pango" = doDistribute super."pango_0_13_1_1"; + "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"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "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"; + "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"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistent" = doDistribute super."persistent_2_2_4_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"; + "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-mongoDB" = doDistribute super."persistent-mongoDB_2_1_4"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_3_0_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_2"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2_1"; + "persistent-template" = doDistribute super."persistent-template_2_1_8_1"; + "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"; + "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "phone-metadata" = dontDistribute super."phone-metadata"; + "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"; + "pinch" = doDistribute super."pinch_0_2_0_1"; + "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_2_1"; + "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-lzma" = dontDistribute super."pipes-lzma"; + "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-random" = dontDistribute super."pipes-random"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pixelated-avatar-generator" = dontDistribute super."pixelated-avatar-generator"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "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"; + "point-octree" = dontDistribute super."point-octree"; + "pointed" = doDistribute super."pointed_4_2_0_2"; + "pointfree" = dontDistribute super."pointfree"; + "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"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "pomodoro" = dontDistribute super."pomodoro"; + "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-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-bind" = dontDistribute super."postgresql-simple-bind"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue" = dontDistribute super."pqueue"; + "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"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "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-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"; + "pringletons" = dontDistribute super."pringletons"; + "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_8"; + "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"; + "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "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"; + "proto-lens" = dontDistribute super."proto-lens"; + "proto-lens-arbitrary" = dontDistribute super."proto-lens-arbitrary"; + "proto-lens-combinators" = dontDistribute super."proto-lens-combinators"; + "proto-lens-optparse" = dontDistribute super."proto-lens-optparse"; + "proto-lens-protoc" = dontDistribute super."proto-lens-protoc"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_2_0"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20160522"; + "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" = dontDistribute super."pulse"; + "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_8_5_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"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_2"; + "pusher-ws" = dontDistribute super."pusher-ws"; + "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"; + "qtah-cpp-qt5" = dontDistribute super."qtah-cpp-qt5"; + "qtah-examples" = dontDistribute super."qtah-examples"; + "qtah-generator" = dontDistribute super."qtah-generator"; + "qtah-qt5" = dontDistribute super."qtah-qt5"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "quantum-random" = dontDistribute super."quantum-random"; + "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"; + "quickbooks" = dontDistribute super."quickbooks"; + "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-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; + "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"; + "raaz" = dontDistribute super."raaz"; + "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_28_0_2"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_8"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rapid" = dontDistribute super."rapid"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = doDistribute super."ratel_0_1_3"; + "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"; + "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-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "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-colonnade" = dontDistribute super."reflex-dom-colonnade"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-jsx" = dontDistribute super."reflex-jsx"; + "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-record-examples" = dontDistribute super."relational-record-examples"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "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"; + "replicant" = dontDistribute super."replicant"; + "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-example" = dontDistribute super."rest-example"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_5"; + "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; + "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"; + "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"; + "rison" = dontDistribute super."rison"; + "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"; + "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"; + "roundRobin" = dontDistribute super."roundRobin"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rts-loader" = dontDistribute super."rts-loader"; + "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-exceptions" = dontDistribute super."safe-exceptions"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandi" = doDistribute super."sandi_0_3_6"; + "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"; + "sbp2udp" = dontDistribute super."sbp2udp"; + "sbv" = doDistribute super."sbv_5_11"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "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"; + "scientific" = doDistribute super."scientific_0_3_4_8"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-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" = doDistribute super."sdl2_2_1_1"; + "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"; + "secd" = dontDistribute super."secd"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = dontDistribute super."second-transfer"; + "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" = doDistribute super."semigroupoids_5_0_1"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups" = doDistribute super."semigroups_0_18_1"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentence-jp" = dontDistribute super."sentence-jp"; + "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"; + "serpentine" = dontDistribute super."serpentine"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-aeson-specs" = dontDistribute super."servant-aeson-specs"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-purescript" = dontDistribute super."servant-purescript"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; + "servant-response" = dontDistribute super."servant-response"; + "servant-router" = dontDistribute super."servant-router"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-subscriber" = dontDistribute super."servant-subscriber"; + "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sfnt2woff" = dontDistribute super."sfnt2woff"; + "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_9_1"; + "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-sass" = dontDistribute super."shakespeare-sass"; + "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"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; + "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"; + "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-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-tar" = dontDistribute super."simple-tar"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "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"; + "singletons" = doDistribute super."singletons_2_0_1"; + "sink" = dontDistribute super."sink"; + "siphon" = dontDistribute super."siphon"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "size-based" = dontDistribute super."size-based"; + "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"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake" = dontDistribute super."snake"; + "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-routes" = dontDistribute super."snap-routes"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; + "solga-swagger" = dontDistribute super."solga-swagger"; + "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"; + "sorted-list" = doDistribute super."sorted-list_0_1_6_1"; + "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"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "sproxy-web" = dontDistribute super."sproxy-web"; + "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"; + "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"; + "sscript" = dontDistribute super."sscript"; + "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"; + "stache" = dontDistribute super."stache"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "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"; + "stgi" = dontDistribute super."stgi"; + "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_8_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"; + "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"; + "store" = dontDistribute super."store"; + "store-core" = dontDistribute super."store-core"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-http" = dontDistribute super."stratux-http"; + "stratux-types" = dontDistribute super."stratux-types"; + "stratux-websockets" = dontDistribute super."stratux-websockets"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-eversion" = dontDistribute super."streaming-eversion"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "streams" = doDistribute super."streams_3_2_1"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-data" = dontDistribute super."strict-data"; + "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-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-core" = doDistribute super."stripe-core_2_0_3"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structural-traversal" = dontDistribute super."structural-traversal"; + "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"; + "subwordgraph" = dontDistribute super."subwordgraph"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "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"; + "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_2_0_2"; + "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"; + "symengine" = dontDistribute super."symengine"; + "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-info" = dontDistribute super."system-info"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; + "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"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_10"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-megaparsec" = dontDistribute super."tagsoup-megaparsec"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "tak" = dontDistribute super."tak"; + "tak-ai" = dontDistribute super."tak-ai"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-rerun" = doDistribute super."tasty-rerun_1_1_5"; + "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"; + "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-fixture" = dontDistribute super."test-fixture"; + "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"; + "testbench" = dontDistribute super."testbench"; + "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-all" = dontDistribute super."text-all"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-conversions" = dontDistribute super."text-conversions"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-lips" = dontDistribute super."text-lips"; + "text-loc" = dontDistribute super."text-loc"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2_1_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper-monad" = dontDistribute super."text-zipper-monad"; + "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-desugar" = doDistribute super."th-desugar_1_5_5"; + "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" = doDistribute super."th-lift-instances_0_1_9"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "thentos-cookie-session" = dontDistribute super."thentos-cookie-session"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = doDistribute super."these_0_6_2_1"; + "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"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; + "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" = doDistribute super."tidal_0_7_1"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-serial" = dontDistribute super."tidal-serial"; + "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"; + "timelens" = dontDistribute super."timelens"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "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"; + "timeprint" = dontDistribute super."timeprint"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-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"; + "tracetree" = dontDistribute super."tracetree"; + "tracker" = dontDistribute super."tracker"; + "traildb" = dontDistribute super."traildb"; + "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-compat" = doDistribute super."transformers-compat_0_4_0_4"; + "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-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"; + "trifecta" = doDistribute super."trifecta_1_5_2"; + "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"; + "ttask" = dontDistribute super."ttask"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turingMachine" = dontDistribute super."turingMachine"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "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-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-list" = doDistribute super."type-list_0_3_0_4"; + "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"; + "uAgda" = dontDistribute super."uAgda"; + "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"; + "unicode-transforms" = dontDistribute super."unicode-transforms"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = doDistribute super."union_0_1_1_0"; + "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-compat" = doDistribute super."unix-compat_0_4_1_4"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "unused" = dontDistribute super."unused"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = doDistribute super."uuid-orphans_1_3_11_1"; + "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"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "validity" = dontDistribute super."validity"; + "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"; + "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"; + "vectortiles" = dontDistribute super."vectortiles"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = doDistribute super."versions_2_0_0"; + "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-operational" = dontDistribute super."vinyl-operational"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "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"; + "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" = doDistribute super."vty_5_5_0"; + "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-http2-extra" = dontDistribute super."wai-http2-extra"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-make-assets" = dontDistribute super."wai-make-assets"; + "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-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" = doDistribute super."wai-middleware-verbs_0_2_0"; + "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-mysql" = dontDistribute super."wai-session-mysql"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-inv-route" = dontDistribute super."web-inv-route"; + "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"; + "webcloud" = dontDistribute super."webcloud"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = doDistribute super."webkitgtk3_0_14_1_1"; + "webkitgtk3-javascriptcore" = doDistribute super."webkitgtk3-javascriptcore_0_13_1_2"; + "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" = doDistribute super."werewolf_1_0_2_2"; + "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"; + "wikicfp-scraper" = dontDistribute super."wikicfp-scraper"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wire-streams" = dontDistribute super."wire-streams"; + "wiring" = dontDistribute super."wiring"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-vector" = dontDistribute super."word-vector"; + "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" = doDistribute super."wuss_1_0_4"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_2_2"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-decode" = dontDistribute super."xml-conduit-decode"; + "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"; + "xpathdsv" = dontDistribute super."xpathdsv"; + "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-api" = dontDistribute super."yahoo-finance-api"; + "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"; + "yandex-translate" = dontDistribute super."yandex-translate"; + "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-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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_10"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-ip" = dontDistribute super."yesod-ip"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-mangopay" = dontDistribute super."yesod-mangopay"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "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"; + "z3-encoding" = dontDistribute super."z3-encoding"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "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"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index de8865e3282..01475c0bf26 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2143,7 +2143,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_3_1" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -2169,6 +2169,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "BlogLiterately" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc + , pandoc-citeproc, pandoc-types, parsec, process, split, strict + , tagsoup, temporary, transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.4"; + sha256 = "1eb44830043ba01ddd186498d594a8b01c1ced908f2ea2dc6aa6085e2c91dd7d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict tagsoup temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + 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 ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder , diagrams-cairo, diagrams-lib, directory, filepath, pandoc, safe @@ -3948,6 +3974,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Concurrent-Cache" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "Concurrent-Cache"; + version = "0.2.0.0"; + sha256 = "df1d1540e28338609f86baef867704c4df1a2dfb8cf46881ec9227d3433fae3b"; + libraryHaskellDepends = [ base ]; + description = "A Cached variable for IO functions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ConcurrentUtils" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , crypto-random, cryptohash, list-extras, MonadRandom, monads-tf @@ -5997,8 +6034,8 @@ self: { }: mkDerivation { pname = "Euterpea"; - version = "2.0.1"; - sha256 = "904e085a15789161515324391882c6a04469cb652c3fcfa9e4b6aa640b327333"; + version = "2.0.2"; + sha256 = "9b7dfed82cceae3f1213c1dffee46d17a4d729626ad873175984567abab44db4"; libraryHaskellDepends = [ array arrows base bytestring containers deepseq ghc-prim HCodecs heap PortMidi random stm @@ -8678,6 +8715,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) fuse;}; + "HGE2D" = callPackage + ({ mkDerivation, base, GLUT, OpenGL, time }: + mkDerivation { + pname = "HGE2D"; + version = "0.1.6.5"; + sha256 = "072579275b26bc68356e564f6691bf9168548848e5ef759865e629b7f684d326"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base GLUT OpenGL time ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/I3ck/HGE2D"; + description = "2D game engine written in Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "HGL" = callPackage ({ mkDerivation, array, base, X11 }: mkDerivation { @@ -16938,8 +16990,8 @@ self: { }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.10.0.0"; - sha256 = "07cadc1eb4e2d0820c508676914e851d324c98eb97e4f37f936860fc3ddd8e80"; + version = "0.10.1.0"; + sha256 = "af1880de4e2bdb5c0bcdd5e532163d15c6fd33b1f01a1d09c8f5ded3dcfa70c5"; libraryHaskellDepends = [ base bytestring cairo cereal Chart Chart-cairo containers data-default-class generic-accessors glib gtk3 lens text time @@ -17482,6 +17534,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "QuickCheck_2_9_1" = callPackage + ({ mkDerivation, base, containers, random, template-haskell + , test-framework, tf-random, transformers + }: + mkDerivation { + pname = "QuickCheck"; + version = "2.9.1"; + sha256 = "f8769cbef895a67f9bd1ac554faa577e6c1fb41e271425880a759009e454d05f"; + libraryHaskellDepends = [ + base containers random template-haskell tf-random transformers + ]; + testHaskellDepends = [ + base containers template-haskell test-framework + ]; + jailbreak = true; + homepage = "https://github.com/nick8325/quickcheck"; + description = "Automatic testing of Haskell programs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "QuickCheck-GenT" = callPackage ({ mkDerivation, base, mtl, QuickCheck, random }: mkDerivation { @@ -18792,6 +18865,7 @@ self: { data-default-class diagrams-core diagrams-lib directory parsec split text tuple vector xml ]; + jailbreak = true; description = "Fonts from the SVG-Font format"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -20114,7 +20188,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "Strafunski-StrategyLib" = callPackage + "Strafunski-StrategyLib_5_0_0_8" = callPackage ({ mkDerivation, base, directory, mtl, syb, transformers }: mkDerivation { pname = "Strafunski-StrategyLib"; @@ -20124,6 +20198,18 @@ self: { jailbreak = true; description = "Library for strategic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Strafunski-StrategyLib" = callPackage + ({ mkDerivation, base, directory, mtl, syb, transformers }: + mkDerivation { + pname = "Strafunski-StrategyLib"; + version = "5.0.0.9"; + sha256 = "c8e464538cd27c4f2636eb25dcd1a1ef1df680f89600219baa2ca21ce2a98e1d"; + libraryHaskellDepends = [ base directory mtl syb transformers ]; + description = "Library for strategic programming"; + license = stdenv.lib.licenses.bsd3; }) {}; "StrappedTemplates" = callPackage @@ -24148,6 +24234,7 @@ self: { version = "0.2.0"; sha256 = "218f0271298f9a42aad50c10cc042388c62d1619624b750f0b665be4f068c4cd"; libraryHaskellDepends = [ base template-haskell type-level ]; + jailbreak = true; homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; @@ -25527,10 +25614,9 @@ self: { ({ mkDerivation, aeson, base }: mkDerivation { pname = "aeson-yak"; - version = "0.1.1"; - sha256 = "b71317e0a87bbd84d6ec407a307299201070a10e3b2cf9d28c4afb5cf8b0dad2"; + version = "0.1.1.1"; + sha256 = "68eaed01e8d928870dc8c3f3530a3c77aaf8ef1bec86928f2382b9e0af81a260"; libraryHaskellDepends = [ aeson base ]; - jailbreak = true; homepage = "https://github.com/tejon/aeson-yak"; description = "Handle JSON that may or may not be a list, or exist"; license = stdenv.lib.licenses.mit; @@ -26054,6 +26140,7 @@ self: { aivika aivika-experiment array base Chart colour containers data-default-class filepath lens mtl split ]; + jailbreak = true; homepage = "http://github.com/dsorokin/aivika-experiment-chart"; description = "Simulation experiments with charting for the Aivika library"; license = stdenv.lib.licenses.bsd3; @@ -38345,7 +38432,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "atom-conduit" = callPackage + "atom-conduit_0_3_1_1" = callPackage ({ mkDerivation, base, conduit, conduit-parse, data-default , exceptions, foldl, hlint, lens-simple, mono-traversable, parsers , quickcheck-instances, resourcet, tasty, tasty-hunit @@ -38356,6 +38443,36 @@ self: { pname = "atom-conduit"; version = "0.3.1.1"; sha256 = "d0603a5a726fade01a9fe6c5859d81c6f53d8770dc0db8b889e2717e63a3d2b3"; + revision = "1"; + editedCabalFile = "8ebc45eae1c2408eb475b62923c8801b07abe999d107f3d9b22ec22c2e8c1dad"; + libraryHaskellDepends = [ + base conduit conduit-parse exceptions foldl lens-simple + mono-traversable parsers text time timerep uri-bytestring + xml-conduit xml-conduit-parse xml-types + ]; + testHaskellDepends = [ + base conduit conduit-parse data-default exceptions hlint + lens-simple mono-traversable parsers quickcheck-instances resourcet + tasty tasty-hunit tasty-quickcheck text time uri-bytestring + xml-conduit xml-conduit-parse xml-types + ]; + jailbreak = true; + description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287)."; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "atom-conduit" = callPackage + ({ mkDerivation, base, conduit, conduit-parse, data-default + , exceptions, foldl, hlint, lens-simple, mono-traversable, parsers + , quickcheck-instances, resourcet, tasty, tasty-hunit + , tasty-quickcheck, text, time, timerep, uri-bytestring + , xml-conduit, xml-conduit-parse, xml-types + }: + mkDerivation { + pname = "atom-conduit"; + version = "0.3.1.2"; + sha256 = "ab469b789cd81a5dab366c367a5b86a073e7cfc8fbb1a978d3107441795f7a22"; libraryHaskellDepends = [ base conduit conduit-parse exceptions foldl lens-simple mono-traversable parsers text time timerep uri-bytestring @@ -40141,6 +40258,7 @@ self: { mtl QuickCheck quickcheck-instances resourcet tagged tasty tasty-quickcheck text time transformers transformers-base ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/aristidb/aws"; description = "Amazon Web Services (AWS) for Haskell"; @@ -43482,15 +43600,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary_0_8_4_0" = callPackage + "binary_0_8_4_1" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.8.4.0"; - sha256 = "d7a672366741152365a2c1e67525dc08bf606a4a8cae06f58c7f51a2e43f9018"; + version = "0.8.4.1"; + sha256 = "8d13c700fe96c84644a2af37003f488668fe9cd1f8e5b316fc929de26ce7e7ba"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -45595,18 +45713,19 @@ self: { "bitcoin-payment-channel" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, base58string - , base64-bytestring, binary, bytestring, cereal, haskoin-core - , hexstring, QuickCheck, scientific, text, time + , base64-bytestring, binary, bytestring, cereal, errors + , haskoin-core, hexstring, QuickCheck, scientific, text, time }: mkDerivation { pname = "bitcoin-payment-channel"; - version = "0.1.1.3"; - sha256 = "3d597ad214a159e3ddfac79d169f06463bafa54428c2e2dfcee0236f00126aae"; + version = "0.2.0.0"; + sha256 = "0bfb82323eaf0064990c17cd2e544416c8e8dfe71749b01a86fca51eaa1d6dc1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base base16-bytestring base58string base64-bytestring binary - bytestring cereal haskoin-core hexstring scientific text time + bytestring cereal errors haskoin-core hexstring scientific text + time ]; executableHaskellDepends = [ aeson base base16-bytestring base58string base64-bytestring binary @@ -46011,18 +46130,19 @@ self: { }) {}; "bitx-bitcoin" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest, hspec - , http-client, http-client-tls, http-types, microlens, microlens-th - , network, QuickCheck, safe, scientific, split, text, time + ({ mkDerivation, aeson, base, bytestring, directory, doctest + , exceptions, hspec, http-client, http-client-tls, http-types + , microlens, microlens-th, network, QuickCheck, safe, scientific + , split, text, time }: mkDerivation { pname = "bitx-bitcoin"; - version = "0.9.0.0"; - sha256 = "9360e11c943707a18339273346e0d4ce84dd247ea9ca503d2143eb210113cf05"; + version = "0.9.0.1"; + sha256 = "5a0b9076aafd4ad9939891df0251c8bfaed687d12f4bcb21f46e3a5f85ffd332"; libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - microlens microlens-th network QuickCheck scientific split text - time + aeson base bytestring exceptions http-client http-client-tls + http-types microlens microlens-th network QuickCheck scientific + split text time ]; testHaskellDepends = [ aeson base bytestring directory doctest hspec http-client @@ -47145,22 +47265,23 @@ self: { }) {}; "bloodhound-amazonka-auth" = callPackage - ({ mkDerivation, amazonka-core, amazonka-elasticsearch, base - , bloodhound, exceptions, http-client, http-types, tasty - , tasty-hunit, time, transformers, uri-bytestring + ({ mkDerivation, aeson, amazonka, amazonka-core + , amazonka-elasticsearch, base, bloodhound, exceptions, http-client + , http-client-tls, http-types, lens, retry, tasty, tasty-hunit + , text, time, transformers, uri-bytestring }: mkDerivation { pname = "bloodhound-amazonka-auth"; - version = "0.1.0.0"; - sha256 = "8a0bff2793fe8493e3d6239b43da5b15c1d31bfec71cad6bac0b20f0fd57c297"; + version = "0.1.1.0"; + sha256 = "cf92a14be0e0d5552f2b00cdb19ab320f93ae612b92589999b674a3984858504"; libraryHaskellDepends = [ amazonka-core amazonka-elasticsearch base bloodhound exceptions http-client http-types time transformers uri-bytestring ]; testHaskellDepends = [ - amazonka-core base http-client tasty tasty-hunit time + aeson amazonka amazonka-core base bloodhound http-client + http-client-tls lens retry tasty tasty-hunit text time ]; - jailbreak = true; homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme"; description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; license = stdenv.lib.licenses.bsd3; @@ -48192,7 +48313,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "broadcast-chan" = callPackage + "broadcast-chan_0_1_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "broadcast-chan"; @@ -48202,6 +48323,19 @@ self: { homepage = "https://github.com/merijn/broadcast-chan"; description = "Broadcast channel type that avoids 0 reader space leaks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "broadcast-chan" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "broadcast-chan"; + version = "0.1.1"; + sha256 = "ad5bd65a301aff6df38c4111f02e73cce3bcfed7bfae6c66c2e70310f1e985f2"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/merijn/broadcast-chan"; + description = "Broadcast channel type that avoids 0 reader space leaks"; + license = stdenv.lib.licenses.bsd3; }) {}; "broccoli" = callPackage @@ -50592,34 +50726,6 @@ self: { }) {}; "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory - , extra, filepath, ghc-prim, mtl, process, template-haskell - , temporary, transformers, unix, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "0.7.0.1"; - sha256 = "4c158f81ad325a0b2bfd5bfec149851f59837fd73775c8b4da0050bdeca0182d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal directory filepath ghc-prim mtl process transformers - ]; - executableHaskellDepends = [ - base bytestring Cabal directory filepath ghc-prim process - template-haskell temporary transformers utf8-string - ]; - testHaskellDepends = [ - base bytestring Cabal directory extra filepath ghc-prim mtl process - template-haskell temporary transformers unix utf8-string - ]; - testToolDepends = [ cabal-install ]; - doCheck = false; - description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; - license = stdenv.lib.licenses.agpl3; - }) {}; - - "cabal-helper_0_7_1_0" = callPackage ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory , extra, filepath, ghc-prim, mtl, process, template-haskell , temporary, transformers, unix, utf8-string @@ -50628,8 +50734,8 @@ self: { pname = "cabal-helper"; version = "0.7.1.0"; sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f"; - revision = "1"; - editedCabalFile = "1d0a9e90761cbdc1804e396eeb3bf10ae5663f5b3ce637a5f80238b4f04ed5cd"; + revision = "2"; + editedCabalFile = "b84eff37825d78f316e9712e175937b54b35d7c67eed8741a3db160800fbd177"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -50644,11 +50750,9 @@ self: { template-haskell temporary transformers unix utf8-string ]; testToolDepends = [ cabal-install ]; - jailbreak = true; doCheck = false; description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-info" = callPackage @@ -52507,28 +52611,37 @@ self: { }) {}; "camfort" = callPackage - ({ mkDerivation, alex, array, base, comonad, containers, directory - , fclabels, generic-deriving, happy, haskell-src, hmatrix - , language-fortran, matrix, mtl, syb, syz, template-haskell, text - , transformers, uniplate, vector + ({ mkDerivation, alex, array, base, bytestring, comonad, containers + , directory, fclabels, fgl, filepath, fortran-src, generic-deriving + , GenericPretty, ghc-prim, happy, haskell-src, hmatrix, hspec + , language-fortran, matrix, mtl, QuickCheck, regex-base, regex-pcre + , syb, syz, template-haskell, text, transformers, uniplate, vector }: mkDerivation { pname = "camfort"; - version = "0.700"; - sha256 = "f5978dfbc1af77fc7fb0ff0190fae5d58f797301acbec7115ce66ab146913151"; + version = "0.800"; + sha256 = "353634acb37e99cda4f747fc61309583c9c556b9eec579db79dd089c0202a450"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array base comonad containers directory fclabels generic-deriving + array base bytestring comonad containers directory fclabels fgl + filepath fortran-src generic-deriving GenericPretty ghc-prim haskell-src hmatrix language-fortran matrix mtl syb syz template-haskell text transformers uniplate vector ]; libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ - array base comonad containers directory fclabels generic-deriving - haskell-src hmatrix language-fortran matrix mtl syb syz - template-haskell text transformers uniplate vector + array base bytestring comonad containers directory fclabels fgl + filepath fortran-src generic-deriving GenericPretty ghc-prim + haskell-src hmatrix language-fortran matrix mtl QuickCheck + regex-base regex-pcre syb syz template-haskell text transformers + uniplate vector ]; + testHaskellDepends = [ + base bytestring containers directory filepath fortran-src hspec mtl + QuickCheck uniplate + ]; + jailbreak = true; description = "CamFort - Cambridge Fortran infrastructure"; license = stdenv.lib.licenses.asl20; hydraPlatforms = [ "x86_64-darwin" ]; @@ -54321,6 +54434,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "cereal-io-streams" = callPackage + ({ mkDerivation, base, bytestring, cereal, derive, HUnit + , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "cereal-io-streams"; + version = "0.0.1.0"; + sha256 = "b32bb775ec6f93fcc7246b5903473c893995b45d11f82c29913a20f459e568f1"; + libraryHaskellDepends = [ base bytestring cereal io-streams ]; + testHaskellDepends = [ + base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty + tasty-hunit tasty-quickcheck + ]; + description = "io-streams support for the cereal binary serialization library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cereal-plus" = callPackage ({ mkDerivation, array, base, bytestring, cereal, containers , errors, hashable, hashtables, HTF, HUnit, mmorph, mtl, QuickCheck @@ -54347,6 +54477,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "cereal-streams" = callPackage + ({ mkDerivation, base, bytestring, cereal, derive, HUnit + , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "cereal-streams"; + version = "0.0.1.0"; + sha256 = "f2f7852ee6a64bfe8d526ee46d178973a58079c8a3f8390f2a367546b4d8b7cc"; + libraryHaskellDepends = [ base bytestring cereal io-streams ]; + testHaskellDepends = [ + base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty + tasty-hunit tasty-quickcheck + ]; + description = "Use cereal to encode/decode io-streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cereal-text" = callPackage ({ mkDerivation, base, cereal, text }: mkDerivation { @@ -54599,20 +54746,20 @@ self: { ({ mkDerivation, ansi-terminal, array, async, base, bytestring , cmdargs, containers, directory, dlist, either, filepath, ghc-prim , mtl, process, regex-base, regex-pcre, regex-posix, safe, split - , stm, stringsearch, transformers, unix-compat - , unordered-containers + , stm, stringsearch, transformers, unicode-show, unix-compat + , unordered-containers, utf8-string }: mkDerivation { pname = "cgrep"; - version = "6.6.15"; - sha256 = "f58a557fecdc7066ec60653e7c902b8baedcf4f44a81f890265374b6dab9affa"; + version = "6.6.16"; + sha256 = "7161e331f409ee95abfab14f720ad300ce4c9bd37a9fae74de6643c0f30b134b"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ ansi-terminal array async base bytestring cmdargs containers directory dlist either filepath ghc-prim mtl process regex-base regex-pcre regex-posix safe split stm stringsearch transformers - unix-compat unordered-containers + unicode-show unix-compat unordered-containers utf8-string ]; homepage = "http://awgn.github.io/cgrep/"; description = "Command line tool"; @@ -56029,14 +56176,13 @@ self: { }: mkDerivation { pname = "clang-pure"; - version = "0.1.0.0"; - sha256 = "7c5cfef49732236bc6d6da95b89087c07447d9bf235c032c16c7e6850a747b08"; + version = "0.1.0.1"; + sha256 = "9beb6dd2d0a21a4057a0372d5fc9da2984ffc455bd24ed3c93c7b4ba7ec20900"; libraryHaskellDepends = [ base bytestring containers contravariant inline-c stm template-haskell vector ]; librarySystemDepends = [ clang ]; - jailbreak = true; description = "Pure C++ code analysis with libclang"; license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; @@ -56859,8 +57005,8 @@ self: { pname = "clash-prelude"; version = "0.10.9"; sha256 = "4a96fa9222427df9b515c343d0db6f53441c710141a09a344ee47ab30ebacee1"; - revision = "1"; - editedCabalFile = "60f4e89dd73b84c4798fc7fd7f52d58afd7eb3069b5d41994fb3d43be4eb40f5"; + revision = "2"; + editedCabalFile = "966a6c0c7d74ee6932671fc44d7cd1d809ef6a11523ff5caf4c4a9c13583cb80"; libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection @@ -58539,7 +58685,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; - "clckwrks" = callPackage + "clckwrks_0_23_16" = callPackage ({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base , blaze-html, bytestring, cereal, containers, directory, filepath , happstack-authenticate, happstack-hsp, happstack-jmacro @@ -58567,6 +58713,41 @@ self: { web-routes-happstack web-routes-hsp web-routes-th xss-sanitize ]; librarySystemDepends = [ openssl ]; + jailbreak = true; + homepage = "http://www.clckwrks.com/"; + description = "A secure, reliable content management system (CMS) and blogging platform"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) openssl;}; + + "clckwrks" = callPackage + ({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base + , blaze-html, bytestring, cereal, containers, directory, filepath + , happstack-authenticate, happstack-hsp, happstack-jmacro + , happstack-server, happstack-server-tls, hsp, hsx-jmacro, hsx2hs + , ixset, jmacro, lens, mtl, network, network-uri, old-locale + , openssl, process, random, reform, reform-happstack, reform-hsp + , safecopy, stm, text, time, time-locale-compat + , unordered-containers, userid, utf8-string, uuid-orphans + , uuid-types, vector, web-plugins, web-routes, web-routes-happstack + , web-routes-hsp, web-routes-th, xss-sanitize + }: + mkDerivation { + pname = "clckwrks"; + version = "0.23.17"; + sha256 = "ac6134a2b6a54d08aadda1fa2251120fb034238397199c62fc50d980d143b08d"; + libraryHaskellDepends = [ + acid-state aeson aeson-qq attoparsec base blaze-html bytestring + cereal containers directory filepath happstack-authenticate + happstack-hsp happstack-jmacro happstack-server + happstack-server-tls hsp hsx-jmacro hsx2hs ixset jmacro lens mtl + network network-uri old-locale process random reform + reform-happstack reform-hsp safecopy stm text time + time-locale-compat unordered-containers userid utf8-string + uuid-orphans uuid-types vector web-plugins web-routes + web-routes-happstack web-routes-hsp web-routes-th xss-sanitize + ]; + librarySystemDepends = [ openssl ]; homepage = "http://www.clckwrks.com/"; description = "A secure, reliable content management system (CMS) and blogging platform"; license = stdenv.lib.licenses.bsd3; @@ -58979,7 +59160,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clientsession" = callPackage + "clientsession_0_9_1_1" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, cereal , cipher-aes, containers, cprng-aes, crypto-api, crypto-random , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein @@ -59003,6 +59184,33 @@ self: { homepage = "http://github.com/yesodweb/clientsession/tree/master"; description = "Securely store session data in a client-side cookie"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clientsession" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, cereal + , cipher-aes, containers, cprng-aes, crypto-api, crypto-random + , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein + , tagged, transformers + }: + mkDerivation { + pname = "clientsession"; + version = "0.9.1.2"; + sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base64-bytestring bytestring cereal cipher-aes cprng-aes + crypto-api crypto-random directory entropy setenv skein tagged + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base bytestring cereal containers hspec HUnit QuickCheck + transformers + ]; + homepage = "http://github.com/yesodweb/clientsession/tree/master"; + description = "Securely store session data in a client-side cookie"; + license = stdenv.lib.licenses.mit; }) {}; "clifford" = callPackage @@ -64810,7 +65018,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cookie" = callPackage + "cookie_0_4_2" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty , tasty-hunit, tasty-quickcheck, text, time @@ -64830,6 +65038,29 @@ self: { homepage = "http://github.com/snoyberg/cookie"; description = "HTTP cookie parsing and rendering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cookie" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring + , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty + , tasty-hunit, tasty-quickcheck, text, time + }: + mkDerivation { + pname = "cookie"; + version = "0.4.2.1"; + sha256 = "06413091908e20ce154effdcd354d7eea1447380e29a8acdb15c3347512852e4"; + libraryHaskellDepends = [ + base blaze-builder bytestring data-default-class deepseq old-locale + text time + ]; + testHaskellDepends = [ + base blaze-builder bytestring HUnit QuickCheck tasty tasty-hunit + tasty-quickcheck text time + ]; + homepage = "http://github.com/snoyberg/cookie"; + description = "HTTP cookie parsing and rendering"; + license = stdenv.lib.licenses.mit; }) {}; "coordinate" = callPackage @@ -64838,8 +65069,8 @@ self: { }: mkDerivation { pname = "coordinate"; - version = "0.1.1"; - sha256 = "78bf22add331dead9d2fc3ea4c0f626d821462c47bae72be8833282e9455e7ca"; + version = "0.1.2"; + sha256 = "dba23e66c6669344571ee24b7ce65b3817241a4211e608cfb879daa4e5dbf052"; libraryHaskellDepends = [ base lens transformers ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell @@ -65343,7 +65574,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "courier" = callPackage + "courier_0_1_1_2" = callPackage ({ mkDerivation, async, base, bytestring, cereal, containers , directory, hslogger, HUnit, network, stm, test-framework , test-framework-hunit, text, uuid @@ -65366,6 +65597,32 @@ self: { homepage = "http://github.com/hargettp/courier"; description = "A message-passing library for simplifying network applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "courier" = callPackage + ({ mkDerivation, async, base, bytestring, cereal, containers + , directory, hslogger, HUnit, network, stm, test-framework + , test-framework-hunit, text, uuid + }: + mkDerivation { + pname = "courier"; + version = "0.1.1.3"; + sha256 = "0cf44b62c2b134a7bf9aa779ef2b04d91f4b44a46273bb478ecdcbd9d1198e83"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base bytestring cereal containers hslogger network stm text + uuid + ]; + executableHaskellDepends = [ base cereal ]; + testHaskellDepends = [ + async base cereal containers directory hslogger HUnit network stm + test-framework test-framework-hunit + ]; + homepage = "http://github.com/hargettp/courier"; + description = "A message-passing library for simplifying network applications"; + license = stdenv.lib.licenses.mit; }) {}; "court" = callPackage @@ -67885,7 +68142,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "css-text" = callPackage + "css-text_0_1_2_1" = callPackage ({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }: mkDerivation { pname = "css-text"; @@ -67896,6 +68153,21 @@ self: { homepage = "http://www.yesodweb.com/"; description = "CSS parser and renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "css-text" = callPackage + ({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }: + mkDerivation { + pname = "css-text"; + version = "0.1.2.2"; + sha256 = "dff564ac08587950dab4fedf07c357d9907099f60c87bf465d648a8965e61987"; + libraryHaskellDepends = [ attoparsec base text ]; + testHaskellDepends = [ attoparsec base hspec QuickCheck text ]; + doCheck = false; + homepage = "http://www.yesodweb.com/"; + description = "CSS parser and renderer"; + license = stdenv.lib.licenses.mit; }) {}; "csv" = callPackage @@ -69498,24 +69770,6 @@ self: { }) {}; "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-base, data-default-instances-containers - , data-default-instances-dlist, data-default-instances-old-locale - }: - mkDerivation { - pname = "data-default"; - version = "0.6.0"; - sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-base - data-default-instances-containers data-default-instances-dlist - data-default-instances-old-locale - ]; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "data-default_0_7_1_1" = callPackage ({ mkDerivation, base, data-default-class , data-default-instances-containers, data-default-instances-dlist , data-default-instances-old-locale @@ -69528,24 +69782,23 @@ self: { base data-default-class data-default-instances-containers data-default-instances-dlist data-default-instances-old-locale ]; - jailbreak = true; + description = "A class for types with a default value"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "data-default-class_0_0_1" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "data-default-class"; + version = "0.0.1"; + sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31"; + libraryHaskellDepends = [ base ]; description = "A class for types with a default value"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default-class" = callPackage - ({ mkDerivation, base }: - mkDerivation { - pname = "data-default-class"; - version = "0.0.1"; - sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31"; - libraryHaskellDepends = [ base ]; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "data-default-class_0_1_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "data-default-class"; @@ -69554,7 +69807,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A class for types with a default value"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default-extra" = callPackage @@ -69619,7 +69871,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "data-default-instances-base" = callPackage + "data-default-instances-base_0_1_0" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { pname = "data-default-instances-base"; @@ -69628,19 +69880,18 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Default instances for types in base"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "data-default-instances-base_0_1_0_1" = callPackage + "data-default-instances-base" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { pname = "data-default-instances-base"; version = "0.1.0.1"; sha256 = "844fe453f674b6b0998da804465914abce8936c5e640d8bb8bff37ad07d7a17a"; libraryHaskellDepends = [ base data-default-class ]; - jailbreak = true; description = "Default instances for types in base"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default-instances-bytestring" = callPackage @@ -69650,6 +69901,7 @@ self: { version = "0.0.1"; sha256 = "4c431278d0dc1054fd531281db70d8615f88d9b2a29924aba2567fb3cf647220"; libraryHaskellDepends = [ base bytestring data-default-class ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for (lazy and strict) ByteString, Builder and ShortByteString"; license = stdenv.lib.licenses.bsd3; @@ -69662,6 +69914,7 @@ self: { version = "0.0.1"; sha256 = "430135708ad9d0730a4c3a3d1eb574bdc6f07547a5a9c5f30202e1e786070ab4"; libraryHaskellDepends = [ case-insensitive data-default-class ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instance for CI type from case-insensitive package"; license = stdenv.lib.licenses.bsd3; @@ -69724,6 +69977,7 @@ self: { version = "0.0.1"; sha256 = "db5d4c46cf36ce5956ffd0affe0f2c48e1c000b9bd61821d3e6c1b0171060cdf"; libraryHaskellDepends = [ base data-default-class text ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for (lazy and strict) Text and Text Builder"; license = stdenv.lib.licenses.bsd3; @@ -69738,6 +69992,7 @@ self: { libraryHaskellDepends = [ data-default-class unordered-containers ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for unordered-containers"; license = stdenv.lib.licenses.bsd3; @@ -69750,6 +70005,7 @@ self: { version = "0.0.1"; sha256 = "9ac84473a3af8b0c5e795ea5f84a34a0c18c3b2d5e17ce428206203f9d794666"; libraryHaskellDepends = [ data-default-class vector ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for types defined in vector package"; license = stdenv.lib.licenses.bsd3; @@ -69817,6 +70073,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "data-elf" = callPackage + ({ mkDerivation, base, binary, bytestring, data-endian, data-flags + , data-sword, text-latin1 + }: + mkDerivation { + pname = "data-elf"; + version = "0.1.0.1"; + sha256 = "33f6f3508721bafabb5cc2d1f04b262964e178883d7dbcbe3feeb8cc069e5df9"; + libraryHaskellDepends = [ + base binary bytestring data-endian data-flags data-sword + text-latin1 + ]; + homepage = "https://github.com/mvv/data-elf"; + description = "Executable and Linkable Format (ELF) data structures"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "data-embed" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, directory , executable-path, hashable, utf8-string @@ -69845,8 +70118,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "data-endian"; - version = "0.1"; - sha256 = "39b84a6b516c8d7e0fdb72ed16a77f87bae9fcffb9c9437797d406de47bb9b46"; + version = "0.1.1"; + sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/mvv/data-endian"; description = "Endian-sensitive data"; @@ -69957,9 +70230,10 @@ self: { ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "data-flags"; - version = "0.0.3.1"; - sha256 = "45bfa0c14b4e31364c5b7c70bf19f1ee3aa6ae692e08e7a70b56668503970de8"; + version = "0.0.3.2"; + sha256 = "9e8944d63a314a116d1cc8ecb115ad0ea8dabd5ccb84dbbefd332e641430794a"; libraryHaskellDepends = [ base template-haskell ]; + homepage = "https://github.com/mvv/data-flags"; description = "A package for working with bit masks and flags in general"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -70633,6 +70907,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "data-sword" = callPackage + ({ mkDerivation, base, data-bword, hashable, tasty + , tasty-quickcheck, template-haskell + }: + mkDerivation { + pname = "data-sword"; + version = "0.1.1"; + sha256 = "9fa52df57b18f0086a0a5e718221357e7f2a23917252648ec6b66c222ae6ce88"; + libraryHaskellDepends = [ + base data-bword hashable template-haskell + ]; + testHaskellDepends = [ base tasty tasty-quickcheck ]; + homepage = "https://github.com/mvv/data-sword"; + description = "Shorter binary words"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "data-tensor" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -71659,8 +71950,8 @@ self: { }: mkDerivation { pname = "dead-code-detection"; - version = "0.8"; - sha256 = "8eadc01d4df3100697b3b4f93d8253c417f851a320c2bfc2ea6362f7937b1c03"; + version = "0.8.1"; + sha256 = "6b69771ae3dac21d73ccd6fbb145dac98cf3f661787f2c59ecd6ee26726bc1fb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -71810,17 +72101,17 @@ self: { }) {}; "debian-build" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, split + ({ mkDerivation, base, directory, filepath, process, split , transformers }: mkDerivation { pname = "debian-build"; - version = "0.10.0.0"; - sha256 = "3fd611276d30ea91f6d5f776f5726a3e7be702859027118639c31169597eff54"; + version = "0.10.1.0"; + sha256 = "a41033dee53346bda2f77a4192f85b54dbe3d25ef9b1fd158fdc09b4411e90b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base Cabal directory filepath process split transformers + base directory filepath process split transformers ]; executableHaskellDepends = [ base filepath transformers ]; homepage = "http://twitter.com/khibino/"; @@ -73166,8 +73457,8 @@ self: { }: mkDerivation { pname = "deriving-compat"; - version = "0.2.2"; - sha256 = "0acf6caf0c0737c7aa0424544a54b54c3ab36310576ad404d13c73824136f7c8"; + version = "0.3"; + sha256 = "14d1921e1046ca9802dc1cc62e1343d6d8ea6ea9056b8245b57cfaf85ee408ea"; libraryHaskellDepends = [ base containers ghc-boot-th ghc-prim template-haskell transformers transformers-compat @@ -74557,8 +74848,8 @@ self: { }: mkDerivation { pname = "diagrams-graphviz"; - version = "1.3.0.1"; - sha256 = "1d2ec9533aaac6a429eac9750fd7e5fc7a21d18223010067ebeae60c0d95da05"; + version = "1.3.1"; + sha256 = "09ae6f6d08d3ed43f6f6bf711e3749f1979b2e2e6976cbd7da05bd2a8f0d6a04"; libraryHaskellDepends = [ base containers diagrams-lib fgl graphviz split ]; @@ -75564,6 +75855,7 @@ self: { libraryHaskellDepends = [ base data-default-class diagrams-lib lens ]; + jailbreak = true; homepage = "https://github.com/timjb/rubiks-cube"; description = "Library for drawing the Rubik's Cube"; license = stdenv.lib.licenses.mit; @@ -76501,8 +76793,8 @@ self: { ({ mkDerivation, base, QuickCheck }: mkDerivation { pname = "digits"; - version = "0.3"; - sha256 = "311474db49718cdb9d5dfb91a472456ee9d90eeb34b3439c63d94734792508c6"; + version = "0.3.1"; + sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; libraryHaskellDepends = [ base QuickCheck ]; testHaskellDepends = [ base QuickCheck ]; description = "Converts integers to lists of digits and back"; @@ -78266,7 +78558,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diversity" = callPackage + "diversity_0_8_0_0" = callPackage ({ mkDerivation, base, containers, data-ordlist, fasta , math-functions, MonadRandom, optparse-applicative, parsec, pipes , random-shuffle, scientific, split @@ -78287,6 +78579,30 @@ self: { homepage = "https://github.com/GregorySchwartz/diversity"; description = "Quantify the diversity of a population"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diversity" = callPackage + ({ mkDerivation, base, containers, data-ordlist, fasta + , math-functions, MonadRandom, optparse-applicative, parsec, pipes + , random-shuffle, scientific, split + }: + mkDerivation { + pname = "diversity"; + version = "0.8.0.1"; + sha256 = "06ee80a100424346e725777467173198a574d1df354cfd0051b0ee2983c1feba"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers data-ordlist fasta math-functions MonadRandom + parsec random-shuffle scientific split + ]; + executableHaskellDepends = [ + base containers fasta optparse-applicative pipes + ]; + homepage = "https://github.com/GregorySchwartz/diversity"; + description = "Quantify the diversity of a population"; + license = stdenv.lib.licenses.gpl3; }) {}; "dixi_0_6_0_2" = callPackage @@ -79493,6 +79809,7 @@ self: { revision = "1"; editedCabalFile = "7e6df1d4f39879e9b031c8ff5e2f6fd5be3729cc40f7515e117ac0b47ed3f675"; libraryHaskellDepends = [ base bytestring curl feed tagsoup xml ]; + jailbreak = true; homepage = "http://code.haskell.org/~dons/code/download-curl"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; @@ -80868,12 +81185,11 @@ self: { }: mkDerivation { pname = "easyrender"; - version = "0.1.1.0"; - sha256 = "eb0ca0d7622c7aed65787e92eb2c627a9e7153aaa4afc9f9981f6d4b7c020ec4"; + version = "0.1.1.1"; + sha256 = "ad303ad4bc4f746564b32fe587a9c0290af2c2173a9370ec42a8b4dcdacbfe63"; libraryHaskellDepends = [ base bytestring containers mtl superdoc zlib ]; - jailbreak = true; homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/"; description = "User-friendly creation of EPS, PostScript, and PDF files"; license = stdenv.lib.licenses.gpl3; @@ -82543,8 +82859,8 @@ self: { }: mkDerivation { pname = "elm-export"; - version = "0.3.0.2"; - sha256 = "f89797336f6a8d2d54e1015fabc0ab3f45e8ef8a3b7d7419694dd8144fb5a646"; + version = "0.4.0.1"; + sha256 = "9aa94c4d0ed01a6f6344778eee2e87b6489fc9ddd1de87154acb2be67fb7b79e"; libraryHaskellDepends = [ base bytestring containers directory mtl text time ]; @@ -83193,6 +83509,7 @@ self: { libraryHaskellDepends = [ base between data-default-class mtl transformers ]; + jailbreak = true; homepage = "https://github.com/trskop/endo"; description = "Endomorphism utilities"; license = stdenv.lib.licenses.bsd3; @@ -87025,8 +87342,8 @@ self: { }: mkDerivation { pname = "fast-digits"; - version = "0.2.0.0"; - sha256 = "b5e050775cf9cfffac1adc90ded981b5fbc56be903984aecacc138ac62e98c33"; + version = "0.2.1.0"; + sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; libraryHaskellDepends = [ base integer-gmp ]; testHaskellDepends = [ base digits QuickCheck smallcheck tasty tasty-quickcheck @@ -87278,7 +87595,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fasta" = callPackage + "fasta_0_10_2_0" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, foldl , lens, parsec, pipes, pipes-attoparsec, pipes-bytestring , pipes-group, pipes-text, split, text @@ -87294,17 +87611,18 @@ self: { homepage = "https://github.com/GregorySchwartz/fasta"; description = "A simple, mindless parser for fasta files"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fasta_0_10_3_0" = callPackage + "fasta" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, foldl , lens, parsec, pipes, pipes-attoparsec, pipes-bytestring , pipes-group, pipes-text, split, text }: mkDerivation { pname = "fasta"; - version = "0.10.3.0"; - sha256 = "31db040cf5c4ea1fb1aed11b327ffec9faf8f39344362d53472f57eeb8e20e40"; + version = "0.10.4.0"; + sha256 = "d37616f6107834ce47cc57163e9dddda055ef13b0400d74d6e77cbdd249f69da"; libraryHaskellDepends = [ attoparsec base bytestring containers foldl lens parsec pipes pipes-attoparsec pipes-bytestring pipes-group pipes-text split text @@ -87312,7 +87630,6 @@ self: { homepage = "https://github.com/GregorySchwartz/fasta"; description = "A simple, mindless parser for fasta files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fastbayes" = callPackage @@ -88690,8 +89007,8 @@ self: { }: mkDerivation { pname = "feed-gipeda"; - version = "0.1.0.1"; - sha256 = "18be33291fc74c0ab18c8897e97f3811cb4e1e1f8fd11e084a49554d3696aa52"; + version = "0.1.0.2"; + sha256 = "609d0214ca1bbe773bb61af6c9f8ab779b0afedd612fbb3cdb467ded032d5ebf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -92011,6 +92328,7 @@ self: { libraryHaskellDepends = [ base containers data-default-class lens linear ]; + jailbreak = true; description = "Simple force-directed layout"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -92400,6 +92718,32 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "fortran-src" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers, fgl + , GenericPretty, happy, hspec, mtl, pretty, text, uniplate + }: + mkDerivation { + pname = "fortran-src"; + version = "0.1.0.0"; + sha256 = "bfe476623599655d58d3a26c77ca17503c512eb1470fb1a39add1e8fd5f1120a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring containers fgl GenericPretty mtl pretty text + uniplate + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ + array base bytestring containers fgl GenericPretty mtl pretty text + uniplate + ]; + testHaskellDepends = [ + array base bytestring containers fgl hspec mtl text uniplate + ]; + description = "Parser and anlyses for Fortran standards 66, 77, 90"; + license = stdenv.lib.licenses.asl20; + }) {}; + "foscam-directory" = callPackage ({ mkDerivation, base, directory, doctest, filepath , foscam-filename, lens, pretty, QuickCheck, template-haskell @@ -95011,7 +95355,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "generic-deriving" = callPackage + "generic-deriving_1_10_5" = callPackage ({ mkDerivation, base, containers, ghc-prim, template-haskell }: mkDerivation { pname = "generic-deriving"; @@ -95023,6 +95367,21 @@ self: { homepage = "https://github.com/dreixel/generic-deriving"; description = "Generic programming library for generalised deriving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "generic-deriving" = callPackage + ({ mkDerivation, base, containers, ghc-prim, template-haskell }: + mkDerivation { + pname = "generic-deriving"; + version = "1.10.6"; + sha256 = "be129ff66c91e2e17c62e304c0f30e5e654dc7a1d9a71beaba3219a9f5d1c2fe"; + libraryHaskellDepends = [ + base containers ghc-prim template-haskell + ]; + homepage = "https://github.com/dreixel/generic-deriving"; + description = "Generic programming library for generalised deriving"; + license = stdenv.lib.licenses.bsd3; }) {}; "generic-lucid-scaffold" = callPackage @@ -95387,7 +95746,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "generics-sop" = callPackage + "generics-sop_0_2_1_0" = callPackage ({ mkDerivation, base, ghc-prim, template-haskell }: mkDerivation { pname = "generics-sop"; @@ -95397,16 +95756,27 @@ self: { testHaskellDepends = [ base ]; description = "Generic Programming using True Sums of Products"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "generics-sop" = callPackage + ({ mkDerivation, base, ghc-prim, template-haskell }: + mkDerivation { + pname = "generics-sop"; + version = "0.2.2.0"; + sha256 = "3509e6fd5d9e1337691a88bb7941731f03cf93a42f12a6227dd1a5def9616220"; + libraryHaskellDepends = [ base ghc-prim template-haskell ]; + testHaskellDepends = [ base ]; + description = "Generic Programming using True Sums of Products"; + license = stdenv.lib.licenses.bsd3; }) {}; "generics-sop-lens" = callPackage ({ mkDerivation, base, generics-sop, lens }: mkDerivation { pname = "generics-sop-lens"; - version = "0.1.1.0"; - sha256 = "77dad1fc8dc9a9e7bd049a46ea4917b5d6e6b1d22a7194f67965126717cfd360"; - revision = "1"; - editedCabalFile = "fc41f76ff2763343ea54274f64907f4343abe3f195a4b271149a524023cfcea0"; + version = "0.1.2.0"; + sha256 = "bafd04f0238e19d73da60ae018c1c82cb3e4be49990c61a6049dec2dafff40f6"; libraryHaskellDepends = [ base generics-sop lens ]; homepage = "https://github.com/phadej/generics-sop-lens#readme"; description = "Lenses for types in generics-sop"; @@ -95624,6 +95994,48 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "genvalidity" = callPackage + ({ mkDerivation, base, QuickCheck, validity }: + mkDerivation { + pname = "genvalidity"; + version = "0.1.0.0"; + sha256 = "43477a35f12da4d8806b2a152bebb5da563c2cb442b720090597d604fe40c4f6"; + libraryHaskellDepends = [ base QuickCheck validity ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "Testing utilities for the validity library"; + license = stdenv.lib.licenses.mit; + }) {}; + + "genvalidity-containers" = callPackage + ({ mkDerivation, base, containers, genvalidity, QuickCheck + , validity + }: + mkDerivation { + pname = "genvalidity-containers"; + version = "0.1.0.0"; + sha256 = "2c44a1b1d0c7a0f9e6107da9fdc31f069d4211cc5cbd88e644edac38a2c6d164"; + libraryHaskellDepends = [ + base containers genvalidity QuickCheck validity + ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "GenValidity support for containers"; + license = stdenv.lib.licenses.mit; + }) {}; + + "genvalidity-hspec" = callPackage + ({ mkDerivation, base, genvalidity, hspec, QuickCheck, validity }: + mkDerivation { + pname = "genvalidity-hspec"; + version = "0.1.0.1"; + sha256 = "41f102071074cf13cc1635fc80fec7f562900191549b4f68dec24797ef7e6625"; + libraryHaskellDepends = [ + base genvalidity hspec QuickCheck validity + ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "Standard spec's for GenValidity instances"; + license = stdenv.lib.licenses.mit; + }) {}; + "geo-resolver" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder , bytestring, http-conduit, http-types, HUnit, QuickCheck @@ -95790,6 +96202,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "geolite-csv" = callPackage + ({ mkDerivation, base, colonnade, directory, HUnit, ip, pipes + , pipes-bytestring, pipes-text, siphon, test-framework + , test-framework-hunit, text + }: + mkDerivation { + pname = "geolite-csv"; + version = "0.1.0"; + sha256 = "c7c707f20c4f2f42f842bf18485a58555dc3dd62b8ef314cc54a10f003b2baa6"; + libraryHaskellDepends = [ base colonnade ip pipes siphon text ]; + testHaskellDepends = [ + base colonnade directory HUnit pipes pipes-bytestring pipes-text + siphon test-framework test-framework-hunit text + ]; + homepage = "https://github.com/andrewthad/colonnade"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "geom2d" = callPackage ({ mkDerivation, base, ieee754, linear, QuickCheck }: mkDerivation { @@ -96860,7 +97291,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-typelits-extra" = callPackage + "ghc-typelits-extra_0_1_1" = callPackage ({ mkDerivation, base, ghc, ghc-tcplugins-extra , ghc-typelits-natnormalise, tasty, tasty-hunit }: @@ -96875,6 +97306,26 @@ self: { homepage = "http://www.clash-lang.org/"; description = "Additional type-level operations on GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-typelits-extra" = callPackage + ({ mkDerivation, base, ghc, ghc-tcplugins-extra + , ghc-typelits-natnormalise, tasty, tasty-hunit, transformers + }: + mkDerivation { + pname = "ghc-typelits-extra"; + version = "0.1.2"; + sha256 = "cd054d68809ed73338469afcafacd3955f417edcce93c1ef69b3cd6104062019"; + libraryHaskellDepends = [ + base ghc ghc-tcplugins-extra transformers + ]; + testHaskellDepends = [ + base ghc-typelits-natnormalise tasty tasty-hunit + ]; + homepage = "http://www.clash-lang.org/"; + description = "Additional type-level operations on GHC.TypeLits.Nat"; + license = stdenv.lib.licenses.bsd2; }) {}; "ghc-typelits-natnormalise_0_3" = callPackage @@ -96924,7 +97375,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-typelits-natnormalise" = callPackage + "ghc-typelits-natnormalise_0_4_1" = callPackage ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit }: mkDerivation { @@ -96936,6 +97387,21 @@ self: { homepage = "http://www.clash-lang.org/"; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-typelits-natnormalise" = callPackage + ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit + }: + mkDerivation { + pname = "ghc-typelits-natnormalise"; + version = "0.4.2"; + sha256 = "b9eb8337e9643c0706352d148ad160edffc01a87f8df784efde71e15f93797a8"; + libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "http://www.clash-lang.org/"; + description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; + license = stdenv.lib.licenses.bsd2; }) {}; "ghc-vis" = callPackage @@ -97013,8 +97479,8 @@ self: { ({ mkDerivation, base, doctest, hspec, parsec }: mkDerivation { pname = "ghci-history-parser"; - version = "0.1.0.1"; - sha256 = "e84ecff3405aa1ad8b4e148648b7d0775f887b46de5adfdca18547f92243d0d2"; + version = "0.1.0.2"; + sha256 = "0e6d39875a54a7744fedd73103301d188ec291d9da2f7abc6c85b87143b1f068"; libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base doctest hspec parsec ]; description = "parse output of ghci \":history\" command"; @@ -98002,7 +98468,7 @@ self: { "gi-javascriptcore" = callPackage ({ mkDerivation, base, bytestring, containers, haskell-gi - , haskell-gi-base, javascriptcoregtk, text, transformers + , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk }: mkDerivation { pname = "gi-javascriptcore"; @@ -98012,17 +98478,18 @@ self: { base bytestring containers haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ javascriptcoregtk ]; + libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = [ "x86_64-darwin" ]; - }) {javascriptcoregtk = null;}; + }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;}; "gi-javascriptcore_4_0_6" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi - , haskell-gi-base, javascriptcoregtk, text, transformers + , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk }: mkDerivation { pname = "gi-javascriptcore"; @@ -98032,13 +98499,14 @@ self: { libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ javascriptcoregtk ]; + libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {javascriptcoregtk = null;}; + }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;}; "gi-notify" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf @@ -98313,6 +98781,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk-web-extension = null;}; + "giak" = callPackage + ({ mkDerivation, async, base, bytestring, Cabal, containers + , directory, extra, filemanip, filepath, mtl, process, semigroups + , stm, stm-chans, text, unix, wybor + }: + mkDerivation { + pname = "giak"; + version = "0.1.0.1"; + sha256 = "13cbbbec91cf23cc178843525c03cf5bba162842a8ddc4259ab3efdbe18b6073"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async base bytestring Cabal containers directory extra filemanip + filepath mtl process semigroups stm stm-chans text unix wybor + ]; + homepage = "http://github.com/nmattia/giak"; + description = "Fuzzy finder for cabal executables"; + license = stdenv.lib.licenses.mit; + }) {}; + "gimlh" = callPackage ({ mkDerivation, base, split }: mkDerivation { @@ -99664,6 +100152,7 @@ self: { base bytestring directory filepath hslogger HTTP mtl network network-uri syb url utf8-string ]; + jailbreak = true; homepage = "http://gitit.net"; description = "Wiki using happstack, git or darcs, and pandoc"; license = "GPL"; @@ -100834,8 +101323,8 @@ self: { ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }: mkDerivation { pname = "gloss-rendering"; - version = "1.10.2.1"; - sha256 = "850f3be265b9b350772530aa6a19cabbcd9b88490508d82cab8e79437dbf5ce3"; + version = "1.10.3.1"; + sha256 = "c39f51b8b026f717e9469716ec0afa17aa7804eb6794a3d0c3eb712b8d8404ba"; libraryHaskellDepends = [ base bmp bytestring containers GLUT OpenGL ]; @@ -101093,23 +101582,28 @@ self: { }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnss-converters" = callPackage - ({ mkDerivation, base, basic-prelude, binary-conduit, conduit - , conduit-extra, lens, resourcet, rtcm, sbp, tasty, tasty-hunit - , time + ({ mkDerivation, base, basic-prelude, binary-conduit, bytestring + , conduit, conduit-extra, extra, HUnit-approx, lens, resourcet + , rtcm, sbp, tasty, tasty-hunit, time, unordered-containers }: mkDerivation { pname = "gnss-converters"; - version = "0.1.9"; - sha256 = "0bea171d430190d7caeb6551e208b86d5fc8b9af82733445bf1e4d6585471dce"; + version = "0.1.11"; + sha256 = "30b908f69abc9fceb6b0b510ef764b9ae26020b7e6d1ffeaf7f6582b401c9542"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base basic-prelude conduit-extra lens rtcm sbp time + base basic-prelude conduit-extra extra lens rtcm sbp time + unordered-containers ]; executableHaskellDepends = [ base basic-prelude binary-conduit conduit conduit-extra resourcet ]; - testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; + testHaskellDepends = [ + base basic-prelude binary-conduit bytestring conduit conduit-extra + HUnit-approx lens resourcet sbp tasty tasty-hunit + unordered-containers + ]; homepage = "http://github.com/swift-nav/gnss-converters"; description = "GNSS Converters"; license = stdenv.lib.licenses.bsd3; @@ -103917,7 +104411,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "graphviz" = callPackage + "graphviz_2999_18_1_0" = callPackage ({ mkDerivation, base, bytestring, colour, containers, directory , dlist, fgl, fgl-arbitrary, filepath, polyparse, process , QuickCheck, temporary, text, transformers, wl-pprint-text @@ -103937,6 +104431,29 @@ self: { homepage = "http://projects.haskell.org/graphviz/"; description = "Bindings to Graphviz for graph visualisation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "graphviz" = callPackage + ({ mkDerivation, base, bytestring, colour, containers, directory + , dlist, fgl, fgl-arbitrary, filepath, polyparse, process + , QuickCheck, temporary, text, transformers, wl-pprint-text + }: + mkDerivation { + pname = "graphviz"; + version = "2999.18.1.1"; + sha256 = "059de2521e36fd6b43b387113d6617da5949c8638be829a31b2d62d87ed4fe61"; + libraryHaskellDepends = [ + base bytestring colour containers directory dlist fgl filepath + polyparse process temporary text transformers wl-pprint-text + ]; + testHaskellDepends = [ + base containers fgl fgl-arbitrary filepath QuickCheck text + ]; + doCheck = false; + homepage = "http://projects.haskell.org/graphviz/"; + description = "Bindings to Graphviz for graph visualisation"; + license = stdenv.lib.licenses.bsd3; }) {}; "grasp" = callPackage @@ -109809,7 +110326,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-authenticate" = callPackage + "happstack-authenticate_2_3_4_2" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers , data-default, email-validate, filepath, happstack-hsp @@ -109839,6 +110356,36 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "happstack-authenticate" = callPackage + ({ mkDerivation, acid-state, aeson, authenticate, base + , base64-bytestring, boomerang, bytestring, containers + , data-default, email-validate, filepath, happstack-hsp + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens + , mime-mail, mtl, pwstore-purehaskell, random, safecopy + , shakespeare, text, time, unordered-containers, userid, web-routes + , web-routes-boomerang, web-routes-happstack, web-routes-hsp + , web-routes-th + }: + mkDerivation { + pname = "happstack-authenticate"; + version = "2.3.4.3"; + sha256 = "6029d43f6cf78e68cd88c28a8c9aefacfc6062cc4f7e798a72302ac43abecc30"; + libraryHaskellDepends = [ + acid-state aeson authenticate base base64-bytestring boomerang + bytestring containers data-default email-validate filepath + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text + time unordered-containers userid web-routes web-routes-boomerang + web-routes-happstack web-routes-hsp web-routes-th + ]; + homepage = "http://www.happstack.com/"; + description = "Happstack Authentication Library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "happstack-clientsession" = callPackage ({ mkDerivation, base, bytestring, cereal, clientsession , happstack-server, monad-control, mtl, safecopy, transformers-base @@ -112621,7 +113168,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-packages" = callPackage + "haskell-packages_0_3" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , deepseq, directory, filepath, haskell-src-exts, hse-cpp, mtl , optparse-applicative, tagged, transformers, transformers-compat @@ -112639,6 +113186,26 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-packages"; description = "Haskell suite library for package management and integration with Cabal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-packages" = callPackage + ({ mkDerivation, aeson, base, bytestring, Cabal, containers + , deepseq, directory, filepath, haskell-src-exts, hse-cpp, mtl + , optparse-applicative, tagged, transformers, transformers-compat + }: + mkDerivation { + pname = "haskell-packages"; + version = "0.4"; + sha256 = "2c9af5515ce210da304560d6a16b36fa056eefcb2ec609dc0b25c2002ba31021"; + libraryHaskellDepends = [ + aeson base bytestring Cabal containers deepseq directory filepath + haskell-src-exts hse-cpp mtl optparse-applicative tagged + transformers transformers-compat + ]; + homepage = "http://documentup.com/haskell-suite/haskell-packages"; + description = "Haskell suite library for package management and integration with Cabal"; + license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -116058,6 +116625,7 @@ self: { base bytestring data-default-class hostname HTTP http-server mtl url ]; + jailbreak = true; homepage = "http://github.com/achudnov/haxy"; description = "A simple HTTP proxy server library"; license = stdenv.lib.licenses.bsd3; @@ -116546,6 +117114,7 @@ self: { libraryHaskellDepends = [ base extensible-exceptions filepath hsyslog mtl unix ]; + jailbreak = true; homepage = "http://github.com/greydot/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; @@ -117405,6 +117974,25 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "heckle" = callPackage + ({ mkDerivation, base, blaze-html, containers, directory, pandoc + , pandoc-types, process, split, tagsoup + }: + mkDerivation { + pname = "heckle"; + version = "0.1.0.0"; + sha256 = "5a7d9efbdf71d3b6da4da7329b8999d244844cc9469b91d61a000438bb07d65e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base blaze-html containers directory pandoc pandoc-types process + split tagsoup + ]; + jailbreak = true; + description = "Jekyll in Haskell"; + license = stdenv.lib.licenses.asl20; + }) {}; + "hedis_0_6_9" = callPackage ({ mkDerivation, attoparsec, base, BoundedChan, bytestring , bytestring-lexing, HUnit, mtl, network, resource-pool @@ -117511,6 +118099,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hedis-namespace" = callPackage + ({ mkDerivation, base, bytestring, hedis, mtl }: + mkDerivation { + pname = "hedis-namespace"; + version = "0.1.0.0"; + sha256 = "3937dec2f23486380417142ef1342413be5bb7507ea11d3c22b94e4e510ddae1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring hedis mtl ]; + executableHaskellDepends = [ base bytestring hedis mtl ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/githubuser/hedis-namespace#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hedis-pile" = callPackage ({ mkDerivation, base, binary, bytestring, hedis, hedis-tags, HUnit , lifted-base, string-conversions, test-framework @@ -121173,23 +121777,19 @@ self: { }) {}; "hjsonpointer" = callPackage - ({ mkDerivation, aeson, base, http-types, HUnit, QuickCheck - , test-framework, test-framework-hunit, test-framework-quickcheck2 + ({ mkDerivation, aeson, base, hspec, http-types, HUnit, QuickCheck , text, unordered-containers, vector }: mkDerivation { pname = "hjsonpointer"; - version = "0.3.0.1"; - sha256 = "336e55ff4951e87dd4bed587378c9809c67d5462a88b30c186a56d61aa452b41"; - isLibrary = true; - isExecutable = true; + version = "0.3.0.2"; + sha256 = "caf6f9df4af27b0dae0bc0c39be4eb623743f70602df251fd5e9fb1732795747"; libraryHaskellDepends = [ aeson base QuickCheck text unordered-containers vector ]; - executableHaskellDepends = [ aeson base ]; testHaskellDepends = [ - aeson base http-types HUnit test-framework test-framework-hunit - test-framework-quickcheck2 text unordered-containers vector + aeson base hspec http-types HUnit QuickCheck text + unordered-containers vector ]; homepage = "https://github.com/seagreen/hjsonpointer"; description = "JSON Pointer library"; @@ -121199,23 +121799,24 @@ self: { "hjsonschema" = callPackage ({ mkDerivation, aeson, async, base, bytestring, containers , directory, file-embed, filepath, hjsonpointer, http-client - , http-types, HUnit, pcre-heavy, QuickCheck, scientific, semigroups - , tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers - , vector, wai-app-static, warp + , http-types, HUnit, pcre-heavy, profunctors, QuickCheck + , scientific, semigroups, tasty, tasty-hunit, tasty-quickcheck + , text, unordered-containers, vector, wai-app-static, warp }: mkDerivation { pname = "hjsonschema"; - version = "0.10.0.3"; - sha256 = "ab44f4673a1e701c035a3002f509a7a20abd5958b17155861a2d37f8fdc11b51"; + version = "1.0.0.0"; + sha256 = "f2d1ad345ff76e3bc3d738ebc3179bdec64a97ff66f7ade29aaf416c13f38787"; libraryHaskellDepends = [ aeson base bytestring containers file-embed filepath hjsonpointer - http-client http-types pcre-heavy QuickCheck scientific semigroups - text unordered-containers vector + http-client http-types pcre-heavy profunctors QuickCheck scientific + semigroups text unordered-containers vector ]; testHaskellDepends = [ aeson async base bytestring directory filepath hjsonpointer HUnit - QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text - unordered-containers vector wai-app-static warp + profunctors QuickCheck semigroups tasty tasty-hunit + tasty-quickcheck text unordered-containers vector wai-app-static + warp ]; homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; @@ -123176,11 +123777,11 @@ self: { ({ mkDerivation, base, integer-gmp, mpfr }: mkDerivation { pname = "hmpfr"; - version = "0.3.3.5"; - sha256 = "c4f17c265406145d9beccca5c88390af5fa80844aa2ee76310139ec75dcdf801"; + version = "0.4.0.2"; + sha256 = "c6f0bfdc5ea4f19892e40d67169808445bdeff50dcdc0d2b40f621d1e1013f90"; libraryHaskellDepends = [ base integer-gmp ]; librarySystemDepends = [ mpfr ]; - homepage = "http://code.google.com/p/hmpfr/"; + homepage = "https://github.com/michalkonecny/hmpfr"; description = "Haskell binding to the MPFR library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -124569,10 +125170,8 @@ self: { }: mkDerivation { pname = "hoogle"; - version = "5.0"; - sha256 = "19fa34b6695956548f3dc1992e883bb7cf32459d260587dd5a06ef986684c50f"; - revision = "1"; - editedCabalFile = "aee369809a5bc7892a0c58189e4905dac0204a8c119a20bc8d26011c6d37af72"; + version = "5.0.1"; + sha256 = "7aea6d779e14574f78f4506949f96a020ac1f8273b84f418094197366cc3112e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131203,7 +131802,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "hsyslog" = callPackage + "hsyslog_2_0" = callPackage ({ mkDerivation, base, doctest }: mkDerivation { pname = "hsyslog"; @@ -131214,10 +131813,11 @@ self: { homepage = "http://github.com/peti/hsyslog"; description = "FFI interface to syslog(3) from POSIX.1-2001"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; - "hsyslog_4" = callPackage + "hsyslog" = callPackage ({ mkDerivation, base, bytestring, QuickCheck }: mkDerivation { pname = "hsyslog"; @@ -131228,7 +131828,6 @@ self: { homepage = "http://github.com/peti/hsyslog"; description = "FFI interface to syslog(3) from POSIX.1-2001"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; @@ -131244,7 +131843,6 @@ self: { base bytestring hsyslog network text time unix ]; testHaskellDepends = [ base hspec time ]; - jailbreak = true; homepage = "https://github.com/ThoughtLeadr/hsyslog-udp"; description = "Log to syslog over a network via UDP"; license = stdenv.lib.licenses.bsd3; @@ -131359,13 +131957,12 @@ self: { }: mkDerivation { pname = "htiled"; - version = "0.1.3.0"; - sha256 = "1141d497418c6f53c8e578be673073956108cf2617f8bf8af0c045a8f1f974da"; + version = "0.1.4.0"; + sha256 = "f78d4ff35328922613c93b4348738547bd55a3a196965a7e84e9e6289ba5aec1"; libraryHaskellDepends = [ base base64-bytestring bytestring containers filepath hxt split zlib ]; - jailbreak = true; description = "Import from the Tiled map editor"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -132822,7 +133419,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "http-client_0_5_0" = callPackage + "http-client_0_5_1" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , deepseq, directory, exceptions, filepath, ghc-prim, hspec @@ -132831,10 +133428,8 @@ self: { }: mkDerivation { pname = "http-client"; - version = "0.5.0"; - sha256 = "5915ab9377690d4cb497440d7294e5e14265f2fe74d79b7e484a3883a383ca9a"; - revision = "1"; - editedCabalFile = "308e6f73c0a374472ec5221299fafbfc48888ac9d1e853416b01d4697756c3fe"; + version = "0.5.1"; + sha256 = "7406a258594989546a9706179b1ee76708b7258394a6cff280167cf26ce1d1f0"; libraryHaskellDepends = [ array base base64-bytestring blaze-builder bytestring case-insensitive containers cookie deepseq exceptions filepath @@ -132996,8 +133591,8 @@ self: { }: mkDerivation { pname = "http-client-session"; - version = "0.1.1"; - sha256 = "41d9210795f0a0bdb984ca462d8d1e214679dda1b1a606dbce69ee52189162ca"; + version = "0.1.2"; + sha256 = "9cb4f452fa5465f6247dae835e6097c6d46f177804cb6121d61f4706ad3c9e65"; libraryHaskellDepends = [ base-prelude bytestring either http-client mtl-prelude ]; @@ -133710,7 +134305,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-media" = callPackage + "http-media_0_6_3" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , QuickCheck, test-framework, test-framework-quickcheck2 }: @@ -133729,6 +134324,27 @@ self: { homepage = "https://github.com/zmthy/http-media"; description = "Processing HTTP Content-Type and Accept headers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-media" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , QuickCheck, test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "http-media"; + version = "0.6.4"; + sha256 = "ef762cf50854250e4247b744decbebe4d3d188dbc19bfd90aa344ed3c61cc9d3"; + libraryHaskellDepends = [ + base bytestring case-insensitive containers + ]; + testHaskellDepends = [ + base bytestring case-insensitive containers QuickCheck + test-framework test-framework-quickcheck2 + ]; + homepage = "https://github.com/zmthy/http-media"; + description = "Processing HTTP Content-Type and Accept headers"; + license = stdenv.lib.licenses.mit; }) {}; "http-monad" = callPackage @@ -134230,7 +134846,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http2" = callPackage + "http2_1_6_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring , bytestring-builder, case-insensitive, containers, directory , doctest, filepath, Glob, hex, hspec, psqueues, stm, text @@ -134251,6 +134867,30 @@ self: { ]; description = "HTTP/2.0 library including frames and HPACK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http2" = callPackage + ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring + , bytestring-builder, case-insensitive, containers, directory + , doctest, filepath, Glob, hex, hspec, psqueues, stm, text + , unordered-containers, vector, word8 + }: + mkDerivation { + pname = "http2"; + version = "1.6.1"; + sha256 = "0f69321514c5de49a0a796dcf40decc5781bcb4d53618f4e977be4eb05a88055"; + libraryHaskellDepends = [ + array base bytestring bytestring-builder case-insensitive + containers psqueues stm + ]; + testHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + case-insensitive containers directory doctest filepath Glob hex + hspec psqueues stm text unordered-containers vector word8 + ]; + description = "HTTP/2.0 library including frames and HPACK"; + license = stdenv.lib.licenses.bsd3; }) {}; "httpd-shed" = callPackage @@ -134790,8 +135430,8 @@ self: { }: mkDerivation { pname = "husk-scheme"; - version = "3.19.2"; - sha256 = "85bc2b974142778edbc354ef620fa0991b891aa5a0aaa36c1dd4ed8bd501fa63"; + version = "3.19.3"; + sha256 = "04817e7375296f24e9c28a93ec43d3b18e1717d45aeaa653cd46dc3be08d642d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -135771,6 +136411,7 @@ self: { libraryHaskellDepends = [ base hxt hxt-charproperties hxt-unicode tagsoup ]; + jailbreak = true; homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "TagSoup parser for HXT"; license = "unknown"; @@ -138644,10 +139285,8 @@ self: { }: mkDerivation { pname = "imm"; - version = "1.0.0.0"; - sha256 = "05bca52253f0f6ea4fc52e07f5920012e75f20cd5e3127c7ffac5647a1512af5"; - revision = "3"; - editedCabalFile = "63bff92fa6fd212e3ba6f81b4d2e74fe47e02e86b06e8b1b1cd19588331ce5e4"; + version = "1.0.1.0"; + sha256 = "287a4815b43de90e89b27a356215e57d97c03ba4f929965b1a8ca5c4fe35658b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -138821,6 +139460,7 @@ self: { version = "0.2.1"; sha256 = "11d98bcb69c30abe29d229f2807e16381de2302a7473c53d2823b8cead0b40b5"; libraryHaskellDepends = [ base data-default-class ]; + jailbreak = true; homepage = "http://github.com/duairc/implicit-params"; description = "Named and unnamed implicit parameters with defaults"; license = stdenv.lib.licenses.bsd3; @@ -139207,10 +139847,9 @@ self: { ({ mkDerivation, base, bifunctors, indexed, mtl, pointed }: mkDerivation { pname = "indexed-extras"; - version = "0.1.1"; - sha256 = "3901759ad35d8b2333ae18142d88f3b92954b05db733f8ccac255256b5981f56"; + version = "0.2"; + sha256 = "b01fe384c942d57a62a6416f3a312e8436ce54a664421311b104f8f8a6982b9f"; libraryHaskellDepends = [ base bifunctors indexed mtl pointed ]; - jailbreak = true; homepage = "https://github.com/reinerp/indexed-extras"; description = "Indexed functors, monads and comonads that require extensions to Haskell98"; license = stdenv.lib.licenses.bsd3; @@ -140416,6 +141055,8 @@ self: { pname = "interruptible"; version = "0.1.1.1"; sha256 = "d3ef92f178d03041edc7845dd3c3ac90a3e5c6b74b5ca1bca65246ac90af1e5c"; + revision = "2"; + editedCabalFile = "995d15d4358b5c31e289ac2840132c938c2635ae359e3624af7157e71667ce80"; libraryHaskellDepends = [ base either lifted-base monad-control transformers ]; @@ -140980,19 +141621,19 @@ self: { "ip" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, doctest - , hashable, primitive, QuickCheck, test-framework - , test-framework-quickcheck2, text, vector + , hashable, HUnit, primitive, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, vector }: mkDerivation { pname = "ip"; - version = "0.8.1"; - sha256 = "0614467bf2db28cb5d47692906852f887bebd786643e1a5490bd23cf8a36d6bd"; + version = "0.8.4"; + sha256 = "8c0d0de5b927310848f3c17702637ed2ea15bffab5a82b6df61d5df88b74c1b6"; libraryHaskellDepends = [ aeson attoparsec base bytestring hashable primitive text vector ]; testHaskellDepends = [ - base bytestring doctest QuickCheck test-framework - test-framework-quickcheck2 text + base bytestring doctest HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 text ]; homepage = "https://github.com/andrewthad/haskell-ip#readme"; description = "Library for IP and MAC addresses"; @@ -141447,8 +142088,8 @@ self: { }: mkDerivation { pname = "irc-client"; - version = "0.4.2.0"; - sha256 = "94c8ea0d5e4d663cc78a0d9b25f283f870780a703e78229c8064d34ec23ce4fa"; + version = "0.4.2.1"; + sha256 = "2fe59527a1403a1ad960d1f7021871c85818ca3fe50f593505efb7ccbafa1308"; libraryHaskellDepends = [ base bytestring conduit irc-conduit irc-ctcp old-locale stm stm-conduit text time transformers @@ -143561,8 +144202,8 @@ self: { ({ mkDerivation, base, HTTP }: mkDerivation { pname = "js-jquery"; - version = "3.0.0"; - sha256 = "ad576481282ac48923303bc8bad50baee424425a1021ccfb61215aac8d0bd026"; + version = "3.1.0"; + sha256 = "a8db825d7740f18db4c3bad92db18e840913e1444f2d43e409dc5df691a7d3a2"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base HTTP ]; doCheck = false; @@ -143704,8 +144345,8 @@ self: { }: mkDerivation { pname = "json-api"; - version = "0.1.0.2"; - sha256 = "48d7b0256fe2b98ef762d9e74262c322cc896169a0d4ab0421c6abf281c609de"; + version = "0.1.0.4"; + sha256 = "b846d72168ec304c2b8fdc726c4b46a3439609a045d17c6ac9b64b58ca59107b"; libraryHaskellDepends = [ aeson base containers data-default lens-aeson text unordered-containers url @@ -144392,6 +145033,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "json-rpc-generic" = callPackage + ({ mkDerivation, aeson, base, bytestring, QuickCheck + , quickcheck-simple, scientific, text, transformers, vector + }: + mkDerivation { + pname = "json-rpc-generic"; + version = "0.0.1.0"; + sha256 = "248c91a30ec210afd5f96e0fd69a05188a1b015085313cebf6cad82ba57d2962"; + libraryHaskellDepends = [ + aeson base bytestring scientific text transformers vector + ]; + testHaskellDepends = [ + aeson base QuickCheck quickcheck-simple text + ]; + homepage = "http://github.com/khibino/haskell-json-rpc-generic"; + description = "Generic encoder and decode for JSON-RPC"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "json-rpc-server" = callPackage ({ mkDerivation, aeson, base, bytestring, deepseq, HUnit, mtl , test-framework, test-framework-hunit, text, unordered-containers @@ -144673,13 +145333,12 @@ self: { }: mkDerivation { pname = "json-sop"; - version = "0.2.0.0"; - sha256 = "2657ff212fa92b5a1cc1e36e85bee87807f7f33efb2c0d52f2967e001487ee02"; + version = "0.2.0.1"; + sha256 = "ca02139ca3a5041225f684080067c5ec8c5e0ce3421a5eea9d273db377d005c9"; libraryHaskellDepends = [ aeson base generics-sop lens-sop tagged text time transformers unordered-containers vector ]; - jailbreak = true; description = "Generics JSON (de)serialization using generics-sop"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -145711,6 +146370,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "keenser" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, containers + , fast-logger, hedis, hostname, lifted-base, monad-control + , monad-logger, old-locale, random, scientific, stm, text, thyme + , time, transformers, transformers-base, unix, unordered-containers + , vector-space + }: + mkDerivation { + pname = "keenser"; + version = "0.1.0.0"; + sha256 = "947e825cb31c93077fd90d978d5d04dfbb3fa2def8a634fbf71a7b8c4422919d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring containers hedis hostname + lifted-base monad-control monad-logger old-locale random scientific + stm text thyme time transformers transformers-base unix + unordered-containers vector-space + ]; + executableHaskellDepends = [ + aeson base bytestring fast-logger hedis monad-logger text unix + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jamesdabbs/keenser#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "keera-callbacks" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -146923,7 +147610,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kraken" = callPackage + "kraken_0_0_2" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, mtl }: @@ -146938,6 +147625,22 @@ self: { ]; description = "Kraken.io API client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "kraken" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, mtl + }: + mkDerivation { + pname = "kraken"; + version = "0.0.3"; + sha256 = "4001e1c545155434985f7ca93b5d1bcc6a465c83c58d4bb41a60bbfe521b1e9d"; + libraryHaskellDepends = [ + aeson base bytestring http-client http-client-tls mtl + ]; + description = "Kraken.io API client"; + license = stdenv.lib.licenses.mit; }) {}; "krpc" = callPackage @@ -148052,7 +148755,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "lambdacube-gl" = callPackage + "lambdacube-gl_0_5_0_5" = callPackage ({ mkDerivation, base, bytestring, containers, JuicyPixels , lambdacube-ir, mtl, OpenGLRaw, vector, vector-algorithms }: @@ -148068,6 +148771,25 @@ self: { homepage = "http://lambdacube3d.com"; description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "lambdacube-gl" = callPackage + ({ mkDerivation, base, bytestring, containers, JuicyPixels + , lambdacube-ir, mtl, OpenGLRaw, vector, vector-algorithms + }: + mkDerivation { + pname = "lambdacube-gl"; + version = "0.5.1.1"; + sha256 = "44fcd8abfd86607a65702caac4894114632590473bc1701f8e082966b79c63c3"; + libraryHaskellDepends = [ + base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw + vector vector-algorithms + ]; + jailbreak = true; + homepage = "http://lambdacube3d.com"; + description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; + license = stdenv.lib.licenses.bsd3; }) {}; "lambdacube-ir" = callPackage @@ -148649,13 +149371,13 @@ self: { }) {}; "language-dart" = callPackage - ({ mkDerivation, base, hspec, pretty }: + ({ mkDerivation, base, hspec, pretty, raw-strings-qq }: mkDerivation { pname = "language-dart"; - version = "0.1.0.0"; - sha256 = "da3d2463be605a48b21af178dbf74d00c90da9b909821a7f54db77f5a82b3cbb"; + version = "0.2.0.0"; + sha256 = "41b144aa3af001345cf5b2b2a249f332608d8fb7915b97f93c078dc0b4b4e9c5"; libraryHaskellDepends = [ base pretty ]; - testHaskellDepends = [ base hspec ]; + testHaskellDepends = [ base hspec raw-strings-qq ]; homepage = "https://github.com/kseo/language-dart#readme"; description = "Manipulating Dart source: abstract syntax and pretty-printer"; license = stdenv.lib.licenses.bsd3; @@ -148780,6 +149502,7 @@ self: { mtl parsec QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 uniplate wl-pprint ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/jswebtools/language-ecmascript"; description = "JavaScript parser and pretty-printer library"; @@ -149473,6 +150196,51 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "language-puppet_1_3" = callPackage + ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base + , base16-bytestring, bytestring, case-insensitive, containers + , cryptonite, directory, either, exceptions, filecache, formatting + , Glob, hashable, hruby, hslogger, hspec, hspec-megaparsec + , http-api-data, http-client, HUnit, lens, lens-aeson, megaparsec + , memory, mtl, operational, optparse-applicative, parallel-io + , parsec, pcre-utils, process, random, regex-pcre-builtin + , scientific, semigroups, servant, servant-client, split, stm + , strict-base-types, temporary, text, time, transformers, unix + , unordered-containers, vector, yaml + }: + mkDerivation { + pname = "language-puppet"; + version = "1.3"; + sha256 = "59a06ac062a1825425fabaaf7ec2e5305e4fb2627db4d91cfa2cc996d37728d6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring + case-insensitive containers cryptonite directory either exceptions + filecache formatting hashable hruby hslogger hspec http-api-data + http-client lens lens-aeson megaparsec memory mtl operational + parsec pcre-utils process random regex-pcre-builtin scientific + semigroups servant servant-client split stm strict-base-types text + time transformers unix unordered-containers vector yaml + ]; + executableHaskellDepends = [ + aeson base bytestring containers Glob hslogger http-client lens + megaparsec mtl optparse-applicative parallel-io regex-pcre-builtin + servant-client strict-base-types text transformers + unordered-containers vector yaml + ]; + testHaskellDepends = [ + ansi-wl-pprint base Glob hslogger hspec hspec-megaparsec HUnit lens + megaparsec mtl scientific strict-base-types temporary text + transformers unix unordered-containers vector + ]; + jailbreak = true; + homepage = "http://lpuppet.banquise.net/"; + description = "Tools to parse and evaluate the Puppet DSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "language-python" = callPackage ({ mkDerivation, alex, array, base, containers, happy, monads-tf , pretty, transformers, utf8-string @@ -150450,8 +151218,8 @@ self: { ({ mkDerivation, base, QuickCheck, time }: mkDerivation { pname = "leapseconds-announced"; - version = "2015.0.0.1"; - sha256 = "15fabb848809ffd47010161bc7cd3f301862b63f93f3c7c5e228b3809d84134d"; + version = "2017"; + sha256 = "7fdbc929cfcb87f1daa0d2a278aeb58264ee82bf96ece918013b5b942a477dab"; libraryHaskellDepends = [ base time ]; testHaskellDepends = [ base QuickCheck time ]; homepage = "https://github.com/bjornbm/leapseconds-announced"; @@ -151214,12 +151982,11 @@ self: { ({ mkDerivation, base, fclabels, generics-sop, transformers }: mkDerivation { pname = "lens-sop"; - version = "0.2.0.0"; - sha256 = "36f5a59ee68921496502c5586cd968ca2524cbb4be718763892c0daf26c7280a"; + version = "0.2.0.1"; + sha256 = "13a335a49acfef59ab8d39845a5bb174826c342c1705a96caa0c7d1fba6d7966"; libraryHaskellDepends = [ base fclabels generics-sop transformers ]; - jailbreak = true; description = "Computing lenses generically using generics-sop"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -152646,6 +153413,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lifted-protolude" = callPackage + ({ mkDerivation, async, base, bytestring, containers, deepseq + , exceptions, ghc-prim, lifted-async, lifted-base, mtl, safe, stm + , text, transformers + }: + mkDerivation { + pname = "lifted-protolude"; + version = "0.1.6"; + sha256 = "ad5cbb992e07d92bfc71cb566ac2472d4996a925b17bb92c1da3c7d97cdf31eb"; + libraryHaskellDepends = [ + async base bytestring containers deepseq exceptions ghc-prim + lifted-async lifted-base mtl safe stm text transformers + ]; + homepage = "https://github.com/parsonsmat/lifted-protolude"; + description = "A sensible set of defaults for writing lifted custom Preludes"; + license = stdenv.lib.licenses.mit; + }) {}; + "lifted-threads" = callPackage ({ mkDerivation, base, monad-control, threads, transformers-base }: mkDerivation { @@ -155009,6 +155794,7 @@ self: { tagged-exception-core test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/trskop/lock-file"; description = "Provide exclusive access to a resource using lock file"; license = stdenv.lib.licenses.bsd3; @@ -155319,6 +156105,27 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "logentries" = callPackage + ({ mkDerivation, base, bytestring, data-default, fast-logger, hspec + , network, stm, uuid-types, wai, wai-extra + }: + mkDerivation { + pname = "logentries"; + version = "0.1.0.1"; + sha256 = "229f47a750e4a741bea48563ccf70cd59641f5f761beff66f168108dbdc15572"; + libraryHaskellDepends = [ + base bytestring data-default fast-logger network stm uuid-types wai + wai-extra + ]; + testHaskellDepends = [ + base bytestring fast-logger hspec uuid-types + ]; + jailbreak = true; + homepage = "https://github.com/toddmohney/logentries#README.md"; + description = "Request logger middleware for Logentries"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "logfloat_0_12_1" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -156072,7 +156879,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ltext" = callPackage + "ltext_0_0_2_1" = callPackage ({ mkDerivation, aeson, base, containers, data-default, deepseq , directory, hspec, mtl, mtl-compat, optparse-applicative, parsec , pretty, template-haskell, text, transformers, yaml @@ -156096,6 +156903,36 @@ self: { jailbreak = true; description = "Higher-order file applicator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ltext" = callPackage + ({ mkDerivation, attoparsec, base, directory, exceptions, extra + , HFuse, mtl, optparse-applicative, pretty, QuickCheck + , quickcheck-combinators, tasty, tasty-quickcheck, text + , transformers, unordered-containers + }: + mkDerivation { + pname = "ltext"; + version = "0.1.0"; + sha256 = "a9a9d43833a12c8ec19e4fdb3b1c94002fb3b91d2ee8bc6557abd4e6ea709fad"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base directory exceptions extra HFuse mtl pretty + QuickCheck quickcheck-combinators text transformers + unordered-containers + ]; + executableHaskellDepends = [ + attoparsec base directory exceptions extra mtl optparse-applicative + pretty QuickCheck quickcheck-combinators text transformers + unordered-containers + ]; + testHaskellDepends = [ + base QuickCheck quickcheck-combinators tasty tasty-quickcheck text + ]; + description = "Higher-order file applicator"; + license = stdenv.lib.licenses.bsd3; }) {}; "ltiv1p1" = callPackage @@ -157738,6 +158575,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "makefile" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, doctest, Glob }: + mkDerivation { + pname = "makefile"; + version = "0.1.0.1"; + sha256 = "d78c1bf4e9ddd60f61a575887a742f20cdd9f1193a920b46ac9e5ad73d1089b5"; + libraryHaskellDepends = [ attoparsec base bytestring ]; + testHaskellDepends = [ attoparsec base bytestring doctest Glob ]; + doCheck = false; + homepage = "http://github.com/nmattia/mask"; + description = "Simple Makefile parser"; + license = stdenv.lib.licenses.mit; + }) {}; + + "makefile_0_1_0_3" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, doctest, Glob }: + mkDerivation { + pname = "makefile"; + version = "0.1.0.3"; + sha256 = "2ad77fc1cc390225ecb7155f6df87b3be5bdba5803629ba687f98711a8114e4a"; + libraryHaskellDepends = [ attoparsec base bytestring ]; + testHaskellDepends = [ attoparsec base bytestring doctest Glob ]; + homepage = "http://github.com/nmattia/mask"; + description = "Simple Makefile parser"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "managed_1_0_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -158405,7 +159270,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill" = callPackage + "mandrill_0_5_2_1" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck @@ -158427,6 +159292,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.2"; + sha256 = "99031db2a5406c4fe2f3523af6220d793d57f3e75d106e75bfa1bdac9eb77582"; + 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 @@ -158901,10 +159791,9 @@ self: { ({ mkDerivation, base, containers, random, transformers }: mkDerivation { pname = "markov-chain"; - version = "0.0.3.3"; - sha256 = "a8d32b259b4d5508c4c2fce44013c2d095f808fe5af072144ccabc669c962ef9"; + version = "0.0.3.4"; + sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; libraryHaskellDepends = [ base containers random transformers ]; - jailbreak = true; homepage = "http://code.haskell.org/~thielema/markov-chain/"; description = "Markov Chains for generating random sequences with a user definable behaviour"; license = "GPL"; @@ -159198,7 +160087,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "math-functions" = callPackage + "math-functions_0_1_7_0" = callPackage ({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , vector, vector-th-unbox @@ -159221,6 +160110,30 @@ 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" = callPackage + ({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , vector, vector-th-unbox + }: + mkDerivation { + pname = "math-functions"; + version = "0.2.0.1"; + sha256 = "ac165116d981d879b4ea4f387d40140515d75823d8d60295514c41dbf4cac641"; + libraryHaskellDepends = [ + base deepseq primitive vector vector-th-unbox + ]; + testHaskellDepends = [ + base deepseq erf HUnit primitive QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 vector + vector-th-unbox + ]; + doCheck = false; + homepage = "https://github.com/bos/math-functions"; + description = "Special functions and Chebyshev polynomials"; + license = stdenv.lib.licenses.bsd3; }) {}; "mathblog" = callPackage @@ -159672,6 +160585,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "mcm" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, containers + , directory, filepath, hostname, MissingH, polyparse, process, text + , unix + }: + mkDerivation { + pname = "mcm"; + version = "0.6.4.10"; + sha256 = "daa13513fd3b7d0c6469977020b61a659ec43fc1dab891b01ba34f39ebf8d364"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base blaze-html bytestring containers directory filepath hostname + MissingH polyparse process text unix + ]; + homepage = "http://interfaces.org.uk/mcm"; + description = "Machine Configuration Manager"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "mcmaster-gloss-examples" = callPackage ({ mkDerivation, base, gloss }: mkDerivation { @@ -160028,16 +160961,17 @@ self: { }) {}; "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, HUnit - , mtl, QuickCheck, scientific, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, transformers + ({ mkDerivation, base, bytestring, containers, deepseq, exceptions + , HUnit, mtl, QuickCheck, scientific, test-framework + , test-framework-hunit, test-framework-quickcheck2, text + , transformers }: mkDerivation { pname = "megaparsec"; - version = "5.0.0"; - sha256 = "6ed6448cfd5f37017296b5ce170e037d11855c9d52e7ef01103313514fbead70"; + version = "5.0.1"; + sha256 = "8bd9c4f4f1d92cf45577ceabd13f58e0a980848142fba1036fa37bcab4aa3b25"; libraryHaskellDepends = [ - base bytestring containers exceptions mtl scientific text + base bytestring containers deepseq exceptions mtl scientific text transformers ]; testHaskellDepends = [ @@ -160165,7 +161099,6 @@ self: { testHaskellDepends = [ base binary blaze-builder bytestring network ]; - jailbreak = true; homepage = "https://github.com/dterei/memcache-hs"; description = "A memcached client library"; license = stdenv.lib.licenses.bsd3; @@ -161375,6 +162308,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "microlens-mtl_0_1_9_0" = callPackage + ({ mkDerivation, base, microlens, mtl, transformers + , transformers-compat + }: + mkDerivation { + pname = "microlens-mtl"; + version = "0.1.9.0"; + sha256 = "cf6dfd8c069eed3361952e8db75a065ab94072c430ed2a43a7a7383344726ac8"; + libraryHaskellDepends = [ + base microlens mtl transformers transformers-compat + ]; + homepage = "http://github.com/aelve/microlens"; + description = "microlens support for Reader/Writer/State from mtl"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "microlens-platform_0_1_7_0" = callPackage ({ mkDerivation, base, hashable, microlens, microlens-ghc , microlens-mtl, microlens-th, text, unordered-containers, vector @@ -161506,6 +162456,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "microlens-platform_0_3_3_0" = callPackage + ({ mkDerivation, base, hashable, microlens, microlens-ghc + , microlens-mtl, microlens-th, text, unordered-containers, vector + }: + mkDerivation { + pname = "microlens-platform"; + version = "0.3.3.0"; + sha256 = "174c87afcb0d3004e52b4283773aa16d2a6f0a3b819b362a36f75d7e72433ca8"; + libraryHaskellDepends = [ + base hashable microlens microlens-ghc microlens-mtl microlens-th + text unordered-containers vector + ]; + jailbreak = true; + homepage = "http://github.com/aelve/microlens"; + description = "Feature-complete microlens"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "microlens-th_0_2_1_0" = callPackage ({ mkDerivation, base, containers, microlens, template-haskell }: mkDerivation { @@ -161835,8 +162804,8 @@ self: { }: mkDerivation { pname = "mighttpd2"; - version = "3.3.2"; - sha256 = "3d9dc5ef52d5b62cdbccb234ce29edc1a6c37184333715b88ee152770135a47e"; + version = "3.3.3"; + sha256 = "f716ab686c9edb2d549f03b069c3b630dd5c147eff6ab1317781450c47a8f7b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161852,6 +162821,7 @@ self: { warp ]; testHaskellDepends = [ base hspec http-client ]; + jailbreak = true; homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "High performance web server on WAI/warp"; license = stdenv.lib.licenses.bsd3; @@ -162943,8 +163913,8 @@ self: { }: mkDerivation { pname = "modify-fasta"; - version = "0.8.2.0"; - sha256 = "8d5f8148b969147edef5483e72edd419f2184a0e43da2bdf201e09cf2d42877a"; + version = "0.8.2.1"; + sha256 = "5af7cddb753353ac1e16e15e5962e6a6c46eeb6a1d1ae38a8f014e20b04e61a0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -163218,15 +164188,15 @@ self: { }) {}; "monad-abort-fd" = callPackage - ({ mkDerivation, base, data-default, monad-control, mtl - , transformers, transformers-abort, transformers-base + ({ mkDerivation, base, monad-control, mtl, transformers + , transformers-abort, transformers-base }: mkDerivation { pname = "monad-abort-fd"; - version = "0.4"; - sha256 = "f98fe481b4dd57e1fdb5a30899b53eb0183265fcb02212151faa3263f04dde06"; + version = "0.5"; + sha256 = "677915c0c44d2e0ed478ff0637a5c9c291762e61619a3133f8331bfc855ed8fb"; libraryHaskellDepends = [ - base data-default monad-control mtl transformers transformers-abort + base monad-control mtl transformers transformers-abort transformers-base ]; homepage = "https://github.com/mvv/monad-abort-fd"; @@ -163740,6 +164710,25 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "monad-lgbt" = callPackage + ({ mkDerivation, base, containers, deepseq, hspec, logict, mtl + , QuickCheck + }: + mkDerivation { + pname = "monad-lgbt"; + version = "0.0.1"; + sha256 = "259b2c08e8690873202f06eb8ef66ec51a0104bf13bc24670885c4db773bb2f1"; + libraryHaskellDepends = [ + base containers deepseq hspec logict mtl QuickCheck + ]; + testHaskellDepends = [ + base containers deepseq hspec logict mtl QuickCheck + ]; + homepage = "https://github.com/mgajda/monad-lgbt#readme"; + description = "Monad transformers for combining local and global state"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "monad-log" = callPackage ({ mkDerivation, aeson, base, bytestring, exceptions, fast-logger , lifted-base, monad-control, template-haskell, text, text-show @@ -164033,8 +165022,8 @@ self: { }: mkDerivation { pname = "monad-logger-prefix"; - version = "0.1.1"; - sha256 = "80974cef0fb2393a085653014c3448d804f5083694bc8aa901f74541e2afb754"; + version = "0.1.2"; + sha256 = "e9fdf038d50ddf6ae448591f758447359ea3f4f35f5f7e3d092c3f87ed686166"; libraryHaskellDepends = [ base exceptions monad-control monad-logger mtl resourcet text transformers transformers-base @@ -165630,8 +166619,8 @@ self: { }: mkDerivation { pname = "mono-traversable"; - version = "1.0.0"; - sha256 = "53ba4d590601f8b1ab376b9eb4b72e451ef131860022f91466b04610ec82e1c8"; + version = "1.0.0.1"; + sha256 = "001d1fba5e3da63c46784a621d1430937e9537b38c0a74876e489ff4d7d3828a"; libraryHaskellDepends = [ base bytestring containers hashable split text transformers unordered-containers vector vector-algorithms @@ -166233,8 +167222,8 @@ self: { }: mkDerivation { pname = "morph"; - version = "0.1.0.0"; - sha256 = "573ca63c508fd54740fa4bc26523990238e306f048e5f01ec9b3a9b317c9629f"; + version = "0.1.0.1"; + sha256 = "8ac454d889af2ebe0ef92011e85c9b005be07262a642e3435dac6951c38363f6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169769,6 +170758,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "nested-sequence" = callPackage + ({ mkDerivation, base, QuickCheck, test-framework + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "nested-sequence"; + version = "0.2"; + sha256 = "6cd980c6f15d6a664d8d8b1255a5472bf524e9bce956811b39ef61617a7b5e53"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base QuickCheck test-framework test-framework-quickcheck2 + ]; + homepage = "http://code.haskell.org/~bkomuves/"; + description = "List-like data structures with O(log(n)) random access"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "nested-sets" = callPackage ({ mkDerivation, base, containers, hspec }: mkDerivation { @@ -169877,21 +170883,20 @@ self: { }) {}; "netlink" = callPackage - ({ mkDerivation, base, bytestring, c2hs, cereal, containers - , monad-loops, unix + ({ mkDerivation, base, bytestring, cereal, containers, monad-loops + , pretty-hex, unix }: mkDerivation { pname = "netlink"; - version = "0.1"; - sha256 = "9653369535aac39f759d20ab34e49397b6d9d218e3a108de437394596bf75170"; - revision = "1"; - editedCabalFile = "a95c52a24e2db0fb3670350b3205c62d9e30bd8a596c34885cb65a3b73452294"; + version = "1.0.0.4"; + sha256 = "94061ae1809a11d564ae3a45972c3a49dfbb01054a937cc4d5a2805963260a6d"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base bytestring cereal containers monad-loops unix + base bytestring cereal containers monad-loops pretty-hex unix ]; - libraryToolDepends = [ c2hs ]; - jailbreak = true; - homepage = "http://netlink-hs.googlecode.com/"; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/Ongy/netlink-hs"; description = "Netlink communication for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -169932,6 +170937,7 @@ self: { unordered-containers vector vector-th-unbox ]; testHaskellDepends = [ base bytestring hspec HUnit vector ]; + doCheck = false; homepage = "https://github.com/nh2/haskell-netpbm"; description = "Loading PBM, PGM, PPM image files"; license = stdenv.lib.licenses.mit; @@ -171999,8 +173005,9 @@ self: { pname = "nist-beacon"; version = "0.2.0.0"; sha256 = "fe967f892da92b9aae0cfd10be38166b0e5f915760f734df15b1bada95d9722c"; + revision = "1"; + editedCabalFile = "38a4516610bdf1d86e1204cc66297d74cd53bf6f12434d34d3c28eb016de0f22"; libraryHaskellDepends = [ base bytestring http-conduit xml ]; - jailbreak = true; homepage = "https://github.com/bstamour/haskell-nist-beacon"; description = "Haskell interface to the nist random beacon"; license = stdenv.lib.licenses.bsd3; @@ -172067,36 +173074,25 @@ self: { }) {inherit (pkgs) nix;}; "nixfromnpm" = callPackage - ({ mkDerivation, aeson, base, bytestring, classy-prelude - , containers, data-default, directory, error-list, filepath, github - , hnix, hspec, hspec-expectations, http-client-streams, io-streams - , MissingH, mtl, network-uri, optparse-applicative, parsec, shelly - , system-filepath, text, text-render, unordered-containers + ({ mkDerivation, aeson, ansi-terminal, base, bytestring + , classy-prelude, containers, curl, data-default, data-fix + , directory, hnix, lifted-base, MissingH, monad-control, mtl + , network-uri, optparse-applicative, parsec, semver-range, SHA + , shelly, system-filepath, temporary, text, text-render + , transformers, unix, unordered-containers }: mkDerivation { pname = "nixfromnpm"; - version = "0.2.1"; - sha256 = "c623621b04e5d924e7d2565c3ce618c6604a25b2755fa4e273b8fad8f62c2db8"; - isLibrary = true; + version = "0.10.1"; + sha256 = "bed09b87072dc2cc58eae01e463d2c8244e5d32aba21039daaa9e0e1af984afe"; + isLibrary = false; isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring classy-prelude containers data-default - directory error-list filepath hnix MissingH mtl network-uri - optparse-applicative parsec shelly system-filepath text text-render - unordered-containers - ]; executableHaskellDepends = [ - aeson base bytestring classy-prelude containers data-default - directory error-list filepath hnix MissingH mtl network-uri - optparse-applicative parsec shelly system-filepath text text-render - unordered-containers - ]; - testHaskellDepends = [ - aeson base bytestring classy-prelude containers data-default - directory error-list filepath github hnix hspec hspec-expectations - http-client-streams io-streams MissingH mtl network-uri - optparse-applicative parsec shelly system-filepath text text-render - unordered-containers + aeson ansi-terminal base bytestring classy-prelude containers curl + data-default data-fix directory hnix lifted-base MissingH + monad-control mtl network-uri optparse-applicative parsec + semver-range SHA shelly system-filepath temporary text text-render + transformers unix unordered-containers ]; jailbreak = true; description = "Generate nix expressions from npm packages"; @@ -173524,7 +174520,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "oeis" = callPackage + "oeis_0_3_6" = callPackage ({ mkDerivation, base, HTTP, HUnit, network, network-uri , test-framework, test-framework-hunit }: @@ -173539,6 +174535,23 @@ self: { jailbreak = true; description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "oeis" = callPackage + ({ mkDerivation, base, HTTP, HUnit, network, network-uri + , test-framework, test-framework-hunit + }: + mkDerivation { + pname = "oeis"; + version = "0.3.7"; + sha256 = "5d898a04d6117eca1250083cb8783d159302e9b5eb084878f5771916204861cf"; + libraryHaskellDepends = [ base HTTP network network-uri ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + ]; + description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; + license = stdenv.lib.licenses.bsd3; }) {}; "off-simple" = callPackage @@ -173554,7 +174567,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ofx" = callPackage + "ofx_0_4_0_4" = callPackage ({ mkDerivation, base, parsec, pretty, time }: mkDerivation { pname = "ofx"; @@ -173564,6 +174577,22 @@ self: { homepage = "http://www.github.com/massysett/ofx"; description = "Parser for OFX data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ofx" = callPackage + ({ mkDerivation, base, parsec, pretty, time }: + mkDerivation { + pname = "ofx"; + version = "0.4.2.0"; + sha256 = "0e22e2269f099603832f666814235051fadf92cbdec3dfacf7d1e8231ccd95f1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base parsec pretty time ]; + executableHaskellDepends = [ base parsec pretty time ]; + homepage = "http://www.github.com/massysett/ofx"; + description = "Parser for OFX data"; + license = stdenv.lib.licenses.bsd3; }) {}; "ohloh-hs" = callPackage @@ -175984,6 +177013,7 @@ self: { base data-default-class HUnit template-haskell test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/trskop/overloaded-records"; description = "Overloaded Records based on current GHC proposal"; license = stdenv.lib.licenses.bsd3; @@ -176449,6 +177479,19 @@ self: { license = "unknown"; }) {}; + "pagination" = callPackage + ({ mkDerivation, base, deepseq, exceptions, hspec, QuickCheck }: + mkDerivation { + pname = "pagination"; + version = "0.1.0"; + sha256 = "1d4312ec808e0a39f15b0f78e84b298b1ad6c608aa9a43b2476e94e5c51c771d"; + libraryHaskellDepends = [ base deepseq exceptions ]; + testHaskellDepends = [ base exceptions hspec QuickCheck ]; + homepage = "https://github.com/mrkkrp/pagination"; + description = "Framework-agnostic pagination boilerplate"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pagure-hook-receiver" = callPackage ({ mkDerivation, base, containers, scotty, shelly, text , transformers, unix @@ -177432,6 +178475,7 @@ self: { data-accessor-transformers data-default hspec mtl pandoc pandoc-types process roman-numerals syb template-haskell yaml ]; + jailbreak = true; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -177982,8 +179026,8 @@ self: { ({ mkDerivation, base, template-haskell, type-level }: mkDerivation { pname = "parameterized-data"; - version = "0.1.5"; - sha256 = "013322381cff9c560857fd9812ae282ba1c57412082f6479ceeed7b7aeba8efd"; + version = "0.1.6"; + sha256 = "0024e19cfffeb33cd25c6055ac3127dbd58e96f3237640b6fa788cd29a824f3b"; libraryHaskellDepends = [ base template-haskell type-level ]; homepage = "http://code.haskell.org/parameterized-data"; description = "Parameterized data library implementing lightweight dependent types"; @@ -182851,8 +183895,8 @@ self: { }: mkDerivation { pname = "phoityne-vscode"; - version = "0.0.6.0"; - sha256 = "dac6445fa1e6e4f25c31078ccdaefacbb31b22fb35612dac97f831a6893b1170"; + version = "0.0.7.0"; + sha256 = "6b209e6f85bf062d2443531661f4da5253450635f77a6f4f177768d11272651d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -183228,8 +184272,8 @@ self: { }: mkDerivation { pname = "pinboard"; - version = "0.9.5"; - sha256 = "2a050c949bde8de92aed1e0e356f871153becce19dc08786c0f6f0530c30d71c"; + version = "0.9.6"; + sha256 = "1b999ac66e530a840b425a4656b8499eccf1928bb25dd059a09b9e14863347db"; libraryHaskellDepends = [ aeson base bytestring containers either http-client http-client-tls http-types mtl network old-locale profunctors random text time @@ -183245,6 +184289,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pinboard_0_9_7" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, either, hspec + , http-client, http-client-tls, http-types, mtl, network + , profunctors, QuickCheck, random, semigroups, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "pinboard"; + version = "0.9.7"; + sha256 = "429f35da8a6c860ac2c20cfd87fe3dd01f53dbf7cfc44a24ba2f059e6d4fe681"; + libraryHaskellDepends = [ + aeson base bytestring containers either http-client http-client-tls + http-types mtl network profunctors random text time transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers hspec mtl QuickCheck semigroups + text time transformers unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/jonschoning/pinboard"; + description = "Access to the Pinboard API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pinch_0_2_0_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text @@ -183299,8 +184369,8 @@ self: { }: mkDerivation { pname = "pinch"; - version = "0.3.0.0"; - sha256 = "aaa451f65bde78d3e9cfc2621ed78b7dab31cb7234619c5c37cc2976e1fc3d15"; + version = "0.3.0.1"; + sha256 = "985fb2c392ceedff92d46af9086b1b6cdcde88f65920e5afb1cbf7a4c52e8b53"; libraryHaskellDepends = [ array base bytestring containers deepseq ghc-prim hashable text unordered-containers vector @@ -183350,7 +184420,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pinchot" = callPackage + "pinchot_0_18_0_2" = callPackage ({ mkDerivation, base, containers, Earley, lens, ListLike , semigroups, template-haskell, transformers }: @@ -183365,6 +184435,24 @@ self: { homepage = "http://www.github.com/massysett/pinchot"; description = "Write grammars, not parsers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pinchot" = callPackage + ({ mkDerivation, base, containers, Earley, lens, ListLike + , semigroups, template-haskell, transformers + }: + mkDerivation { + pname = "pinchot"; + version = "0.18.2.0"; + sha256 = "a32dfa0aff4761bca3c9d99755814a3acc2962197dff5b07b565c77e90bb4ed6"; + libraryHaskellDepends = [ + base containers Earley lens ListLike semigroups template-haskell + transformers + ]; + homepage = "http://www.github.com/massysett/pinchot"; + description = "Write grammars, not parsers"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipe-enumerator" = callPackage @@ -185122,6 +186210,28 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "pixelated-avatar-generator" = callPackage + ({ mkDerivation, base, bytestring, hspec, JuicyPixels, pureMD5 + , QuickCheck, split + }: + mkDerivation { + pname = "pixelated-avatar-generator"; + version = "0.1.0"; + sha256 = "f4fe2536605c0f1df69fd15da6007c95a28fff1b8c40d2368a120d906f85e2ef"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring JuicyPixels pureMD5 split + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base bytestring hspec JuicyPixels QuickCheck + ]; + homepage = "https://github.com/ExcaliburZero/pixelated-avatar-generator"; + description = "A library and application for generating pixelated avatars"; + license = stdenv.lib.licenses.mit; + }) {}; + "pkcs1" = callPackage ({ mkDerivation, base, bytestring, random }: mkDerivation { @@ -187325,30 +188435,30 @@ self: { "postgresql-query" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , containers, data-default, either, exceptions, file-embed + , containers, data-default, derive, either, exceptions, file-embed , haskell-src-meta, hreader, hset, inflections, monad-control , monad-logger, mtl, postgresql-simple, QuickCheck , quickcheck-assertions, quickcheck-instances, resource-pool , semigroups, tasty, tasty-hunit, tasty-quickcheck, tasty-th , template-haskell, text, th-lift, th-lift-instances, time - , transformers, transformers-base, transformers-compat + , transformers, transformers-base, transformers-compat, type-fun }: mkDerivation { pname = "postgresql-query"; - version = "2.3.0"; - sha256 = "bd3aaf1bcb3d424090962ace0b973f0b65aeee21aab44c9a1cb8c622936479d7"; + version = "3.0.1"; + sha256 = "2e9ff10732967eabc091a0f7d45a3b9777a20ae23ab3fffb8827bae646fcc1a4"; libraryHaskellDepends = [ aeson attoparsec base blaze-builder bytestring containers data-default either exceptions file-embed haskell-src-meta hreader hset inflections monad-control monad-logger mtl postgresql-simple resource-pool semigroups template-haskell text th-lift th-lift-instances time transformers transformers-base - transformers-compat + transformers-compat type-fun ]; testHaskellDepends = [ - attoparsec base inflections QuickCheck quickcheck-assertions - quickcheck-instances tasty tasty-hunit tasty-quickcheck tasty-th - text time + attoparsec base derive inflections postgresql-simple QuickCheck + quickcheck-assertions quickcheck-instances tasty tasty-hunit + tasty-quickcheck tasty-th text time ]; homepage = "https://bitbucket.org/s9gf4ult/postgresql-query"; description = "Sql interpolating quasiquote plus some kind of primitive ORM using it"; @@ -190247,6 +191357,7 @@ self: { attoparsec base bytestring containers data-default-class lens-family parsec pretty text transformers void ]; + jailbreak = true; homepage = "https://github.com/google/proto-lens"; description = "A lens-based implementation of protocol buffers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -190285,6 +191396,7 @@ self: { base HUnit lens-family proto-lens-protoc test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/google/proto-lens"; description = "Utilities functions to proto-lens"; license = stdenv.lib.licenses.bsd3; @@ -190324,6 +191436,7 @@ self: { base bytestring containers data-default-class filepath haskell-src-exts lens-family proto-lens text ]; + jailbreak = true; description = "Protocol buffer compiler for the proto-lens library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -191114,8 +192227,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160701"; - sha256 = "18d7de6712ead0b01d8c3267e277267ac1817ef5788c0a012d9f4ddff96aeb7a"; + version = "0.20160708"; + sha256 = "6a2a246694723c81312a3963c5750b0ddd60b863b200849a9d2f9d2fe1e85a5f"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -191880,6 +192993,54 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "purescript_0_9_2" = callPackage + ({ mkDerivation, aeson, aeson-better-errors, ansi-terminal + , ansi-wl-pprint, base, base-compat, bower-json, boxes, bytestring + , clock, containers, directory, dlist, edit-distance, file-embed + , 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 + , protolude, regex-tdfa, safe, semigroups, silently, sourcemap + , spdx, split, stm, syb, text, time, transformers + , transformers-base, transformers-compat, unordered-containers + , utf8-string, vector, wai, wai-websockets, warp, websockets + }: + mkDerivation { + pname = "purescript"; + version = "0.9.2"; + sha256 = "08a09bb101a900bf5ec3954cddfbfac11e81550d1ec92221559922f0e5b1acb3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-better-errors ansi-terminal base base-compat bower-json + boxes bytestring clock containers directory dlist edit-distance + filepath fsnotify Glob haskeline http-types language-javascript + lifted-base monad-control monad-logger mtl parallel parsec + pattern-arrows pipes pipes-http process protolude regex-tdfa safe + semigroups sourcemap spdx split stm syb text time transformers + transformers-base transformers-compat unordered-containers + utf8-string vector + ]; + executableHaskellDepends = [ + aeson ansi-terminal ansi-wl-pprint base base-compat boxes + bytestring containers directory file-embed filepath Glob haskeline + http-types monad-logger mtl network optparse-applicative parsec + process protolude split stm text time transformers + transformers-compat utf8-string wai wai-websockets warp websockets + ]; + testHaskellDepends = [ + aeson aeson-better-errors base base-compat boxes bytestring + containers directory filepath Glob haskeline hspec hspec-discover + HUnit mtl optparse-applicative parsec process protolude silently + stm text time transformers transformers-compat utf8-string vector + ]; + homepage = "http://www.purescript.org/"; + description = "PureScript Programming Language Compiler"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "purescript-bridge" = callPackage ({ mkDerivation, base, containers, directory, filepath , generic-deriving, lens, mtl, text, transformers @@ -192468,6 +193629,77 @@ self: { }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; + "qtah-cpp-qt5" = callPackage + ({ mkDerivation, base, qtah-generator }: + mkDerivation { + pname = "qtah-cpp-qt5"; + version = "0.1.0"; + sha256 = "3fb79a7dbccdf84dfbde714be8f2a18cd57fdacd17463b2c72d392f8985107a8"; + libraryHaskellDepends = [ base qtah-generator ]; + homepage = "http://khumba.net/projects/qtah"; + description = "Qt bindings for Haskell - C++ library"; + license = stdenv.lib.licenses.lgpl3; + }) {}; + + "qtah-examples" = callPackage + ({ mkDerivation, base, binary, bytestring, hoppy-runtime, qtah-qt5 + }: + mkDerivation { + pname = "qtah-examples"; + version = "0.1.0"; + sha256 = "12c9a78193e5e2986e734487c94e95be5fc638204b051839a257fb60c2cddd2a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base binary bytestring hoppy-runtime qtah-qt5 + ]; + jailbreak = true; + homepage = "http://khumba.net/projects/qtah"; + description = "Example programs for Qtah Qt bindings"; + license = stdenv.lib.licenses.lgpl3; + }) {}; + + "qtah-generator" = callPackage + ({ mkDerivation, base, containers, directory, filepath, haskell-src + , hoppy-generator, hoppy-std, mtl, process + }: + mkDerivation { + pname = "qtah-generator"; + version = "0.1.0"; + sha256 = "446d1d14e629f5b18bd4d28d3e6d1866d73147ce499a47d84f1bf91f4490126a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ + base containers directory filepath haskell-src hoppy-generator + hoppy-std mtl process + ]; + doHaddock = false; + homepage = "http://khumba.net/projects/qtah"; + description = "Generator for Qtah Qt bindings"; + license = stdenv.lib.licenses.lgpl3; + }) {}; + + "qtah-qt5" = callPackage + ({ mkDerivation, base, binary, bytestring, hoppy-runtime, HUnit + , qtah, qtah-cpp-qt5, qtah-generator + }: + mkDerivation { + pname = "qtah-qt5"; + version = "0.1.0"; + sha256 = "9dd81185388e8f769e38e02eda9ea5a8b9d8f1c26e3dd15825b08d72385962e7"; + libraryHaskellDepends = [ + base binary bytestring hoppy-runtime qtah-cpp-qt5 qtah-generator + ]; + librarySystemDepends = [ qtah ]; + testHaskellDepends = [ base hoppy-runtime HUnit ]; + testSystemDepends = [ qtah ]; + jailbreak = true; + homepage = "http://khumba.net/projects/qtah"; + description = "Qt bindings for Haskell"; + license = stdenv.lib.licenses.lgpl3; + }) {qtah = null;}; + "quadratic-irrational" = callPackage ({ mkDerivation, arithmoi, base, containers, directory, doctest , filepath, mtl, numbers, QuickCheck, tasty, tasty-quickcheck @@ -192879,8 +194111,8 @@ self: { pname = "quickcheck-io"; version = "0.1.1"; sha256 = "a23a6e011aafd211c2521ddb9f61ffb5d256837148b5f5c35a152bdb37d6039b"; - revision = "1"; - editedCabalFile = "fbefc480103a2c6661d5e735f53aa387ae2c8b2e482ffab87955be34b9a69be6"; + revision = "2"; + editedCabalFile = "32b51923eb3a2d9be6436ce14847ec8f1fc8793c8cbf8e0af3581c38a4408409"; libraryHaskellDepends = [ base HUnit QuickCheck ]; jailbreak = true; description = "Use HUnit assertions as QuickCheck properties"; @@ -192894,12 +194126,27 @@ self: { pname = "quickcheck-io"; version = "0.1.2"; sha256 = "50275e5253dcf0c838e340fa19eb841804deb634aeedbf33f0b46a97b89bc1cd"; + revision = "1"; + editedCabalFile = "e0ffcf52d48037f25073c440a0b0f880b4a22e132915a1910c259e8cf8bd1fc3"; libraryHaskellDepends = [ base HUnit QuickCheck ]; homepage = "https://github.com/hspec/quickcheck-io#readme"; description = "Use HUnit assertions as QuickCheck properties"; license = stdenv.lib.licenses.mit; }) {}; + "quickcheck-io_0_1_3" = callPackage + ({ mkDerivation, base, HUnit, QuickCheck }: + mkDerivation { + pname = "quickcheck-io"; + version = "0.1.3"; + sha256 = "d798584e26c51e4cbb0dadd1097cf14472c917240d09fc3d9a2b74961673c8b4"; + libraryHaskellDepends = [ base HUnit QuickCheck ]; + homepage = "https://github.com/hspec/quickcheck-io#readme"; + description = "Use HUnit assertions as QuickCheck properties"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "quickcheck-poly" = callPackage ({ mkDerivation, base, haskell98, hint, MonadCatchIO-mtl , QuickCheck, regex-compat, regex-tdfa @@ -193684,7 +194931,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rainbow" = callPackage + "rainbow_0_28_0_2" = callPackage ({ mkDerivation, base, bytestring, microlens, microlens-th, process , QuickCheck, text }: @@ -193701,6 +194948,26 @@ self: { homepage = "https://www.github.com/massysett/rainbow"; description = "Print text to terminal with colors and effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rainbow" = callPackage + ({ mkDerivation, base, bytestring, lens-simple, process, QuickCheck + , text + }: + mkDerivation { + pname = "rainbow"; + version = "0.28.0.4"; + sha256 = "829296f88be520a9a6c6de715ffa2bb926cecc0135b23f602cc4377bac4e8831"; + libraryHaskellDepends = [ + base bytestring lens-simple process text + ]; + testHaskellDepends = [ + base bytestring lens-simple process QuickCheck text + ]; + homepage = "https://www.github.com/massysett/rainbow"; + description = "Print text to terminal with colors and effects"; + license = stdenv.lib.licenses.bsd3; }) {}; "rainbow-tests" = callPackage @@ -193763,7 +195030,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rainbox" = callPackage + "rainbox_0_18_0_8" = callPackage ({ mkDerivation, base, bytestring, containers, microlens-th , QuickCheck, rainbow, tasty, tasty-quickcheck, text }: @@ -193781,6 +195048,27 @@ self: { homepage = "http://www.github.com/massysett/rainbox"; description = "Two-dimensional box pretty printing, with colors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rainbox" = callPackage + ({ mkDerivation, base, bytestring, containers, lens-simple + , QuickCheck, rainbow, tasty, tasty-quickcheck, text + }: + mkDerivation { + pname = "rainbox"; + version = "0.18.0.10"; + sha256 = "d692e95565b4ce4454536493ae4d6ba256eecf5e88e0495d156008ea76ba1b05"; + libraryHaskellDepends = [ + base bytestring containers lens-simple rainbow text + ]; + testHaskellDepends = [ + base bytestring containers lens-simple QuickCheck rainbow tasty + tasty-quickcheck text + ]; + homepage = "http://www.github.com/massysett/rainbox"; + description = "Two-dimensional box pretty printing, with colors"; + license = stdenv.lib.licenses.bsd3; }) {}; "rake" = callPackage @@ -194360,13 +195648,13 @@ self: { ({ mkDerivation, async, base, containers, foreign-store, stm }: mkDerivation { pname = "rapid"; - version = "0.1.1"; - sha256 = "f1df04a5820b77896475df4de1e3f10ecee871f8e4227809727855b8d0404825"; + version = "0.1.2"; + sha256 = "f65a4fc1560266c9e51c6efe19d2797ef4af51850b23a458167c087da4079035"; libraryHaskellDepends = [ async base containers foreign-store stm ]; homepage = "http://hub.darcs.net/esz/rapid"; - description = "GHCi background threads, hot reloading and reload-surviving values"; + description = "Rapid prototyping with GHCi: hot reloading of running components and reload-surviving values"; license = stdenv.lib.licenses.asl20; }) {}; @@ -195485,7 +196773,10 @@ self: { pname = "records"; version = "0.1.1.6"; sha256 = "c9ccd6d264867b3ad1a3405136e7fdeddbb269fddeaa3abd3120ebc7f1c2f8db"; + revision = "1"; + editedCabalFile = "3bbff6cb24271374eb00769bbf9313dfe54e1e08b8e5104df9e2e4f7df88cd07"; libraryHaskellDepends = [ base kinds type-functions ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/records"; description = "A flexible record system"; license = stdenv.lib.licenses.bsd3; @@ -195975,11 +197266,9 @@ self: { ({ mkDerivation, base, stm, transformers }: mkDerivation { pname = "ref-tf"; - version = "0.4"; - sha256 = "45301b1779ff25f39d04f875ddb6895dbb27cf6f7846a2e1c9c35f126cbb3d11"; + version = "0.4.0.1"; + sha256 = "fcb522c5dca437fbd0c0132c56664a71c48fe2c06b150fcfa77d3bad5ce4be0e"; libraryHaskellDepends = [ base stm transformers ]; - jailbreak = true; - homepage = "http://www.cs.drexel.edu/~mainland/"; description = "A type class for monads with references using type families"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -196308,8 +197597,8 @@ self: { }: mkDerivation { pname = "reflex-dom-colonnade"; - version = "0.3"; - sha256 = "9bf95b9933ee86f7efda769825577dd089c007b9521adfde1bdc87126c732168"; + version = "0.4"; + sha256 = "e57ddd52875bcc2835c264dbada1e19e523ac716b66bc1e198cb9949912812e3"; libraryHaskellDepends = [ base colonnade containers contravariant reflex reflex-dom semigroups vector @@ -197339,8 +198628,8 @@ self: { }: mkDerivation { pname = "rei"; - version = "0.3.5.1"; - sha256 = "f173c5574f8d81b9451add7f84c032f17283747e1b531cecaca4f9e470b5ad8f"; + version = "0.3.7"; + sha256 = "97577658fa9d9801ae3dda8ef3b75e8f59bae547b6dc7e91003381fc639d3e0c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -197809,6 +199098,7 @@ self: { aeson base data-default-class natural-transformation remote-json scotty text transformers warp ]; + jailbreak = true; description = "Web server wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -197875,10 +199165,9 @@ self: { ({ mkDerivation, base, containers, hashable, transformers }: mkDerivation { pname = "renderable"; - version = "0.2.0.0"; - sha256 = "8ba7f9e6f0cb9aa0b9b7e38b0280b41191d3f0303c94f44d40d60a6fca0c18f3"; + version = "0.2.0.1"; + sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; libraryHaskellDepends = [ base containers hashable transformers ]; - jailbreak = true; homepage = "https://github.com/schell/renderable"; description = "An API for managing renderable resources"; license = stdenv.lib.licenses.mit; @@ -198412,6 +199701,33 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "replicant" = callPackage + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, attoparsec + , base, bytestring, containers, either, exceptions, fast-logger + , hedis, hedis-namespace, lens, lens-aeson, lifted-base + , monad-control, monad-logger, mtl, network, resourcet, stm, text + , transformers, transformers-base, websockets, wreq, wuss + }: + mkDerivation { + pname = "replicant"; + version = "0.1.0.0"; + sha256 = "6d694916312054b6525b0fc01c8fe449420fc3d8c8b327bacd77d2fcc0770644"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty ansi-terminal attoparsec base bytestring + containers either exceptions fast-logger hedis hedis-namespace lens + lens-aeson lifted-base monad-control monad-logger mtl network + resourcet stm text transformers transformers-base websockets wreq + wuss + ]; + executableHaskellDepends = [ base bytestring hedis-namespace mtl ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jamesdabbs/replicant#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "repline" = callPackage ({ mkDerivation, base, containers, haskeline, mtl, process }: mkDerivation { @@ -200513,7 +201829,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rethinkdb" = callPackage + "rethinkdb_2_2_0_5" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring , containers, data-default, doctest, mtl, network, scientific, text , time, unordered-containers, utf8-string, vector @@ -200528,10 +201844,32 @@ self: { utf8-string vector ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.2"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rethinkdb" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring + , containers, data-default, doctest, mtl, network, scientific, text + , time, unordered-containers, utf8-string, vector + }: + mkDerivation { + pname = "rethinkdb"; + version = "2.2.0.6"; + sha256 = "5afb37a760a893be64812955f1d5e4a6a45a139806bd1da9e4117af29b4c0e5e"; + libraryHaskellDepends = [ + aeson base base64-bytestring binary bytestring containers + data-default mtl network scientific text time unordered-containers + utf8-string vector + ]; + testHaskellDepends = [ base doctest ]; + homepage = "http://github.com/atnnn/haskell-rethinkdb"; + description = "A driver for RethinkDB 2.2"; + license = stdenv.lib.licenses.asl20; }) {}; "rethinkdb-client-driver_0_0_13" = callPackage @@ -201305,14 +202643,14 @@ self: { }) {}; "ring-buffer" = callPackage - ({ mkDerivation, base, mtl, primitive, QuickCheck, vector }: + ({ mkDerivation, base, exceptions, mtl, primitive, QuickCheck + , vector + }: mkDerivation { pname = "ring-buffer"; - version = "0.2.0"; - sha256 = "4b4d074fbc35267d32fe1124f8346bd5c7e39f9286514b428cb0fc0198d39428"; - revision = "1"; - editedCabalFile = "0fa00f983efef18739d3671c34e272f4a37d379de9b20d466447ab0149e8a958"; - libraryHaskellDepends = [ base mtl primitive vector ]; + version = "0.3"; + sha256 = "f7d142f4b3aedb3a18e8a63d1dcbc0be06b64fece4f73d43261cf82067b25b82"; + libraryHaskellDepends = [ base exceptions mtl primitive vector ]; testHaskellDepends = [ base QuickCheck vector ]; homepage = "http://github.com/bgamari/ring-buffer"; description = "A concurrent, mutable ring-buffer"; @@ -202774,8 +204112,8 @@ self: { }: mkDerivation { pname = "safe-exceptions"; - version = "0.1.1.0"; - sha256 = "88d978f360eef53b553d7f4520598498187f02ae843517bd1d8eac95b1e972c2"; + version = "0.1.2.0"; + sha256 = "06dbc08b55de6bf54223724248bc5b8407f49cdbd9d03aefb8d682d5603a3721"; libraryHaskellDepends = [ base deepseq exceptions transformers ]; testHaskellDepends = [ base hspec void ]; homepage = "https://github.com/fpco/safe-exceptions#readme"; @@ -204682,7 +206020,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scientific" = callPackage + "scientific_0_3_4_8" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck @@ -204703,6 +206041,30 @@ self: { homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "scientific" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty + , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck + , text, vector + }: + mkDerivation { + pname = "scientific"; + version = "0.3.4.9"; + sha256 = "108330662b0af9a04d7da55864211ce12008efe36614d897ba635e80670918a8"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq ghc-prim hashable + integer-gmp text vector + ]; + testHaskellDepends = [ + base binary bytestring QuickCheck smallcheck tasty tasty-ant-xml + tasty-hunit tasty-quickcheck tasty-smallcheck text + ]; + homepage = "https://github.com/basvandijk/scientific"; + description = "Numbers represented using scientific notation"; + license = stdenv.lib.licenses.bsd3; }) {}; "scion" = callPackage @@ -205410,7 +206772,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2;}; - "sdl2" = callPackage + "sdl2_2_1_1" = callPackage ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 , StateVar, text, transformers, vector }: @@ -205426,6 +206788,24 @@ self: { jailbreak = true; description = "Both high- and low-level bindings to the SDL library (version 2.0.3)."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) SDL2;}; + + "sdl2" = callPackage + ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 + , StateVar, text, transformers, vector + }: + mkDerivation { + pname = "sdl2"; + version = "2.1.2.1"; + sha256 = "a30a40495313cc40efd88d72f89e17c18354090fa1764e8217b8ee4d9884d439"; + libraryHaskellDepends = [ + base bytestring exceptions linear StateVar text transformers vector + ]; + librarySystemDepends = [ SDL2 ]; + libraryPkgconfigDepends = [ SDL2 ]; + description = "Both high- and low-level bindings to the SDL library (version 2.0.2)."; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) SDL2;}; "sdl2-cairo" = callPackage @@ -205615,6 +206995,22 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "secd" = callPackage + ({ mkDerivation, base, haskeline, mtl, parsec }: + mkDerivation { + pname = "secd"; + version = "0.1.0.0"; + sha256 = "7b82d863d881d283301f73217de976db47bdf932c7ec6844a460db02ec40a09e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl parsec ]; + executableHaskellDepends = [ base haskeline ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/kseo/secd#readme"; + description = "A Haskell implementation of the SECD abstract machine"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "secdh" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -207202,6 +208598,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant_0_8" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-api-data, http-media, http-types + , mmorph, mtl, network-uri, QuickCheck, quickcheck-instances + , string-conversions, text, url, vault + }: + mkDerivation { + pname = "servant"; + version = "0.8"; + sha256 = "185f989c0cca574bb8142fe627f0b5824004aa1ccf125a580c3aeba953d80d55"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring bytestring-conversion + case-insensitive http-api-data http-media http-types mmorph mtl + network-uri string-conversions text vault + ]; + testHaskellDepends = [ + aeson attoparsec base base-compat bytestring directory doctest + filemanip filepath hspec QuickCheck quickcheck-instances + string-conversions text url + ]; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-JuicyPixels_0_1_0_0" = callPackage ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant , servant-server, wai, warp @@ -207295,19 +208718,23 @@ self: { }) {}; "servant-aeson-specs" = callPackage - ({ mkDerivation, aeson, base, bytestring, doctest, hspec - , hspec-core, QuickCheck, servant, temporary + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory + , doctest, filepath, hspec, hspec-core, mockery, QuickCheck + , quickcheck-instances, random, servant, silently + , string-conversions, temporary, text }: mkDerivation { pname = "servant-aeson-specs"; - version = "0.1"; - sha256 = "ccea599ef6f218d860685db00a38de2ee87602af840b62c0004b0b18643e80a0"; + version = "0.2"; + sha256 = "3d965c6da5ee92762325dc28fb4e51138f0e9efef4251c87ae90de182b878c0f"; libraryHaskellDepends = [ - aeson base bytestring hspec QuickCheck servant + aeson aeson-pretty base bytestring directory filepath hspec + QuickCheck random servant ]; testHaskellDepends = [ - aeson base bytestring doctest hspec hspec-core QuickCheck servant - temporary + aeson aeson-pretty base bytestring directory doctest filepath hspec + hspec-core mockery QuickCheck quickcheck-instances random servant + silently string-conversions temporary text ]; jailbreak = true; homepage = "https://github.com/plow-technologies/servant-aeson-specs#readme"; @@ -207374,6 +208801,8 @@ self: { pname = "servant-blaze"; version = "0.7.1"; sha256 = "90ed1c7a22b83bee344ef3896203f3699b7633bf986ffa064752c3596c072646"; + revision = "1"; + editedCabalFile = "90e239eb13bad18f9a41521580ff97f95550db33b0404f0a3ba04593fa6dee88"; libraryHaskellDepends = [ base blaze-html http-media servant ]; homepage = "http://haskell-servant.readthedocs.org/"; description = "Blaze-html support for servant"; @@ -207386,6 +208815,8 @@ self: { pname = "servant-cassava"; version = "0.7.1"; sha256 = "385bf6187f86c0fb9ba39578eb132118d2ada5dd17f1d0abd6235e4e9113623d"; + revision = "2"; + editedCabalFile = "1bbf4a02f60f2b0d01fa94b6570ff75c1391562f13ea1a1418bd2a1227e9e37a"; libraryHaskellDepends = [ base cassava http-media servant vector ]; homepage = "http://haskell-servant.readthedocs.org/"; description = "Servant CSV content-type for cassava"; @@ -207630,6 +209061,36 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-client_0_8" = 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.8"; + sha256 = "b1099f2024e6c700f1310b25ef7f62f497a886c6859bb3172282750c6d062c2e"; + 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 + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-csharp" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, filepath , heredocs, http-types, lens, mtl, servant, servant-foreign @@ -207885,6 +209346,37 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "servant-docs_0_8" = 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.8"; + sha256 = "51a5caf554e495f48147af44a98c19b48a4da89869c0586c5be9b19b120395e3"; + 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 + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-ede" = callPackage ({ mkDerivation, aeson, base, bytestring, ede, either, filepath , http-media, http-types, semigroups, servant, servant-server, text @@ -207969,6 +209461,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-foreign_0_8" = callPackage + ({ mkDerivation, base, hspec, http-types, lens, servant, text }: + mkDerivation { + pname = "servant-foreign"; + version = "0.8"; + sha256 = "eeec69a6d32e671b95665939bfaeeb4228af7fe05b0ba669ea1ecd70f9f653f0"; + libraryHaskellDepends = [ base http-types lens servant text ]; + testHaskellDepends = [ base hspec ]; + jailbreak = true; + description = "Helpers for generating clients for servant APIs in any programming language"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-github" = callPackage ({ mkDerivation, aeson, base, hspec, http-api-data, http-client , http-link-header, QuickCheck, servant, servant-client, text @@ -208171,12 +209677,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-js_0_8" = callPackage + ({ mkDerivation, base, base-compat, charset, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-foreign, text + }: + mkDerivation { + pname = "servant-js"; + version = "0.8"; + sha256 = "dbbfe65d21e04c8d6a7b28a326e6d4e1f17a4ca2ac497e66c234dfd7abab531d"; + libraryHaskellDepends = [ + base base-compat charset lens servant servant-foreign text + ]; + testHaskellDepends = [ + base base-compat hspec hspec-expectations language-ecmascript lens + servant text + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "Automatically derive javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; version = "0.7.1"; sha256 = "ec26ba7d159b09be10beacf6242f6ae1bd111e9c738bfbf3cf2f560f48e0fe40"; + revision = "1"; + editedCabalFile = "1fd84dbff6493df7e55bb6f4f6bc194f48ad7e9f63b404669139b1dd231d1cc2"; libraryHaskellDepends = [ base http-media lucid servant ]; homepage = "http://haskell-servant.readthedocs.org/"; description = "Servant support for lucid"; @@ -208210,6 +209741,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-mock_0_8" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-mock"; + version = "0.8"; + sha256 = "60c61f210a7e976f21337a93c19a08c349c346ae25a3b25e5100c4b9503fae83"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-types QuickCheck servant servant-server + transformers wai + ]; + executableHaskellDepends = [ + aeson base QuickCheck servant-server warp + ]; + testHaskellDepends = [ + aeson base bytestring-conversion hspec hspec-wai QuickCheck servant + servant-server wai + ]; + jailbreak = true; + homepage = "http://github.com/haskell-servant/servant"; + description = "Derive a mock server for free from your servant API types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-pandoc_0_4_1_1" = callPackage ({ mkDerivation, base, bytestring, http-media, lens, pandoc-types , servant-docs, text, unordered-containers @@ -208688,6 +210248,43 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-server_0_8" = 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, 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.8"; + sha256 = "31bc2044922d385dacac0c17cd0d56d99a8614efd972e85474b3ad81d5a1069e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base-compat base64-bytestring bytestring + containers filepath http-api-data http-types 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 + ]; + jailbreak = true; + homepage = "http://haskell-servant.readthedocs.org/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-subscriber" = callPackage ({ mkDerivation, aeson, aeson-compat, async, attoparsec, base , base-compat, blaze-builder, blaze-html, blaze-markup, bytestring @@ -208805,6 +210402,8 @@ self: { pname = "servant-swagger"; version = "1.1"; sha256 = "cf3aed6fd51e7078e27c0ee745f2718c43058047dd0996256a920675dee9f311"; + revision = "1"; + editedCabalFile = "71194662078eb9978c49774cc45f0489bd699ea657af03fafe3996be58ac3e06"; libraryHaskellDepends = [ aeson base bytestring hspec http-media insert-ordered-containers lens QuickCheck servant swagger2 text unordered-containers @@ -208829,6 +210428,8 @@ self: { pname = "servant-swagger-ui"; version = "0.1.0.2.1.4"; sha256 = "88fee2a597f8810a7da56c15210e4019b407456e4a127fad5e9b08b2a8f41ff1"; + revision = "1"; + editedCabalFile = "d2fb00b812c0d2087ca43e38c0a5629940c3e6313b968faf05db36d4c89ff7ef"; libraryHaskellDepends = [ base blaze-markup bytestring directory file-embed filepath http-media servant servant-blaze servant-server servant-swagger @@ -208853,8 +210454,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "7"; - editedCabalFile = "9a296b06cf199ab8e8ff19172601c239c77d885196a258ee5f4eaac4ebe34e66"; + revision = "8"; + editedCabalFile = "134f4bb4d23eb291360e897c9f83e74f22de17918452b6de79b2044c97197c6b"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -209579,6 +211180,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "sfnt2woff" = callPackage + ({ mkDerivation, base, bytestring, filepath, optparse-applicative + , parsec, zlib + }: + mkDerivation { + pname = "sfnt2woff"; + version = "0.1.0.0"; + sha256 = "2b016d713c089de54fbdcfa9e4f6817afada937b9ae2de0fc9ea507c72ea7924"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring ]; + librarySystemDepends = [ zlib ]; + executableHaskellDepends = [ + base bytestring filepath optparse-applicative parsec + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/kseo/sfnt2woff#readme"; + description = "A command line tool to convert TrueType/OpenType fonts to WOFF format"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) zlib;}; + "sgd" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , filepath, lazy-io, logfloat, monad-par, mtl, primitive, random @@ -211122,6 +212744,7 @@ self: { base bytestring feed HTTP mime-types network-uri shellmate tagsoup text xml ]; + jailbreak = true; homepage = "https://github.com/valderman/shellmate"; description = "Extra functionality for shellmate"; license = stdenv.lib.licenses.bsd3; @@ -212542,13 +214165,12 @@ self: { }: mkDerivation { pname = "simple-sql-parser"; - version = "0.4.1"; - sha256 = "18fd27a8b274ab74a4949a1738498c0903e9e74645f40b113324263b1753e543"; + version = "0.4.2"; + sha256 = "ba720de50c82b47a90a1774e7b50365483801cfcb19e664cd184e04003ec7b04"; libraryHaskellDepends = [ base mtl parsec pretty ]; testHaskellDepends = [ base HUnit mtl parsec pretty test-framework test-framework-hunit ]; - jailbreak = true; homepage = "http://jakewheat.github.io/simple-sql-parser/"; description = "A parser for SQL queries"; license = stdenv.lib.licenses.bsd3; @@ -213029,6 +214651,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "siphon" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, colonnade + , contravariant, either, HUnit, pipes, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, vector + }: + mkDerivation { + pname = "siphon"; + version = "0.1"; + sha256 = "9035f961ddc57cf6f552b38a943aa9d57368dbfa7c5e5928150b3eae9140f4a6"; + libraryHaskellDepends = [ + attoparsec base bytestring colonnade contravariant pipes text + vector + ]; + testHaskellDepends = [ + base bytestring colonnade contravariant either HUnit pipes + QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 text + ]; + homepage = "https://github.com/andrewthad/colonnade#readme"; + description = "Generic types and functions for columnar encoding and decoding"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "sirkel" = callPackage ({ mkDerivation, base, binary, bytestring, containers, hashtables , haskell98, random, remote, SHA, transformers @@ -214140,8 +215785,8 @@ self: { }: mkDerivation { pname = "smsaero"; - version = "0.6"; - sha256 = "d800313950e5d9278850387c9b3795f1864a4796d25b1bc1143f3e14ffabd72f"; + version = "0.6.1"; + sha256 = "95d9bd63df306b6ed2ebee3a31c91484bcc29fa72cab77e89f55746bd03bf102"; libraryHaskellDepends = [ aeson base containers http-api-data http-client servant servant-client servant-docs text time @@ -216681,22 +218326,47 @@ self: { }) {}; "solga" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-types - , resourcet, text, wai, wai-extra + ({ mkDerivation, aeson, base, bytestring, containers, hashable + , hspec, hspec-wai, hspec-wai-json, http-types, QuickCheck + , resourcet, safe-exceptions, scientific, text + , unordered-containers, vector, wai, wai-extra }: mkDerivation { pname = "solga"; - version = "0.1.0.0"; - sha256 = "08eaf70e9e6c36c3b42dd60809d326e714040adfba75e43db8926562669bfd21"; + version = "0.1.0.1"; + sha256 = "4949717429b3698d619bca644fedb340b8f0eaac50e3e9b0b55007d9eb1db8ba"; libraryHaskellDepends = [ - aeson base bytestring containers http-types resourcet text wai - wai-extra + aeson base bytestring containers http-types resourcet + safe-exceptions text wai wai-extra + ]; + testHaskellDepends = [ + aeson base bytestring hashable hspec hspec-wai hspec-wai-json + http-types QuickCheck scientific text unordered-containers vector + wai wai-extra ]; homepage = "https://github.com/chpatrick/solga"; description = "Simple typesafe web routing"; license = stdenv.lib.licenses.mit; }) {}; + "solga-swagger" = callPackage + ({ mkDerivation, base, bytestring, dlist, http-types + , insert-ordered-containers, lens, mtl, solga, swagger2, text + , unordered-containers + }: + mkDerivation { + pname = "solga-swagger"; + version = "0.1.0.1"; + sha256 = "ceac56b2de41102e739301b5edf60af546e6178f139313681cb46bfb693f765f"; + libraryHaskellDepends = [ + base bytestring dlist http-types insert-ordered-containers lens mtl + solga swagger2 text unordered-containers + ]; + homepage = "https://github.com/chpatrick/solga"; + description = "Swagger generation for Solga"; + license = stdenv.lib.licenses.mit; + }) {}; + "solr" = callPackage ({ mkDerivation, base, base-prelude, bytestring , bytestring-tree-builder, case-insensitive, contravariant @@ -218558,6 +220228,30 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "stache" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, deepseq + , directory, exceptions, file-embed, filepath, hspec + , hspec-megaparsec, megaparsec, mtl, template-haskell, text + , unordered-containers, vector, yaml + }: + mkDerivation { + pname = "stache"; + version = "0.1.2"; + sha256 = "67b8e3cfd8e1d31aa3e3c518292ccaf84841bbdd08aefcf533b3b4d77686d680"; + libraryHaskellDepends = [ + aeson base bytestring containers deepseq directory exceptions + filepath megaparsec mtl template-haskell text unordered-containers + vector + ]; + testHaskellDepends = [ + aeson base bytestring containers file-embed hspec hspec-megaparsec + megaparsec text yaml + ]; + homepage = "https://github.com/stackbuilders/stache"; + description = "Mustache templates for Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "stack_0_1_3_0" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, base16-bytestring , base64-bytestring, bifunctors, binary, blaze-builder, byteable @@ -219286,8 +220980,8 @@ self: { pname = "stack"; version = "1.1.2"; sha256 = "fc836b24fdeac54244fc79b6775d5edee146b7e552ad8e69596c7cc2f2b10625"; - revision = "5"; - editedCabalFile = "ae5ee2b2bf908224580455dd2ba16b1814fbf611465e9b949dcd99e78ec6722d"; + revision = "6"; + editedCabalFile = "9b8c21c5af64fe74772ea3f17e2a1fe8d295a083948e6631bbaa81f3305b2d95"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -219378,17 +221072,18 @@ self: { "stack-run" = callPackage ({ mkDerivation, ansi-terminal, async, base, bytestring, Cabal , conduit, conduit-extra, directory, filepath, MissingH - , projectroot, time + , projectroot, questioner, stm, terminal-size, time, vty }: mkDerivation { pname = "stack-run"; - version = "0.1.0.7"; - sha256 = "197c65164017482d6409fbdb31ae0933396b08530bc82faa2948000cc4ecdcad"; + version = "0.1.1.0"; + sha256 = "06fe29fe67a1fea82708b38d6ebb9752f5c4951261d6a8670ebbfbac4b6691ae"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ ansi-terminal async base bytestring Cabal conduit conduit-extra - directory filepath MissingH projectroot time + directory filepath MissingH projectroot questioner stm + terminal-size time vty ]; homepage = "https://github.com/yamadapc/stack-run"; description = "An equivalent to cabal run for stack"; @@ -219995,7 +221690,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stackage-curator" = callPackage + "stackage-curator_0_14_0" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3, async , base, base16-bytestring, binary, binary-orphans, binary-tagged , blaze-html, byteable, bytestring, Cabal, classy-prelude-conduit @@ -220044,6 +221739,53 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stackage-curator" = callPackage + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3, async + , base, base16-bytestring, blaze-html, byteable, bytestring, Cabal + , classy-prelude-conduit, conduit, conduit-extra, containers + , cryptohash, cryptohash-conduit, data-default-class, directory + , exceptions, filepath, hashable, hspec, html-conduit, http-client + , http-client-tls, http-conduit, lucid, mime-types, monad-unlift + , monad-unlift-ref, mono-traversable, mtl, old-locale + , optparse-applicative, optparse-simple, process, QuickCheck + , resourcet, safe, semigroups, stackage-install, stm, store + , streaming-commons, syb, system-fileio, system-filepath, tar + , temporary, text, time, transformers, unix-compat + , unordered-containers, utf8-string, vector, xml-conduit, xml-types + , yaml, zlib + }: + mkDerivation { + pname = "stackage-curator"; + version = "0.14.1"; + sha256 = "245df3b4c16323c4896422be6eaeb5bc019c52f387399ea8ecfe52e7ad3b4ecb"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson amazonka amazonka-core amazonka-s3 async base + base16-bytestring blaze-html byteable bytestring Cabal + classy-prelude-conduit conduit conduit-extra containers cryptohash + cryptohash-conduit data-default-class directory exceptions filepath + hashable html-conduit http-client http-client-tls http-conduit + lucid mime-types monad-unlift monad-unlift-ref mono-traversable mtl + old-locale process resourcet safe semigroups stackage-install stm + store streaming-commons syb system-fileio system-filepath tar + temporary text time transformers unix-compat unordered-containers + utf8-string vector xml-conduit xml-types yaml zlib + ]; + executableHaskellDepends = [ + aeson base http-client http-client-tls optparse-applicative + optparse-simple system-filepath text + ]; + testHaskellDepends = [ + base Cabal classy-prelude-conduit containers directory hspec + http-client http-client-tls QuickCheck text yaml + ]; + homepage = "https://github.com/fpco/stackage-curator"; + description = "Tools for curating Stackage bundles"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "stackage-install_0_1_0_3" = callPackage ({ mkDerivation, aeson, async, base, bytestring, containers , cryptohash, directory, filepath, http-client, http-client-tls @@ -220999,10 +222741,8 @@ self: { }: mkDerivation { pname = "steeloverseer"; - version = "2.0"; - sha256 = "44a62c33eb251368dfa4fd97f317c4375dc65e6d66fc2362d3c17bcca82b0abf"; - revision = "1"; - editedCabalFile = "ccc318eb672b41d63104450aa7c25947df290ac9efc7c0ae62b727ad5f5898f2"; + version = "2.0.0.1"; + sha256 = "376994767ee8afacebf05f18ad0517bf1fa7557f5c44697c3f476a575d6ea334"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -221013,6 +222753,7 @@ self: { base bytestring directory filepath fsnotify optparse-applicative regex-tdfa semigroups yaml ]; + jailbreak = true; homepage = "https://github.com/schell/steeloverseer"; description = "A file watcher and development tool"; license = stdenv.lib.licenses.bsd3; @@ -221068,8 +222809,8 @@ self: { }: mkDerivation { pname = "stgi"; - version = "1"; - sha256 = "b2d4d39dccc636ce8b65f2d4104ac0c282eeb3e3b22663eefb7249c465dc10e4"; + version = "1.0.1"; + sha256 = "2fc1cdb0a0144757dbec6090a2fc9dd7b97096802465673bef6b9ee59e87e92a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -224634,8 +226375,8 @@ self: { ({ mkDerivation, base, Cabal, containers, directory, filepath }: mkDerivation { pname = "superdoc"; - version = "0.1.2.2"; - sha256 = "ec9d79da2c20f55a426fcacac18563fe15762442a25bd460320ce01a2b6ce963"; + version = "0.1.2.3"; + sha256 = "99666b5f574c053c8c5282a89dc3473e8ce0137fa93f61100f2fd7f83ea2a6e7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -224644,7 +226385,6 @@ self: { executableHaskellDepends = [ base Cabal containers directory filepath ]; - jailbreak = true; homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/"; description = "Additional documentation markup and Unicode support"; license = stdenv.lib.licenses.bsd3; @@ -226630,6 +228370,7 @@ self: { base data-default-class data-default-instances-base hspec HUnit QuickCheck ]; + jailbreak = true; homepage = "https://github.com/muesli4/table-layout"; description = "Layout text as grid or table"; license = stdenv.lib.licenses.bsd3; @@ -227189,7 +228930,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_10" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -227199,9 +228940,10 @@ self: { homepage = "https://github.com/ndmitchell/tagsoup#readme"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup_0_14" = callPackage + "tagsoup" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -227211,7 +228953,6 @@ self: { homepage = "https://github.com/ndmitchell/tagsoup#readme"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagsoup-ht" = callPackage @@ -227240,6 +228981,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "tagsoup-megaparsec" = callPackage + ({ mkDerivation, base, hspec, megaparsec, raw-strings-qq, tagsoup + }: + mkDerivation { + pname = "tagsoup-megaparsec"; + version = "0.1.0.0"; + sha256 = "6e77efecb8188cc938194e94784b4944c76cc54443ba9c271033ec592b1bae5c"; + libraryHaskellDepends = [ base megaparsec tagsoup ]; + testHaskellDepends = [ + base hspec megaparsec raw-strings-qq tagsoup + ]; + jailbreak = true; + homepage = "https://github.com/kseo/tagsoup-megaparsec#readme"; + description = "A Tag token parser and Tag specific parsing combinators"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tagsoup-parsec" = callPackage ({ mkDerivation, base, parsec, tagsoup }: mkDerivation { @@ -228297,12 +230055,11 @@ self: { }: mkDerivation { pname = "tasty-program"; - version = "1.0.3"; - sha256 = "1659e7651cd638cd1f7c80c0f5cd9be87358d2cc4a9c98f2f23240583e5a06a3"; + version = "1.0.5"; + sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; libraryHaskellDepends = [ base deepseq directory filepath process tasty ]; - jailbreak = true; homepage = "https://github.com/jstolarek/tasty-program"; description = "Use tasty framework to test whether a program executes correctly"; license = stdenv.lib.licenses.bsd3; @@ -228358,7 +230115,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty-rerun" = callPackage + "tasty-rerun_1_1_5" = callPackage ({ mkDerivation, base, containers, mtl, optparse-applicative , reducers, split, stm, tagged, tasty, transformers }: @@ -228375,6 +230132,24 @@ self: { homepage = "http://github.com/ocharles/tasty-rerun"; description = "Run tests by filtering the test tree depending on the result of previous test runs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-rerun" = callPackage + ({ mkDerivation, base, containers, mtl, optparse-applicative + , reducers, split, stm, tagged, tasty, transformers + }: + mkDerivation { + pname = "tasty-rerun"; + version = "1.1.6"; + sha256 = "ed33270c8a1f1576985e9907087921fd4f8fba19253fe3bfefec2d05f9799d79"; + libraryHaskellDepends = [ + base containers mtl optparse-applicative reducers split stm tagged + tasty transformers + ]; + homepage = "http://github.com/ocharles/tasty-rerun"; + description = "Run tests by filtering the test tree depending on the result of previous test runs"; + license = stdenv.lib.licenses.bsd3; }) {}; "tasty-silver_3_1_7" = callPackage @@ -228757,7 +230532,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "telegram-api" = callPackage + "telegram-api_0_4_3_0" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, either , filepath, hjpath, hspec, http-api-data, http-client , http-client-tls, http-media, http-types, mime-types @@ -228781,6 +230556,33 @@ self: { homepage = "http://github.com/klappvisor/haskell-telegram-api#readme"; description = "Telegram Bot API bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "telegram-api" = callPackage + ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, either + , filepath, hjpath, hspec, http-api-data, http-client + , http-client-tls, http-media, http-types, mime-types + , optparse-applicative, servant, servant-client, string-conversions + , text, transformers, utf8-string + }: + mkDerivation { + pname = "telegram-api"; + version = "0.4.3.1"; + sha256 = "b51fa07d2dfa010a467a43b2a86dc56ec7a7adaf91b379528a97b6745771dfc8"; + libraryHaskellDepends = [ + aeson base bytestring either http-api-data http-client http-media + http-types mime-types servant servant-client string-conversions + text transformers + ]; + testHaskellDepends = [ + aeson ansi-wl-pprint base filepath hjpath hspec http-client + http-client-tls http-types optparse-applicative servant + servant-client text transformers utf8-string + ]; + homepage = "http://github.com/klappvisor/haskell-telegram-api#readme"; + description = "Telegram Bot API bindings"; + license = stdenv.lib.licenses.bsd3; }) {}; "teleport" = callPackage @@ -228885,6 +230687,7 @@ self: { base bifunctors bytestring containers http-conduit mtl network regex-pcre split tagsoup text time transformers ]; + jailbreak = true; homepage = "https://github.com/phaazon/tellbot"; description = "IRC tellbot"; license = stdenv.lib.licenses.gpl3; @@ -229654,8 +231457,8 @@ self: { pname = "test-framework-quickcheck2"; version = "0.3.0.3"; sha256 = "cc96c6f30c29b16a3f7ec5c108f320a6c0f0d3ef71afff8a1cb98caf33ffe18a"; - revision = "1"; - editedCabalFile = "14fdf07c345e9460882b975851739afc2cf62f0c9930c38d0fee5b0943351638"; + revision = "2"; + editedCabalFile = "989f988d0c4356d7fc1d87c062904d02eba0637c5adba428b349aeb709d81bc0"; libraryHaskellDepends = [ base extensible-exceptions QuickCheck random test-framework ]; @@ -231245,6 +233048,8 @@ self: { pname = "text-show"; version = "3.2.2"; sha256 = "93a9479d19f303d4e8310ae8e35a8609d27ef6e443f8a4531c73bd5d1bbd4c40"; + revision = "1"; + editedCabalFile = "2d52fb92d26513d648126820f6abffa4e2971fde5565a3608982dabec0cd7152"; libraryHaskellDepends = [ array base base-compat bifunctors bytestring bytestring-builder containers generic-deriving ghc-boot ghc-prim integer-gmp nats @@ -231276,6 +233081,8 @@ self: { pname = "text-show-instances"; version = "3.2.1"; sha256 = "33433b9d15d43254e1dbca31fdf226579a77c8c12e98e76a29a566703a000c68"; + revision = "1"; + editedCabalFile = "779438a1fe229b098458abe877276c851c4fb8ccf095213d9b7018e95715e04e"; libraryHaskellDepends = [ base base-compat bifunctors binary bytestring containers directory haskeline hoopl hpc old-locale old-time pretty random semigroups @@ -231382,6 +233189,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "text-zipper-monad" = callPackage + ({ mkDerivation, base, hspec, mtl, text-zipper }: + mkDerivation { + pname = "text-zipper-monad"; + version = "0.1.0.0"; + sha256 = "39d3c7bd5b79226e477bb9fd3be1cbcadb2674969525ff2e441642e5de42756b"; + libraryHaskellDepends = [ base mtl text-zipper ]; + testHaskellDepends = [ base hspec text-zipper ]; + homepage = "https://github.com/kseo/text-zipper-monad#readme"; + description = "Monadic interface to the text-zipper package"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "text1" = callPackage ({ mkDerivation, base, binary, directory, doctest, filepath, lens , QuickCheck, semigroups, template-haskell, text @@ -232078,7 +233898,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-lift-instances" = callPackage + "th-lift-instances_0_1_9" = callPackage ({ mkDerivation, base, bytestring, containers, QuickCheck , template-haskell, text, th-lift, vector }: @@ -232095,6 +233915,26 @@ self: { homepage = "http://github.com/bennofs/th-lift-instances/"; description = "Lift instances for template-haskell for common data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "th-lift-instances" = callPackage + ({ mkDerivation, base, bytestring, containers, QuickCheck + , template-haskell, text, th-lift, vector + }: + mkDerivation { + pname = "th-lift-instances"; + version = "0.1.10"; + sha256 = "a3b8afd8789f508d9a421952994ff82cd33c40e99f81c85080fee07044ff2174"; + libraryHaskellDepends = [ + base bytestring containers template-haskell text th-lift vector + ]; + testHaskellDepends = [ + base bytestring containers QuickCheck template-haskell text vector + ]; + homepage = "http://github.com/bennofs/th-lift-instances/"; + description = "Lift instances for template-haskell for common data types"; + license = stdenv.lib.licenses.bsd3; }) {}; "th-orphans_0_8_2" = callPackage @@ -232460,6 +234300,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "thentos-cookie-session" = callPackage + ({ mkDerivation, aeson, base, bytestring, cookie, cryptonite + , digestive-functors, hspec, hspec-wai, http-types, lens, memory + , mtl, resourcet, sandi, servant, servant-server + , string-conversions, text, transformers, vault, wai, wai-extra + , wai-session + }: + mkDerivation { + pname = "thentos-cookie-session"; + version = "0.9.0"; + sha256 = "b1550fa69251a85c29f0396b6fdac937a21fe151151162e8834233284239ec77"; + libraryHaskellDepends = [ + aeson base bytestring cookie cryptonite digestive-functors lens + memory mtl resourcet sandi servant servant-server + string-conversions text transformers vault wai wai-extra + wai-session + ]; + testHaskellDepends = [ + base cookie hspec hspec-wai http-types servant-server transformers + vault wai wai-extra wai-session + ]; + jailbreak = true; + homepage = "https://github.com/liqd/thentos"; + description = "All-in-one session handling for servant-based frontends"; + license = "AGPL"; + }) {}; + "theoremquest" = callPackage ({ mkDerivation, base, HTTP, json, utf8-string }: mkDerivation { @@ -236339,8 +238206,8 @@ self: { }: mkDerivation { pname = "tsvsql"; - version = "0.2.0.0"; - sha256 = "ebbdba194d7bdb248631e96de0635d773b0fac6adb979722dbb257848b367382"; + version = "0.2.1.0"; + sha256 = "5c8a29e01fcf8e3d2cc0a9cb4e2e0635791d2f2aa8c248f7eadc5c093ebfd8e3"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -238107,6 +239974,7 @@ self: { version = "0.0.0.3"; sha256 = "c7f8bcc8bfc2b87f7ce4e48ce422c3a8cfe2d4807c4edacca638c2a55715523b"; libraryHaskellDepends = [ base type-level ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check"; description = "Type equality check"; license = stdenv.lib.licenses.bsd3; @@ -238132,7 +240000,10 @@ self: { pname = "type-functions"; version = "0.2.0.3"; sha256 = "55ed9016a713a74f40c9b6c148b6d12cb749a5b3cbfcd55dd0e3fef1c3e446ef"; + revision = "1"; + editedCabalFile = "cbcb6222648cd677de48ef9592d2f2387f8b3fef59b9a5411e3864c561c795ab"; libraryHaskellDepends = [ base kinds ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-functions"; description = "Emulation of type-level functions"; license = stdenv.lib.licenses.bsd3; @@ -238182,8 +240053,8 @@ self: { ({ mkDerivation, base, syb, template-haskell }: mkDerivation { pname = "type-level"; - version = "0.2.4"; - sha256 = "3bbdca0507187b72675dc182bb05da68d7e080693fa1ffe9fb961f693c81f7b1"; + version = "0.3.0"; + sha256 = "9976bcbbca38b208a6aa45e1046f82dc369175809d0b16850f65a026d66c890f"; libraryHaskellDepends = [ base syb template-haskell ]; homepage = "http://code.haskell.org/type-level"; description = "Type-level programming library"; @@ -238901,6 +240772,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; + jailbreak = true; preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; @@ -238928,6 +240800,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; + jailbreak = true; preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; @@ -242429,7 +244302,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "uuid-orphans" = callPackage + "uuid-orphans_1_3_11_1" = callPackage ({ mkDerivation, base, safecopy, text, uuid-types, web-routes }: mkDerivation { pname = "uuid-orphans"; @@ -242443,6 +244316,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "uuid-orphans" = callPackage + ({ mkDerivation, base, safecopy, text, th-lift, uuid-types + , web-routes + }: + mkDerivation { + pname = "uuid-orphans"; + version = "1.4.1"; + sha256 = "3261ff63bc6d4dd8365272b16e02801b48a14c5ac46cd46428ef169b4d7c1da6"; + libraryHaskellDepends = [ + base safecopy text th-lift uuid-types web-routes + ]; + description = "Orphan instances for the UUID datatype"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "uuid-quasi" = callPackage ({ mkDerivation, base, template-haskell, uuid }: mkDerivation { @@ -242859,6 +244748,18 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "validity" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "validity"; + version = "0.1.0.0"; + sha256 = "f4ca276d10484547ce104a63d0bdb35df60d18a185c5a5db426f97c9e4f69aa2"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "Validity typeclass"; + license = stdenv.lib.licenses.mit; + }) {}; + "value-supply" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -242967,14 +244868,13 @@ self: { ({ mkDerivation, base, hspec, QuickCheck, time, transformers }: mkDerivation { pname = "varying"; - version = "0.5.0.0"; - sha256 = "e41ea4ffce851b55736bac29a3aefe505979eb5e7c9d5794e5db892cb39e1cba"; + version = "0.5.0.2"; + sha256 = "86b2972408ebb8e99ca1194c43ac68a6a51ce33b0e4ee627b42b1646bfd758fe"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base time transformers ]; + libraryHaskellDepends = [ base transformers ]; executableHaskellDepends = [ base time transformers ]; testHaskellDepends = [ base hspec QuickCheck time transformers ]; - jailbreak = true; homepage = "https://github.com/schell/varying"; description = "FRP through value streams and monadic splines"; license = stdenv.lib.licenses.mit; @@ -245238,8 +247138,8 @@ self: { }: mkDerivation { pname = "wai-app-file-cgi"; - version = "3.1.2"; - sha256 = "c6d035173d100d15f0d9e4aa360f49ec1d3347c7aef72f3b1e34f556974a5eb4"; + version = "3.1.3"; + sha256 = "6fce1db57f84faef811e8e08f48fc6bef6daa136a61dc8abc03b83908955af3b"; libraryHaskellDepends = [ array attoparsec attoparsec-conduit base blaze-builder blaze-html bytestring case-insensitive conduit conduit-extra containers @@ -245252,6 +247152,7 @@ self: { base bytestring conduit conduit-extra directory doctest filepath hspec HTTP http-types unix wai warp ]; + jailbreak = true; homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "File/CGI/Rev Proxy App of WAI"; license = stdenv.lib.licenses.bsd3; @@ -246901,14 +248802,14 @@ self: { "wai-http2-extra" = callPackage ({ mkDerivation, auto-update, base, bytestring, containers, doctest - , wai, warp, word8 + , http-types, wai, warp, word8 }: mkDerivation { pname = "wai-http2-extra"; - version = "0.0.0"; - sha256 = "594243350fc71df4007c9a7c804dce2cea08349ca316689fe27655b7f0f7d70d"; + version = "0.0.1"; + sha256 = "3f35e563d8232bad3d83050b8ec1946d6b3c33646468ded94b999d9c972513f6"; libraryHaskellDepends = [ - auto-update base bytestring containers wai warp word8 + auto-update base bytestring containers http-types wai warp word8 ]; testHaskellDepends = [ base doctest ]; homepage = "http://github.com/yesodweb/wai"; @@ -248498,7 +250399,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-transformers" = callPackage + "wai-transformers_0_0_6" = callPackage ({ mkDerivation, base, exceptions, transformers, wai , wai-websockets, websockets }: @@ -248511,6 +250412,22 @@ self: { ]; description = "Simple parameterization of Wai's Application type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-transformers" = callPackage + ({ mkDerivation, base, exceptions, transformers, wai + , wai-websockets, websockets + }: + mkDerivation { + pname = "wai-transformers"; + version = "0.0.7"; + sha256 = "1a1801a2048eb84808a09e44cb899d6cc689948619eeeea005e312ea5a2fe32c"; + libraryHaskellDepends = [ + base exceptions transformers wai wai-websockets websockets + ]; + description = "Simple parameterization of Wai's Application type"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-util" = callPackage @@ -251258,10 +253175,9 @@ self: { ({ mkDerivation, base, primitive, vector }: mkDerivation { pname = "webrtc-vad"; - version = "0.1.0.2"; - sha256 = "d3ad3ba58ca2389102be09bda8bca69a525c766ada824898cf833d1993368293"; + version = "0.1.0.3"; + sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; libraryHaskellDepends = [ base primitive vector ]; - jailbreak = true; description = "Easy voice activity detection"; license = stdenv.lib.licenses.mit; }) {}; @@ -252087,6 +254003,25 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {kernel32 = null; ws2_32 = null;}; + "wire-streams" = callPackage + ({ mkDerivation, base, binary, bytestring, Cabal + , cabal-test-quickcheck, cereal, io-streams, QuickCheck + }: + mkDerivation { + pname = "wire-streams"; + version = "0.0.2.0"; + sha256 = "2b03e9c88767a371d59ca5d941db3c3f5b11ba1b8a20606732a706acebe6dd4f"; + libraryHaskellDepends = [ + base binary bytestring cereal io-streams + ]; + testHaskellDepends = [ + base binary bytestring Cabal cabal-test-quickcheck cereal + io-streams QuickCheck + ]; + description = "Use cereal or binary with io-streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wiring" = callPackage ({ mkDerivation, base, hspec, mtl, QuickCheck, template-haskell , transformers @@ -254719,7 +256654,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_2_2_2" = callPackage ({ mkDerivation, base, base64-bytestring, binary-search, bytestring , conduit, containers, data-default, extra, filepath, HUnit, lens , mtl, network-uri, old-locale, raw-strings-qq, safe, smallcheck @@ -254744,6 +256679,33 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xlsx" = callPackage + ({ mkDerivation, base, base64-bytestring, binary-search, bytestring + , conduit, containers, data-default, Diff, extra, filepath, groom + , lens, mtl, network-uri, old-locale, raw-strings-qq, safe + , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time + , transformers, vector, xml-conduit, zip-archive, zlib + }: + mkDerivation { + pname = "xlsx"; + version = "0.2.3"; + sha256 = "c1170f83d96c4fd500b2a09aa016d6e52668cabf5442e5ba7aa5c64b0e817563"; + libraryHaskellDepends = [ + base base64-bytestring binary-search bytestring conduit containers + data-default extra filepath lens mtl network-uri old-locale safe + text time transformers vector xml-conduit zip-archive zlib + ]; + testHaskellDepends = [ + base bytestring containers Diff groom lens mtl raw-strings-qq + smallcheck tasty tasty-hunit tasty-smallcheck time vector + xml-conduit + ]; + homepage = "https://github.com/qrilka/xlsx"; + description = "Simple and incomplete Excel file parser/writer"; + license = stdenv.lib.licenses.mit; }) {}; "xlsx-tabular_0_1_0_0" = callPackage @@ -255327,13 +257289,12 @@ self: { }) {}; "xml-extractors" = callPackage - ({ mkDerivation, base, mtl, safe, transformers, xml }: + ({ mkDerivation, base, mtl, transformers, xml }: mkDerivation { pname = "xml-extractors"; - version = "0.4.0.1"; - sha256 = "38ffa6ab354dcaddbdd1ca4c187418715fd7d7de77abc4861c9840c88bce1e79"; - libraryHaskellDepends = [ base mtl safe transformers xml ]; - jailbreak = true; + version = "0.4.0.2"; + sha256 = "aa2705b0ac32a4a88b50f377fa3d8dc7f506c8503d97136bf92bcb3863a07f47"; + libraryHaskellDepends = [ base mtl transformers xml ]; homepage = "https://github.com/holmisen/xml-extractors"; description = "Extension to the xml package to extract data from parsed xml"; license = stdenv.lib.licenses.bsd3; @@ -263723,23 +265684,20 @@ self: { }) {}; "yesod-worker" = callPackage - ({ mkDerivation, base, containers, fast-logger, monad-control - , monad-logger, persistent, resourcet, stm, template-haskell - , transformers, transformers-base, yesod, yesod-core + ({ mkDerivation, base, blaze-markup, bytestring, containers, hedis + , keenser, thyme, yesod }: mkDerivation { pname = "yesod-worker"; - version = "0.0.1"; - sha256 = "6dde8ff89cd2a4832c6f24172e3694b5a4f8767ad2315c6734b58a0e61e095e7"; + version = "0.1.0.0"; + sha256 = "f8076954537f74a098644422a3193d184308559cd35bc980f2ab7663b5f8cada"; libraryHaskellDepends = [ - base containers fast-logger monad-control monad-logger persistent - resourcet stm template-haskell transformers transformers-base yesod - yesod-core + base blaze-markup bytestring containers hedis keenser thyme yesod ]; - jailbreak = true; - homepage = "https://github.com/jamesdabbs/yesod-worker"; - description = "Drop-in(ish) background worker system for Yesod apps"; - license = stdenv.lib.licenses.gpl3; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jamesdabbs/yesod-worker#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -264351,8 +266309,8 @@ self: { }: mkDerivation { pname = "yst"; - version = "0.5.1"; - sha256 = "603afd33877c086221b0914463bb92943df49aecc9e4a7fb58f4f35386199f71"; + version = "0.5.1.1"; + sha256 = "08e775b23abda46a504e0c3787bdb89e47a0e9aee0984582298f2f73a6c163ac"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -264360,7 +266318,6 @@ self: { HStringTemplate lucid old-locale old-time pandoc parsec scientific split text time unordered-containers yaml ]; - jailbreak = true; homepage = "http://github.com/jgm/yst"; description = "Builds a static website from templates and data in YAML or CSV files"; license = "GPL"; From 6af0f57f91f5b87e10186f7d26a345cab565478c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 11 Jul 2016 10:00:50 +0200 Subject: [PATCH 220/508] haskell-binary: update to latest version --- 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 b4ea8fd95b9..7707733a930 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_4_0; + binary = self.binary_0_8_4_1; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index 2507f9d6aed..740035f0bb6 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_4_0; process = self.process_1_2_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_4_1; 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 980f4159bc1..aca043e240b 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_4_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_1; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_1; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index b48f9cfd33c..39652da5a5d 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_4_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_1; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_1; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From fbf41c6c7fffbcda99b9e9b388570c508be43085 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Thu, 14 Jul 2016 16:14:09 -0400 Subject: [PATCH 221/508] fltk: darwin compatibility --- pkgs/development/libraries/fltk/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/fltk/default.nix b/pkgs/development/libraries/fltk/default.nix index 772ea2030c2..99cb8aae323 100644 --- a/pkgs/development/libraries/fltk/default.nix +++ b/pkgs/development/libraries/fltk/default.nix @@ -1,6 +1,7 @@ { stdenv, composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi , freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng , cfg ? {} +, darwin, libtiff, freetype }: let inherit (composableDerivation) edf; in @@ -21,7 +22,10 @@ composableDerivation.composableDerivation {} { ''; nativeBuildInputs = [ pkgconfig ]; - propagatedBuildInputs = [ xlibsWrapper inputproto libXi freeglut ]; + propagatedBuildInputs = [ inputproto ] + ++ (if stdenv.isDarwin + then (with darwin.apple_sdk.frameworks; [Cocoa AGL GLUT freetype libtiff]) + else [ xlibsWrapper libXi freeglut ]); enableParallelBuilding = true; @@ -55,9 +59,8 @@ composableDerivation.composableDerivation {} { meta = { description = "A C++ cross-platform lightweight GUI library"; homepage = http://www.fltk.org; - platforms = stdenv.lib.platforms.linux; + platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; license = stdenv.lib.licenses.gpl2; }; } - From 4b8c31d981c0bf35c860bf44df04bcdbb5865685 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Thu, 14 Jul 2016 22:05:15 +0100 Subject: [PATCH 222/508] gnome3: enable X libinput by default See https://bugzilla.gnome.org/show_bug.cgi?id=764257#c12 --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index 27ec65c3d8e..89b515a6e27 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -122,6 +122,7 @@ in { services.dbus.packages = mkIf config.services.printing.enable [ pkgs.system-config-printer ]; services.colord.enable = mkDefault true; hardware.bluetooth.enable = mkDefault true; + services.xserver.libinput.enable = mkDefault true; # for controlling touchpad settings via gnome control center fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell_fonts ]; From 4af2bf66631d187d952b70fba4963e33002d1dcb Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 26 Apr 2016 10:53:31 -0700 Subject: [PATCH 223/508] Separate fix-point from config importing hacks and other impurities --- default.nix | 2 +- pkgs/top-level/default.nix | 19 +++---------------- pkgs/top-level/impure.nix | 24 ++++++++++++++++++++++++ 3 files changed, 28 insertions(+), 17 deletions(-) create mode 100644 pkgs/top-level/impure.nix diff --git a/default.nix b/default.nix index c384a5bb694..8171f4149d2 100644 --- a/default.nix +++ b/default.nix @@ -6,4 +6,4 @@ if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins. else - import ./pkgs/top-level + import ./pkgs/top-level/impure.nix diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 8913dc1ef59..87813571d9a 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -6,7 +6,7 @@ { # The system (e.g., `i686-linux') for which to build the packages. - system ? builtins.currentSystem + system , # The standard environment to use. Only used for bootstrapping. If # null, the default standard environment is used. @@ -19,21 +19,8 @@ && system != "x86_64-solaris" && system != "x86_64-kfreebsd-gnu") -, # Allow a configuration attribute set to be passed in as an - # argument. Otherwise, it's read from $NIXPKGS_CONFIG or - # ~/.nixpkgs/config.nix. - # - # [For NixOS (nixos-rebuild), use nixpkgs.config option to set.] - config ? let - inherit (builtins) getEnv pathExists; - - configFile = getEnv "NIXPKGS_CONFIG"; - homeDir = getEnv "HOME"; - configFile2 = homeDir + "/.nixpkgs/config.nix"; - in - if configFile != "" && pathExists configFile then import configFile - else if homeDir != "" && pathExists configFile2 then import configFile2 - else {} +, # Allow a configuration attribute set to be passed in as an argument. + config ? {} , crossSystem ? null , platform ? null diff --git a/pkgs/top-level/impure.nix b/pkgs/top-level/impure.nix new file mode 100644 index 00000000000..e9066815927 --- /dev/null +++ b/pkgs/top-level/impure.nix @@ -0,0 +1,24 @@ +/* Impure default args for `pkgs/top-level/default.nix`. See that file + for the meaning of each argument. */ + +{ # Fallback: Assume we are building packages for the current (host, in GNU + # Autotools parlance) system. + system ? builtins.currentSystem + +, # Fallback: The contents of the configuration file found at $NIXPKGS_CONFIG or + # $HOME/.nixpkgs/config.nix. + config ? let + inherit (builtins) getEnv pathExists; + + configFile = getEnv "NIXPKGS_CONFIG"; + homeDir = getEnv "HOME"; + configFile2 = homeDir + "/.nixpkgs/config.nix"; + in + if configFile != "" && pathExists configFile then import configFile + else if homeDir != "" && pathExists configFile2 then import configFile2 + else {} + +, ... +} @ args: + +import ./. (args // { inherit system config; }) From 0ad8d0b127bfbbb03c61776f4f913cd7a6b93f18 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 15 Jul 2016 06:39:10 +0200 Subject: [PATCH 224/508] pypi2nix: should be using python35 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 56c435ae27b..0217c3451df 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5857,7 +5857,7 @@ in pythonDocs = recurseIntoAttrs (callPackage ../development/interpreters/python/docs {}); - pypi2nix = callPackage ../development/tools/pypi2nix { python = python27; }; + pypi2nix = callPackage ../development/tools/pypi2nix { python = python35; }; svg2tikz = python27Packages.svg2tikz; From 5e685121e4befa2b5d83b991faf4221b37243531 Mon Sep 17 00:00:00 2001 From: Bryan Gardiner Date: Thu, 14 Jul 2016 18:53:52 -0700 Subject: [PATCH 225/508] hoppy, qtah: add myself as maintainer --- .../haskell-modules/configuration-hackage2nix.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 976baab0aa4..b213780ff4b 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -90,6 +90,14 @@ package-maintainers: khumba: - goatee - goatee-gtk + - hoppy-docs + - hoppy-generator + - hoppy-runtime + - hoppy-std + - qtah-cpp-qt5 + - qtah-examples + - qtah-generator + - qtah-qt5 psibi: - path-pieces - persistent From c4fa18b7a2f64f6aa01fb83fc80069b921c45372 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Fri, 15 Jul 2016 13:20:35 +0530 Subject: [PATCH 226/508] mirrors: add downloads.sourceforge.net downloads.sourceforge.net is the official way to download tarballs from SourceForge. However, it is reported as unreliable due to SF's weird load balancing system. This commit gives the official mirror utmost priority, and will use other configured mirrors (which may be temporary) as a fallback only when the official one can't be reached/download fails/hangs. References: NixOs/nixpkgs#16900 --- pkgs/build-support/fetchurl/mirrors.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix index d97ecb32be5..68244a43e58 100644 --- a/pkgs/build-support/fetchurl/mirrors.nix +++ b/pkgs/build-support/fetchurl/mirrors.nix @@ -10,6 +10,7 @@ rec { # SourceForge. sourceforge = [ + http://downloads.sourceforge.net/ http://prdownloads.sourceforge.net/ http://heanet.dl.sourceforge.net/sourceforge/ http://surfnet.dl.sourceforge.net/sourceforge/ From bed2a14afaf720ca9f2c0f6a747ca8f8490ddbab Mon Sep 17 00:00:00 2001 From: John Ericson Date: Sat, 9 Jul 2016 00:01:49 -0700 Subject: [PATCH 227/508] makeRustPlatform: Remove `self` argument --- pkgs/development/compilers/rust/default.nix | 2 +- pkgs/top-level/all-packages.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix index 44b9471784c..adabdd71a1d 100644 --- a/pkgs/development/compilers/rust/default.nix +++ b/pkgs/development/compilers/rust/default.nix @@ -2,7 +2,7 @@ targets ? [], targetToolchains ? [], targetPatches ? [] }: let - rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}) rustPlatform); + rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {})); in rec { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0217c3451df..1f468d3e10b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5428,9 +5428,9 @@ in cargo = rust.cargo; rustc = rust.rustc; - rustPlatform = recurseIntoAttrs (makeRustPlatform rust rustPlatform); + rustPlatform = recurseIntoAttrs (makeRustPlatform rust); - makeRustPlatform = rust: self: + makeRustPlatform = rust: lib.fix (self: let callPackage = newScope self; in { @@ -5441,7 +5441,7 @@ in buildRustPackage = callPackage ../build-support/rust { inherit rust; }; - }; + }); rustfmt = callPackage ../development/tools/rust/rustfmt { }; rustracer = callPackage ../development/tools/rust/racer { }; From 5eaeb97a4629cf81821fb02f607b92739d8c2a3f Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Fri, 15 Jul 2016 01:57:52 +0300 Subject: [PATCH 228/508] qbittorrent: fix build --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1f468d3e10b..700e7420a6b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14154,7 +14154,7 @@ in qbittorrent = qt5.callPackage ../applications/networking/p2p/qbittorrent { boost = boost; - libtorrentRasterbar = libtorrentRasterbar; + libtorrentRasterbar = libtorrentRasterbar_1_09; }; eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; }; From 36c906e7c0ca4f6672a0ad4aa9af04c858e913e7 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 15 Jul 2016 10:35:19 +0200 Subject: [PATCH 229/508] sysdig: 0.9.0 -> 0.10.0 --- pkgs/os-specific/linux/sysdig/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/sysdig/default.nix b/pkgs/os-specific/linux/sysdig/default.nix index 82e088b76c2..39ce6d588f8 100644 --- a/pkgs/os-specific/linux/sysdig/default.nix +++ b/pkgs/os-specific/linux/sysdig/default.nix @@ -3,10 +3,10 @@ let inherit (stdenv.lib) optional optionalString; s = rec { baseName="sysdig"; - version = "0.9.0"; + version = "0.10.0"; name="${baseName}-${version}"; url="https://github.com/draios/sysdig/archive/${version}.tar.gz"; - sha256 = "198x1zmlydvi4i1sfvs8xjh9z5pb47l6xs4phrnkwwak46rhka3j"; + sha256 = "0hs0r9z9j7padqdcj69bwx52iw6gvdl0w322qwivpv12j3prcpsj"; }; buildInputs = [ cmake zlib luajit ncurses perl jsoncpp libb64 openssl curl From 3d4a32835e831bd9b8aa40edeb24392bb50b0b54 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 15 Jul 2016 10:44:04 +0200 Subject: [PATCH 230/508] scalafmt: 0.2.5 -> 0.2.11 --- pkgs/development/tools/scalafmt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/scalafmt/default.nix b/pkgs/development/tools/scalafmt/default.nix index 0a4855bdcb8..e434f381067 100644 --- a/pkgs/development/tools/scalafmt/default.nix +++ b/pkgs/development/tools/scalafmt/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, unzip, jre }: stdenv.mkDerivation rec { - version = "0.2.5"; + version = "0.2.11"; baseName = "scalafmt"; name = "${baseName}-${version}"; src = fetchurl { url = "https://github.com/olafurpg/scalafmt/releases/download/v${version}/${baseName}.tar.gz"; - sha256 = "07l95xdwgdbdfa91pg1sds82aw3c60gxzdcvdhhhk6a7zwrl73cp"; + sha256 = "044n00mhrdxij1kc8wplvni7pf8lnninxrsm9v41gicbk73cm2q8"; }; unpackPhase = "tar xvzf $src"; From 55eb18d212b7828e366f234585e64c18b84a36a9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 15 Jul 2016 12:02:22 +0200 Subject: [PATCH 231/508] Add some more info to the nixos-version manpage --- nixos/doc/manual/man-nixos-version.xml | 91 ++++++++++++-------------- 1 file changed, 43 insertions(+), 48 deletions(-) diff --git a/nixos/doc/manual/man-nixos-version.xml b/nixos/doc/manual/man-nixos-version.xml index db7440977c9..615d74f9090 100644 --- a/nixos/doc/manual/man-nixos-version.xml +++ b/nixos/doc/manual/man-nixos-version.xml @@ -10,7 +10,7 @@ nixos-version - show the version of nixpkgs NixOS was built from + show the NixOS version @@ -23,58 +23,52 @@ Description -This command describes the version of nixpkgs used to build -NixOS. +This command shows the version of the currently active NixOS +configuration. For example: -By default the output includes: - - - The NixOS release - Number of commits since the release - Git SHA of the released commit - Codename of the NixOS release - - - -Example - -Here is an example output, and corresponding information: $ nixos-version 16.03.1011.6317da4 (Emu) - - - - - - Attribute - Value - - - - - NixOS Release - 16.03 - - - Commit Count - 1011 - - - Commit SHA - 6317da4 - - - Release Codename - Emu - - - - - - +The version consists of the following elements: + + + + 16.03 + The NixOS release, indicating the year and month + in which it was released (e.g. March 2016). + + + + 1011 + The number of commits in the Nixpkgs Git + repository between the start of the release branch and the commit + from which this version was built. This ensures that NixOS + versions are monotonically increasing. It is + git when the current NixOS configuration was + built from a checkout of the Nixpkgs Git repository rather than + from a NixOS channel. + + + + 6317da4 + The first 7 characters of the commit in the + Nixpkgs Git repository from which this version was + built. + + + + Emu + The code name of the NixOS release. The first + letter of the code name indicates that this is the N'th stable + NixOS release; for example, Emu is the fifth + release. + + + + + @@ -89,7 +83,8 @@ NixOS. - The output will be the full hash of the git commit + Show the full SHA1 hash of the Git commit from which this + configuration was built, e.g. $ nixos-version --hash 6317da40006f6bc2480c6781999c52d88dde2acf From 2ad0a84751c64ca30e06ea3d591660b841a3778f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 12:41:56 +0200 Subject: [PATCH 232/508] Revert "openssh: Use the default privilege separation dir (/var/empty)" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit a927709a35cee56f878f0f57a932e1a6e2ebe23b because it doesn't build: $ nix-build -A openssh ... mkdir /nix/store/yl2xap8n1by3dqxgc4rmrc4s753676a3-openssh-7.2p2/libexec (umask 022 ; ./mkinstalldirs /var/empty) mkdir /var mkdir: cannot create directory '/var': Permission denied mkdir /var/empty mkdir: cannot create directory '/var/empty': No such file or directory make: *** [Makefile:304: install-files] Error 1 builder for ‘/nix/store/ifygp4mqpv7l8cgp0njp8w7lmrl6brpp-openssh-7.2p2.drv’ failed with exit code 2 --- pkgs/tools/networking/openssh/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 8d893c6a57f..64b9fe98278 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -66,6 +66,11 @@ stdenv.mkDerivation rec { ++ optional stdenv.isDarwin "--disable-libutil" ++ optional (!linkOpenssl) "--without-openssl"; + preConfigure = '' + configureFlagsArray+=("--with-privsep-path=$out/empty") + mkdir -p $out/empty + ''; + enableParallelBuilding = true; postInstall = '' From c30d4e07c5e4c0e39da1da56aa7ddfaa59674691 Mon Sep 17 00:00:00 2001 From: Alexei Robyn Date: Tue, 12 Jul 2016 16:34:46 +1000 Subject: [PATCH 233/508] libvirt: revert to full systemd dependency Fixes issue with virt-manager failing to list 'USB Host Devices' and 'PCI Host Devices' with the error "Connection does not support host device enumeration". --- pkgs/development/libraries/libvirt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 300f50d9044..12b4459cbca 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -24,14 +24,14 @@ stdenv.mkDerivation rec { gettext libtasn1 libgcrypt yajl libxslt xhtml1 perlPackages.XMLXPath curl libpcap ] ++ stdenv.lib.optionals stdenv.isLinux [ - libpciaccess devicemapper lvm2 utillinux systemd.udev.lib libcap_ng + libpciaccess devicemapper lvm2 utillinux systemd libcap_ng libnl numad numactl xen zfs ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv gmp ]; preConfigure = stdenv.lib.optionalString stdenv.isLinux '' - PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd.udev.bin}/bin:$PATH + PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd}/bin:$PATH substituteInPlace configure \ --replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"' '' + '' From 88154e2877c1f85029894507deb20e51d07069b1 Mon Sep 17 00:00:00 2001 From: Hans-Christian Esperer Date: Wed, 13 Jul 2016 19:24:18 +0200 Subject: [PATCH 234/508] commandergenius: init at 194beta --- lib/maintainers.nix | 1 + pkgs/games/commandergenius/default.nix | 54 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 57 insertions(+) create mode 100644 pkgs/games/commandergenius/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 3d83a0a3a1c..a3540deb407 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -163,6 +163,7 @@ guibert = "David Guibert "; havvy = "Ryan Scheel "; hbunke = "Hendrik Bunke "; + hce = "Hans-Christian Esperer "; henrytill = "Henry Till "; hiberno = "Christian Lask "; hinton = "Tom Hinton "; diff --git a/pkgs/games/commandergenius/default.nix b/pkgs/games/commandergenius/default.nix new file mode 100644 index 00000000000..007167dc696 --- /dev/null +++ b/pkgs/games/commandergenius/default.nix @@ -0,0 +1,54 @@ +{ lib, stdenv, fetchFromGitHub, SDL2, SDL2_image, pkgconfig +, libvorbis, libogg, mesa, boost, curl, zlib, cmake }: + + +stdenv.mkDerivation rec { + name = "commandergenius-${version}"; + version = "194beta"; + + src = fetchFromGitHub { + owner = "gerstrong"; + repo = "Commander-Genius"; + rev = "v${version}"; + sha256 = "0qxqzlmadxklrhxilbqj7y94fmbv0byj6vgpl59lb77lgs4y4x47"; + }; + + buildInputs = [ SDL2 SDL2_image pkgconfig libvorbis libogg mesa boost curl zlib cmake ]; + + patchPhase = '' + cat >> lib/GsKit/CMakeLists.txt < Date: Fri, 15 Jul 2016 09:12:23 -0300 Subject: [PATCH 235/508] blackbird: 2016-04-10 -> 2016-07-04 --- pkgs/misc/themes/blackbird/default.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/pkgs/misc/themes/blackbird/default.nix b/pkgs/misc/themes/blackbird/default.nix index 2104f6da876..0b907f747a8 100644 --- a/pkgs/misc/themes/blackbird/default.nix +++ b/pkgs/misc/themes/blackbird/default.nix @@ -1,25 +1,20 @@ -{ stdenv, fetchFromGitHub, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, autoreconfHook, gtk-engine-murrine }: stdenv.mkDerivation rec { pname = "Blackbird"; - version = "2016-04-10"; + version = "2016-07-04"; name = "${pname}-${version}"; src = fetchFromGitHub { repo = "${pname}"; owner = "shimmerproject"; - rev = "e9f780993c957e3349f97b0e2e6fabdc36ccefb0"; - sha256 = "00fdd63lnb2gmsn6cbdkanvh3rvz48jg08gmzg372byhj70m63hi"; + rev = "ab4a30ee5110c59241b739e7c54956c3244e5b2a"; + sha256 = "1qy32n21bqq3zwn9di01fbiqv67cqr9n7jmbpcmn9v8yb5p572w3"; }; - buildInputs = [ gtk-engine-murrine ]; - - dontBuild = true; + nativeBuildInputs = [ autoreconfHook ]; - installPhase = '' - mkdir -p $out/share/themes/${pname} - cp -a * $out/share/themes/${pname}/ - ''; + buildInputs = [ gtk-engine-murrine ]; meta = { description = "Dark Desktop Suite for Gtk, Xfce and Metacity"; From a4c965ef1b016195d39a281fe602d54208f59672 Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Fri, 15 Jul 2016 14:15:13 +0200 Subject: [PATCH 236/508] webkitgtk24x: 2.4.9 -> 2.4.11 --- pkgs/development/libraries/webkitgtk/2.4.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/webkitgtk/2.4.nix b/pkgs/development/libraries/webkitgtk/2.4.nix index cc7644f742d..e6e61e0482c 100644 --- a/pkgs/development/libraries/webkitgtk/2.4.nix +++ b/pkgs/development/libraries/webkitgtk/2.4.nix @@ -15,7 +15,7 @@ assert stdenv.isDarwin -> !enableCredentialStorage; with stdenv.lib; stdenv.mkDerivation rec { name = "webkitgtk-${version}"; - version = "2.4.9"; + version = "2.4.11"; meta = with stdenv.lib; { description = "Web content rendering engine, GTK+ port"; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://webkitgtk.org/releases/${name}.tar.xz"; - sha256 = "0r651ar3p0f8zwl7764kyimxk5hy88cwy116pv8cl5l8hbkjkpxg"; + sha256 = "1xsvnvyvlywwyf6m9ainpsg87jkxjmd37q6zgz9cxb7v3c2ym2jq"; }; CC = "cc"; @@ -46,6 +46,7 @@ stdenv.mkDerivation rec { configureFlags = with stdenv.lib; [ "--disable-geolocation" + "--disable-jit" (optionalString enableIntrospection "--enable-introspection") ] ++ optional withGtk2 [ "--with-gtk=2.0" From a4adca78efc44b9084a3eafb5f8534448919a07e Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 12 Jul 2016 20:46:54 +0200 Subject: [PATCH 237/508] monodevelop: use makeLibraryPath in wrapper (fixes #16844) --- pkgs/applications/editors/monodevelop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/monodevelop/default.nix b/pkgs/applications/editors/monodevelop/default.nix index 69d6a3b2789..cdf1daabea7 100644 --- a/pkgs/applications/editors/monodevelop/default.nix +++ b/pkgs/applications/editors/monodevelop/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { 2a3,5 > export MONO_GAC_PREFIX=${gnome-sharp}:${gtk-sharp}:\$MONO_GAC_PREFIX > export PATH=${mono}/bin:\$PATH - > export LD_LIBRARY_PATH=${glib}/lib:${gnome.libgnomeui}/lib:${gnome.gnome_vfs}/lib:${gnome-sharp}/lib:${gtk-sharp}/lib:${gtk-sharp.gtk}/lib:\$LD_LIBRARY_PATH + > export LD_LIBRARY_PATH=${stdenv.lib.makeLibraryPath [ glib gnome.libgnomeui gnome.gnome_vfs gnome-sharp gtk-sharp gtk-sharp.gtk ]}:\$LD_LIBRARY_PATH > EOF done From 2614593598dc1892aaa1bd62f6b744c0d523cbc0 Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Fri, 15 Jul 2016 15:21:54 +0300 Subject: [PATCH 238/508] urxvt_font_size: Add missing `xlsfonts` dependency --- .../misc/rxvt_unicode-plugins/urxvt-font-size/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix index eafa0d6d18b..bca87b12b9f 100644 --- a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix +++ b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, xrdb }: +{ stdenv, fetchFromGitHub, xrdb, xlsfonts }: stdenv.mkDerivation { name = "urxvt-font-size-2015-05-22"; @@ -13,7 +13,8 @@ stdenv.mkDerivation { installPhase = '' substituteInPlace font-size \ - --replace "xrdb -merge" "${xrdb}/bin/xrdb -merge" + --replace "xrdb -merge" "${xrdb}/bin/xrdb -merge" \ + --replace "xlsfonts" "${xlsfonts}/bin/xlsfonts" mkdir -p $out/lib/urxvt/perl cp font-size $out/lib/urxvt/perl From 4075c10a59af455db2012beb313453662f09dad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 14:45:23 +0200 Subject: [PATCH 239/508] jenkins: move .war file from $out to $out/lib/jenkins.war Fixes #14137, also known as: $ nix-shell -p jenkins bash: source: /nix/store/ln1yw6c2v8bb2cjqfr1z5aqcssw054wa-jenkins-2.3: cannot execute binary file [nix-shell exited with error] The problem is that jenkins.war is not installed inside the directory $out, but rather _as the file_ $out. Fix it by moving the file to $out/lib/jenkins.war. While at it, move buildCommand so that the "meta" section is at the end of the expression (standard style), and quote shell variables. --- .../services/continuous-integration/jenkins/default.nix | 2 +- .../tools/continuous-integration/jenkins/default.nix | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index ae3f186c1d0..7da49fa0aaa 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -154,7 +154,7 @@ in { ''; script = '' - ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.listenAddress} \ + ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/lib/jenkins.war --httpListenAddress=${cfg.listenAddress} \ --httpPort=${toString cfg.port} \ --prefix=${cfg.prefix} \ ${concatStringsSep " " cfg.extraOptions} diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index 827fb4e05a5..cbc2b76d8ac 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -8,6 +8,12 @@ stdenv.mkDerivation rec { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; sha256 = "0x59dbvh6y25ki5jy51djbfbhf8g2j3yd9f3n66f7bkdfw8p78g1"; }; + + buildCommand = '' + mkdir -p "$out/lib" + cp "$src" "$out/lib/jenkins.war" + ''; + meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; homepage = http://jenkins-ci.org; @@ -15,6 +21,4 @@ stdenv.mkDerivation rec { platforms = platforms.all; maintainers = [ maintainers.coconnor ]; }; - - buildCommand = "cp $src $out"; } From 658c2de1b74f82995e3a08c826ca6da6d3ffc336 Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Fri, 15 Jul 2016 16:18:23 +0300 Subject: [PATCH 240/508] emacs25pre: Add option for building with xwidgets --- pkgs/applications/editors/emacs-25/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix index e3e5f60dd00..ad1559cbb51 100644 --- a/pkgs/applications/editors/emacs-25/default.nix +++ b/pkgs/applications/editors/emacs-25/default.nix @@ -5,6 +5,7 @@ , autoconf, automake , withX ? !stdenv.isDarwin , withGTK3 ? false, gtk3 ? null +, withXwidgets ? false, webkitgtk24x ? null , withGTK2 ? true, gtk2 }: @@ -14,6 +15,7 @@ assert withGTK2 -> withX || stdenv.isDarwin; assert withGTK3 -> withX || stdenv.isDarwin; assert withGTK2 -> !withGTK3 && gtk2 != null; assert withGTK3 -> !withGTK2 && gtk3 != null; +assert withXwidgets -> withGTK3 && webkitgtk24x != null; let toolkit = @@ -49,17 +51,19 @@ stdenv.mkDerivation rec { imagemagick gconf ] ++ stdenv.lib.optional (withX && withGTK2) gtk2 ++ stdenv.lib.optional (withX && withGTK3) gtk3 - ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo; + ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo + ++ stdenv.lib.optional withXwidgets webkitgtk24x; propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit GSS ImageIO ]; configureFlags = - if stdenv.isDarwin + (if stdenv.isDarwin then [ "--with-ns" "--disable-ns-self-contained" ] else if withX then [ "--with-x-toolkit=${toolkit}" "--with-xft" ] else [ "--with-x=no" "--with-xpm=no" "--with-jpeg=no" "--with-png=no" - "--with-gif=no" "--with-tiff=no" ]; + "--with-gif=no" "--with-tiff=no" ]) + ++ stdenv.lib.optional withXwidgets "--with-xwidgets"; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.isDarwin && withX) "-I${cairo.dev}/include/cairo"; From f4d845b47991d411a2cd102ed73c51743b1495e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 15 Jul 2016 10:50:42 -0300 Subject: [PATCH 241/508] adapta-gtk-theme: 3.21.2 -> 3.21.3.68 --- pkgs/misc/themes/adapta/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/misc/themes/adapta/default.nix b/pkgs/misc/themes/adapta/default.nix index 96c43af8485..7fe968a582b 100644 --- a/pkgs/misc/themes/adapta/default.nix +++ b/pkgs/misc/themes/adapta/default.nix @@ -1,13 +1,13 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, autoreconfHook, sass, inkscape, glib, which, gtk-engine-murrine }: stdenv.mkDerivation rec { name = "adapta-gtk-theme-${version}"; - version = "3.21.2"; + version = "3.21.3.68"; meta = with stdenv.lib; { description = "An adaptive GTK+ theme based on Material Design"; homepage = "https://github.com/tista500/Adapta"; - license = licenses.gpl2; + license = with licenses; [ gpl2 cc-by-sa-30 ]; platforms = platforms.linux; maintainers = [ maintainers.SShrike ]; }; @@ -15,13 +15,15 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "tista500"; repo = "Adapta"; - rev = "c48da995abc46087c22b05d2cdb0975d10774641"; - sha256 = "17w9nsrwqwgafswyvhc5h8ld2ggi96ix5fjv6yf1hfz3l1ln9qg7"; + rev = version; + sha256 = "0wwsmsyxfdgsc7fj1kn4r9zsgs09prizwkjljmirwrfdm6j3387p"; }; preferLocalBuild = true; buildInputs = [ gtk-engine-murrine ]; - nativeBuildInputs = [ autoreconfHook ]; + nativeBuildInputs = [ autoreconfHook sass inkscape glib.dev which ]; + + postPatch = "patchShebangs ."; configureFlags = "--enable-chrome --disable-unity"; } From a66400631474d87a57478e91808ef156f82d0813 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Thu, 2 Jun 2016 17:54:02 +0200 Subject: [PATCH 242/508] sonarr: init at 2.0.0.4230 --- pkgs/servers/sonarr/default.nix | 33 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/servers/sonarr/default.nix diff --git a/pkgs/servers/sonarr/default.nix b/pkgs/servers/sonarr/default.nix new file mode 100644 index 00000000000..91e292944a6 --- /dev/null +++ b/pkgs/servers/sonarr/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, mono, libmediainfo, sqlite, makeWrapper, ... }: + +stdenv.mkDerivation rec { + name = "sonarr-${version}"; + version = "2.0.0.4230"; + + src = fetchurl { + url = "http://download.sonarr.tv/v2/master/mono/NzbDrone.master.${version}.mono.tar.gz"; + sha256 = "16nx0v5hpqlwna2hzpcpzvm7qc361yjxbqnwz5bfnnkb0h7ik5m6"; + }; + + buildInputs = [ + makeWrapper + ]; + + installPhase = '' + mkdir -p $out/bin + cp -r * $out/bin/ + + makeWrapper "${mono}/bin/mono" $out/bin/NzbDrone \ + --add-flags "$out/bin/NzbDrone.exe" \ + --prefix LD_LIBRARY_PATH ':' "${sqlite.out}/lib" \ + --prefix LD_LIBRARY_PATH ':' "${libmediainfo}/lib" + ''; + + meta = { + description = "Smart PVR for newsgroup and bittorrent users"; + homepage = https://sonarr.tv/; + license = stdenv.lib.licenses.gpl3; + maintainers = [ stdenv.lib.maintainers.fadenb ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d848de8a6d..e1b18829c95 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3474,6 +3474,8 @@ in solvespace = callPackage ../applications/graphics/solvespace { }; + sonarr = callPackage ../servers/sonarr { }; + sonata = callPackage ../applications/audio/sonata { inherit (python3Packages) buildPythonApplication python isPy3k dbus pygobject3 mpd2; }; From 9edcfa8908f09b86a65a1136f481d23d015db49d Mon Sep 17 00:00:00 2001 From: Alexey Lebedeff Date: Fri, 15 Jul 2016 17:16:24 +0300 Subject: [PATCH 243/508] emacs25pre: Fix https for xwidgets-browse-url --- pkgs/applications/editors/emacs-25/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix index ad1559cbb51..a33cd570550 100644 --- a/pkgs/applications/editors/emacs-25/default.nix +++ b/pkgs/applications/editors/emacs-25/default.nix @@ -5,7 +5,7 @@ , autoconf, automake , withX ? !stdenv.isDarwin , withGTK3 ? false, gtk3 ? null -, withXwidgets ? false, webkitgtk24x ? null +, withXwidgets ? false, webkitgtk24x ? null, wrapGAppsHook ? null, glib_networking ? null , withGTK2 ? true, gtk2 }: @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional (withX && withGTK2) gtk2 ++ stdenv.lib.optional (withX && withGTK3) gtk3 ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo - ++ stdenv.lib.optional withXwidgets webkitgtk24x; + ++ stdenv.lib.optionals withXwidgets [webkitgtk24x wrapGAppsHook glib_networking]; propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit GSS ImageIO ]; From ed466b7fef35e7e6ce4eeb80075e9b76151ff029 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Thu, 2 Jun 2016 21:00:00 +0200 Subject: [PATCH 244/508] sonarr service: initial service --- nixos/modules/module-list.nix | 1 + nixos/modules/services/misc/sonarr.nix | 44 ++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 nixos/modules/services/misc/sonarr.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 04ea1c14e29..ab9e50c20fc 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -258,6 +258,7 @@ ./services/misc/ripple-data-api.nix ./services/misc/rogue.nix ./services/misc/siproxd.nix + ./services/misc/sonarr.nix ./services/misc/spice-vdagentd.nix ./services/misc/subsonic.nix ./services/misc/sundtek.nix diff --git a/nixos/modules/services/misc/sonarr.nix b/nixos/modules/services/misc/sonarr.nix new file mode 100644 index 00000000000..6d96daa6c3d --- /dev/null +++ b/nixos/modules/services/misc/sonarr.nix @@ -0,0 +1,44 @@ +{ config, pkgs, lib, mono, ... }: + +with lib; + +let + cfg = config.services.sonarr; +in +{ + options = { + services.sonarr = { + enable = mkEnableOption "Sonarr"; + }; + }; + + config = mkIf cfg.enable { + systemd.services.sonarr = { + description = "Sonarr"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + preStart = '' + test -d /var/lib/sonarr/ || { + echo "Creating sonarr data directory in /var/lib/sonarr/" + mkdir -p /var/lib/sonarr/ + } + chown -R sonarr /var/lib/sonarr/ + chmod 0700 /var/lib/sonarr/ + ''; + + serviceConfig = { + Type = "simple"; + User = "sonarr"; + Group = "nogroup"; + PermissionsStartOnly = "true"; + ExecStart = "${pkgs.sonarr}/bin/NzbDrone --no-browser"; + Restart = "on-failure"; + }; + }; + + users.extraUsers.sonarr = { + home = "/var/lib/sonarr"; + }; + + }; +} From e228023b14541c4d0cccba397fe9b647aca61832 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 15 Jul 2016 13:21:58 +0200 Subject: [PATCH 245/508] linux_grsec_nixos: fix build The grsec patch fails to apply cleanly when combined with the hiddev CVE patch (added in dde259dfb5a0787b28e260da7575079bbabad6c3). To fix this and future problems, we set all our patches explicitly rather than inherit from the base kernel. --- pkgs/top-level/all-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d848de8a6d..26702c79370 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11186,7 +11186,12 @@ in linux_grsec_nixos = callPackage ../build-support/grsecurity { inherit (lib) overrideDerivation; kernel = callPackage ../os-specific/linux/kernel/linux-grsecurity.nix { - inherit (self.linux_4_5) kernelPatches; + kernelPatches = with self.kernelPatches; [ bridge_stp_helper qat_common_Makefile ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; }; grsecPatch = self.kernelPatches.grsecurity_testing; kernelPatches = [ self.kernelPatches.grsecurity_nixos_kmod ]; From 8d4fc3c375081d523a47709f5fd09f275b6b973a Mon Sep 17 00:00:00 2001 From: mimadrid Date: Fri, 15 Jul 2016 17:01:41 +0200 Subject: [PATCH 246/508] shotwell: 0.22.0 -> 0.23.2 --- pkgs/applications/graphics/shotwell/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix index 513b1a49198..e52eb045ffb 100644 --- a/pkgs/applications/graphics/shotwell/default.nix +++ b/pkgs/applications/graphics/shotwell/default.nix @@ -1,17 +1,19 @@ { fetchurl, stdenv, m4, glibc, gtk3, libexif, libgphoto2, libsoup, libxml2, vala, sqlite -, webkitgtk24x, pkgconfig, gnome3, gst_all_1, which, udev, libgudev, libraw, glib, json_glib +, webkitgtk, pkgconfig, gnome3, gst_all_1, which, udev, libgudev, libraw, glib, json_glib , gettext, desktop_file_utils, lcms2, gdk_pixbuf, librsvg, makeWrapper , gnome_doc_utils, hicolor_icon_theme }: # for dependencies see http://www.yorba.org/projects/shotwell/install/ stdenv.mkDerivation rec { - version = "0.22.0"; + version = "${major}.${minor}"; + major = "0.23"; + minor = "2"; name = "shotwell-${version}"; src = fetchurl { - url = "mirror://gnome/sources/shotwell/0.22/${name}.tar.xz"; - sha256 = "0cgqaaikrb10plhf6zxbgqy32zqpiwyi9dpx3g8yr261q72r5c81"; + url = "mirror://gnome/sources/shotwell/${major}/${name}.tar.xz"; + sha256 = "d52caae4e3204f2f78e2eb828d955848ea6fef5c91d3ac6e9eb0b185c0490b39"; }; NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"; @@ -35,7 +37,7 @@ stdenv.mkDerivation rec { ''; - buildInputs = [ m4 glibc gtk3 libexif libgphoto2 libsoup libxml2 vala sqlite webkitgtk24x + buildInputs = [ m4 glibc gtk3 libexif libgphoto2 libsoup libxml2 vala sqlite webkitgtk pkgconfig gst_all_1.gstreamer gst_all_1.gst-plugins-base gnome3.libgee which udev libgudev gnome3.gexiv2 hicolor_icon_theme libraw json_glib gettext desktop_file_utils glib lcms2 gdk_pixbuf librsvg From 8c2d8884013e6d8e929b35ba46e85e27cdb0ad33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 16:57:16 +0200 Subject: [PATCH 247/508] jenkins: move $out/{lib => webapps}/jenkins.war As pointed out by @danbst, the tomcat NixOS module expects packages listed in services.tomcat.webapps to either be direct .war file paths or have .war files inside a "webapps" directory. Commit 4075c10a59af455db2012beb313453662f09dad0 ("jenkins: move .war file from $out to $out/lib/jenkins.war") broke jenkins + tomcat. Fix it by moving jenkins.war to $out/webapps/. --- .../services/continuous-integration/jenkins/default.nix | 2 +- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 7da49fa0aaa..4edbbf59a42 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -154,7 +154,7 @@ in { ''; script = '' - ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/lib/jenkins.war --httpListenAddress=${cfg.listenAddress} \ + ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/webapps/jenkins.war --httpListenAddress=${cfg.listenAddress} \ --httpPort=${toString cfg.port} \ --prefix=${cfg.prefix} \ ${concatStringsSep " " cfg.extraOptions} diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index cbc2b76d8ac..e7355d167d9 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -10,8 +10,8 @@ stdenv.mkDerivation rec { }; buildCommand = '' - mkdir -p "$out/lib" - cp "$src" "$out/lib/jenkins.war" + mkdir -p "$out/webapps" + cp "$src" "$out/webapps/jenkins.war" ''; meta = with stdenv.lib; { From 411bd972ab3e108e505e46274cac5b1995a5f331 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Fri, 15 Jul 2016 17:35:53 +0200 Subject: [PATCH 248/508] readme: add wiki deprecation notice (#16925) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3187f20462..237ec72223c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ For pull-requests, please rebase onto nixpkgs `master`. * [Documentation (Nix Expression Language chapter)](https://nixos.org/nix/manual/#ch-expression-language) * [Manual (How to write packages for Nix)](https://nixos.org/nixpkgs/manual/) * [Manual (NixOS)](https://nixos.org/nixos/manual/) -* [Nix Wiki](https://nixos.org/wiki/) +* [Nix Wiki](https://nixos.org/wiki/) (deprecated, see milestone ["Move the Wiki!"](https://github.com/NixOS/nixpkgs/issues?q=is%3Aopen+is%3Aissue+milestone%3A%22Move+the+wiki%21%22)) * [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined) * [Continuous package builds for 16.03 release](https://hydra.nixos.org/jobset/nixos/release-16.03) * [Tests for unstable/master](https://hydra.nixos.org/job/nixos/trunk-combined/tested#tabs-constituents) From 8856cfa619b1508d3a969842c2803e5450573618 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Fri, 15 Jul 2016 18:23:26 +0200 Subject: [PATCH 249/508] xarchiver: 0.5.4 -> 0.5.4.6 --- pkgs/tools/archivers/xarchiver/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/archivers/xarchiver/default.nix b/pkgs/tools/archivers/xarchiver/default.nix index ea59cb8319e..507e777a7c3 100644 --- a/pkgs/tools/archivers/xarchiver/default.nix +++ b/pkgs/tools/archivers/xarchiver/default.nix @@ -1,18 +1,20 @@ -{ stdenv, fetchurl, gtk2, pkgconfig, intltool }: +{ stdenv, fetchFromGitHub, gtk, pkgconfig, intltool }: stdenv.mkDerivation rec { - version = "0.5.4"; + version = "0.5.4.6"; name = "xarchiver-${version}"; - src = fetchurl { - url = "mirror://sourceforge/xarchiver/${name}.tar.bz2"; - sha256 = "1x1f8m71cvv2p1364rz99iqs2caxj7yrb46aikz6xigwg4wsfgz6"; + src = fetchFromGitHub { + owner = "ib"; + repo = "xarchiver"; + rev = "${name}"; + sha256 = "1w6b4cchd4prswrn981a7bkq44ad51xm2qiwlpzy43ynql14q877"; }; - buildInputs = [ gtk2 pkgconfig intltool ]; + buildInputs = [ gtk pkgconfig intltool ]; meta = { - description = "GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)"; + description = "GTK+ frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)"; homepage = http://sourceforge.net/projects/xarchiver/; maintainers = [ stdenv.lib.maintainers.domenkozar ]; license = stdenv.lib.licenses.gpl2; From 3223ef5df509cba22e5a9d77b33d4438ecd22a67 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 15 Jul 2016 18:37:15 +0200 Subject: [PATCH 250/508] Remove a definitely rendering-dependent LibreOffice test (only the equality part); hopefully should fix the build --- pkgs/applications/office/libreoffice/default.nix | 2 ++ pkgs/applications/office/libreoffice/still.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 9c1e1b78990..63af5babca2 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -124,6 +124,8 @@ in stdenv.mkDerivation rec { sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk # one more fragile test? sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx + # rendering-dependent test + sed -e '/CPPUNIT_ASSERT_EQUAL(11148L, pOleObj->GetLogicRect().getWidth());/d ' -i sc/qa/unit/subsequent_filters-test.cxx ''; makeFlags = "SHELL=${bash}/bin/bash"; diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix index b8ad900fb14..eadf4135630 100644 --- a/pkgs/applications/office/libreoffice/still.nix +++ b/pkgs/applications/office/libreoffice/still.nix @@ -124,6 +124,8 @@ in stdenv.mkDerivation rec { sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk # one more fragile test? sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx + # rendering-dependent test + sed -e '/CPPUNIT_ASSERT_EQUAL(11148L, pOleObj->GetLogicRect().getWidth());/d ' -i sc/qa/unit/subsequent_filters-test.cxx ''; makeFlags = "SHELL=${bash}/bin/bash"; From cfc0a5415b935fb50241ab1b571771c2f793695c Mon Sep 17 00:00:00 2001 From: obadz Date: Fri, 15 Jul 2016 20:43:42 +0200 Subject: [PATCH 251/508] Revert "fontconfig: fix etc priority" This reverts commit 1e53d4a7776acbf61f42c094c103652c8068ad64. Closes #16983 cc @vcunat @ericsagnes @dezgeg --- .../config/fonts/fontconfig-ultimate.nix | 153 +++++----- nixos/modules/config/fonts/fontconfig.nix | 262 +++++++++--------- .../libraries/fontconfig/default.nix | 1 + .../libraries/fontconfig/make-fonts-conf.xsl | 2 + 4 files changed, 202 insertions(+), 216 deletions(-) diff --git a/nixos/modules/config/fonts/fontconfig-ultimate.nix b/nixos/modules/config/fonts/fontconfig-ultimate.nix index 47d7cc5924d..02568f9de51 100644 --- a/nixos/modules/config/fonts/fontconfig-ultimate.nix +++ b/nixos/modules/config/fonts/fontconfig-ultimate.nix @@ -3,84 +3,6 @@ with lib; let fcBool = x: if x then "true" else "false"; - cfg = config.fonts.fontconfig.ultimate; - fontconfigUltimateConf = pkgs.writeText "ultimate-conf" '' - - - - - ${optionalString (!cfg.allowBitmaps) '' - - - - - false - - - - ''} - - ${optionalString cfg.allowType1 '' - - - - - - Type 1 - - - - - ''} - - - - - ${fcBool cfg.useEmbeddedBitmaps} - - - - - - - ${fcBool cfg.forceAutohint} - - - - - - - ${fcBool cfg.renderMonoTTFAsBitmap} - - - - - ''; - confPkg = - let version = pkgs.fontconfig.configVersion; - in pkgs.runCommand "font-ultimate-conf" {} '' - mkdir -p $out/etc/fonts/{,${version}/}conf.d/ - - cp ${fontconfigUltimateConf} \ - $out/etc/fonts/conf.d/52-fontconfig-ultimate.conf - - cp ${fontconfigUltimateConf} \ - $out/etc/fonts/${version}/conf.d/52-fontconfig-ultimate.conf - - ${optionalString (cfg.substitutions != "none") '' - cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \ - $out/etc/fonts/conf.d/ - cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \ - $out/etc/fonts/${version}/conf.d/ - ''} - - ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \ - $out/etc/fonts/conf.d/ - - ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \ - $out/etc/fonts/${version}/conf.d/ - ''; - in { @@ -193,11 +115,78 @@ in }; - config = mkIf (config.fonts.fontconfig.enable && cfg.enable) { + config = + let ultimate = config.fonts.fontconfig.ultimate; + fontconfigUltimateConf = '' + + + - fonts.fontconfig.confPkgs = [ confPkg ]; - - environment.variables = cfg.rendering; + ${optionalString (!ultimate.allowBitmaps) '' + + + + + false + + + + ''} + + ${optionalString ultimate.allowType1 '' + + + + + + Type 1 + + + + + ''} + + + + + ${fcBool ultimate.useEmbeddedBitmaps} + + + + + + + ${fcBool ultimate.forceAutohint} + + + + + + + ${fcBool ultimate.renderMonoTTFAsBitmap} + + + + ${optionalString (ultimate.substitutions != "none") '' + + ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${ultimate.substitutions} + ''} + + ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d + + + ''; + in mkIf (config.fonts.fontconfig.enable && ultimate.enable) { + + environment.etc."fonts/conf.d/52-fontconfig-ultimate.conf" = { + text = fontconfigUltimateConf; + }; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/52-fontconfig-ultimate.conf" = { + text = fontconfigUltimateConf; + }; + + environment.variables = ultimate.rendering; }; diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix index fcf5add4519..1eaebe4b2bb 100644 --- a/nixos/modules/config/fonts/fontconfig.nix +++ b/nixos/modules/config/fonts/fontconfig.nix @@ -2,121 +2,6 @@ with lib; -let cfg = config.fonts.fontconfig; - fcBool = x: "" + (if x then "true" else "false") + ""; - renderConf = pkgs.writeText "render-conf" '' - - - - - - - - ${fcBool cfg.hinting.enable} - - - ${fcBool cfg.hinting.autohint} - - - hint${cfg.hinting.style} - - - ${fcBool cfg.antialias} - - - ${cfg.subpixel.rgba} - - - lcd${cfg.subpixel.lcdfilter} - - - - ${optionalString (cfg.dpi != 0) '' - - - ${toString cfg.dpi} - - - ''} - - - ''; - genericAliasConf = - let genDefault = fonts: name: - optionalString (fonts != []) '' - - ${name} - - ${concatStringsSep "" - (map (font: '' - ${font} - '') fonts)} - - - ''; - in - pkgs.writeText "generic-alias-conf" '' - - - - - - ${genDefault cfg.defaultFonts.sansSerif "sans-serif"} - - ${genDefault cfg.defaultFonts.serif "serif"} - - ${genDefault cfg.defaultFonts.monospace "monospace"} - - - ''; - cacheConf = let - cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; }; - in - pkgs.writeText "cache-conf" '' - - - - - ${concatStringsSep "\n" (map (font: "${font}") config.fonts.fonts)} - - ${cache pkgs.fontconfig} - ${optionalString (pkgs.stdenv.isx86_64 && cfg.cache32Bit) '' - ${cache pkgs.pkgsi686Linux.fontconfig} - ''} - - ''; - userConf = pkgs.writeText "user-conf" '' - - - - fontconfig/conf.d - fontconfig/fonts.conf - - ''; - fontsConf = pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; }; - confPkg = - let version = pkgs.fontconfig.configVersion; - in pkgs.runCommand "fontconfig-conf" {} '' - mkdir -p $out/etc/fonts/{,${version}/}conf.d - - ln -s ${fontsConf} $out/etc/fonts/fonts.conf - - ln -s ${pkgs.fontconfig.out}/etc/fonts/fonts.conf $out/etc/fonts/${version}/fonts.conf - ln -s ${pkgs.fontconfig.out}/etc/fonts/conf.d/* $out/etc/fonts/${version}/conf.d/ - - ln -s ${renderConf} $out/etc/fonts/conf.d/10-nixos-rendering.conf - ln -s ${genericAliasConf} $out/etc/fonts/conf.d/60-nixos-generic-alias.conf - - ln -s ${cacheConf} $out/etc/fonts/${version}/conf.d/00-nixos.conf - - ln -s ${renderConf} $out/etc/fonts/${version}/conf.d/10-nixos-rendering.conf - ln -s ${genericAliasConf} $out/etc/fonts/${version}/conf.d/30-nixos-generic-alias.conf - - ${optionalString cfg.includeUserConf - "ln -s ${userConf} $out/etc/fonts/${version}/conf.d/99-user.conf"} - - ''; -in { options = { @@ -136,15 +21,6 @@ in ''; }; - confPkgs = mkOption { - internal = true; - type = with types; listOf path; - default = [ ]; - description = '' - Fontconfig configuration packages. - ''; - }; - antialias = mkOption { type = types.bool; default = true; @@ -267,17 +143,135 @@ in }; - config = mkIf cfg.enable { - fonts.fontconfig.confPkgs = [ confPkg ]; + config = + let fontconfig = config.fonts.fontconfig; + fcBool = x: "" + (if x then "true" else "false") + ""; + renderConf = '' + + + - environment.etc.fonts.source = - let fontConf = pkgs.symlinkJoin { - name = "fontconfig-etc"; - paths = cfg.confPkgs; - }; - in "${fontConf}/etc/fonts/"; + + + + ${fcBool fontconfig.hinting.enable} + + + ${fcBool fontconfig.hinting.autohint} + + + hint${fontconfig.hinting.style} + + + ${fcBool fontconfig.antialias} + + + ${fontconfig.subpixel.rgba} + + + lcd${fontconfig.subpixel.lcdfilter} + + - environment.systemPackages = [ pkgs.fontconfig ]; - }; + ${optionalString (fontconfig.dpi != 0) '' + + + ${toString fontconfig.dpi} + + + ''} + + + ''; + genericAliasConf = '' + + + + + + ${optionalString (fontconfig.defaultFonts.sansSerif != []) '' + + sans-serif + + ${concatStringsSep "\n" + (map (font: "${font}") + fontconfig.defaultFonts.sansSerif)} + + + ''} + ${optionalString (fontconfig.defaultFonts.serif != []) '' + + serif + + ${concatStringsSep "\n" + (map (font: "${font}") + fontconfig.defaultFonts.serif)} + + + ''} + ${optionalString (fontconfig.defaultFonts.monospace != []) '' + + monospace + + ${concatStringsSep "\n" + (map (font: "${font}") + fontconfig.defaultFonts.monospace)} + + + ''} + + + ''; + in mkIf fontconfig.enable { + + # Fontconfig 2.10 backward compatibility + + # Bring in the default (upstream) fontconfig configuration, only for fontconfig 2.10 + environment.etc."fonts/fonts.conf".source = + pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; }; + + environment.etc."fonts/conf.d/10-nixos-rendering.conf".text = renderConf; + environment.etc."fonts/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf; + + # Versioned fontconfig > 2.10. Take shared fonts.conf from fontconfig. + # Otherwise specify only font directories. + environment.etc."fonts/${pkgs.fontconfig.configVersion}/fonts.conf".source = + "${pkgs.fontconfig.out}/etc/fonts/fonts.conf"; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/00-nixos.conf".text = + let + cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; }; + in '' + + + + + ${concatStringsSep "\n" (map (font: "${font}") config.fonts.fonts)} + + ${cache pkgs.fontconfig} + ${optionalString (pkgs.stdenv.isx86_64 && config.fonts.fontconfig.cache32Bit) '' + ${cache pkgs.pkgsi686Linux.fontconfig} + ''} + + ''; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/10-nixos-rendering.conf".text = renderConf; + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf; + + environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/99-user.conf" = { + enable = fontconfig.includeUserConf; + text = '' + + + + fontconfig/conf.d + fontconfig/fonts.conf + + ''; + }; + + environment.systemPackages = [ pkgs.fontconfig ]; + + }; } diff --git a/pkgs/development/libraries/fontconfig/default.nix b/pkgs/development/libraries/fontconfig/default.nix index f18ea5948f1..6acf1ebce29 100644 --- a/pkgs/development/libraries/fontconfig/default.nix +++ b/pkgs/development/libraries/fontconfig/default.nix @@ -68,6 +68,7 @@ stdenv.mkDerivation rec { cd "$out/etc/fonts" rm conf.d/{50-user,51-local}.conf "${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${fontbhttf}" \ + --stringparam fontconfig "$out" \ --stringparam fontconfigConfigVersion "${configVersion}" \ --path $out/share/xml/fontconfig \ ${./make-fonts-conf.xsl} $out/etc/fonts/fonts.conf \ diff --git a/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl b/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl index dddbbe9e516..b59fcd0187b 100644 --- a/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl +++ b/pkgs/development/libraries/fontconfig/make-fonts-conf.xsl @@ -28,6 +28,8 @@ /var/cache/fontconfig + + /etc/fonts/conf.d /etc/fonts//conf.d From 73ec6bea2c7eefaae930fcbe1f2780f62722038f Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Fri, 15 Jul 2016 17:17:35 -0400 Subject: [PATCH 252/508] octave: add arpack, libwebp, and darwin compat This follows on from PR #16965 for qrupdate and PR #16968 for fltk. WIth these, the added explicit dependencies on arpack (to support the octave `eigs` function) and `libwebp`, and not pulling X11 things, octave works properly on darwin. --- pkgs/development/interpreters/octave/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index e302f9e55cb..68365b27a44 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull , libsndfile, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk -, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas +, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp , qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null , suitesparse ? null, gnuplot ? null, jdk ? null, python ? null }: @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11 graphicsmagick pcre pkgconfig mesa fltk zlib curl openblas libsndfile - fftw fftwSinglePrec qrupdate ] + fftw fftwSinglePrec qrupdate arpack libwebp ] ++ (stdenv.lib.optional (qt != null) qt) ++ (stdenv.lib.optional (qscintilla != null) qscintilla) ++ (stdenv.lib.optional (ghostscript != null) ghostscript) @@ -38,9 +38,10 @@ stdenv.mkDerivation rec { ++ (stdenv.lib.optional (jdk != null) jdk) ++ (stdenv.lib.optional (gnuplot != null) gnuplot) ++ (stdenv.lib.optional (python != null) python) + ++ (stdenv.lib.optionals (!stdenv.isDarwin) [mesa libX11]) ; - doCheck = true; + doCheck = !stdenv.isDarwin; enableParallelBuilding = true; @@ -50,7 +51,9 @@ stdenv.mkDerivation rec { "--with-blas=openblas" "--with-lapack=openblas" ] - ++ stdenv.lib.optional openblas.blas64 "--enable-64"; + ++ stdenv.lib.optional openblas.blas64 "--enable-64" + ++ stdenv.lib.optionals stdenv.isDarwin ["--with-x=no"] + ; # Keep a copy of the octave tests detailed results in the output # derivation, because someone may care @@ -67,6 +70,6 @@ stdenv.mkDerivation rec { homepage = http://octave.org/; license = stdenv.lib.licenses.gpl3Plus; maintainers = with stdenv.lib.maintainers; [viric raskin]; - platforms = with stdenv.lib.platforms; linux; + platforms = with stdenv.lib.platforms; linux ++ darwin; }; } From bed7aba2f0799a8e38ea0f82ce393f69542cc7af Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 00:11:41 +0200 Subject: [PATCH 253/508] elm: 0.17 -> 0.17.1 --- pkgs/development/compilers/elm/default.nix | 2 +- .../compilers/elm/packages/elm-compiler.nix | 14 ++++----- .../compilers/elm/packages/elm-make.nix | 11 +++---- .../compilers/elm/packages/elm-package.nix | 29 ++++++++++--------- .../elm/packages/elm-reactor-elm.nix | 16 +++++----- .../compilers/elm/packages/elm-reactor.nix | 23 ++++++++------- .../compilers/elm/packages/elm-repl.nix | 11 +++---- .../compilers/elm/packages/release.nix | 2 +- pkgs/development/compilers/elm/update-elm.rb | 16 +++++----- 9 files changed, 66 insertions(+), 58 deletions(-) diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix index 08f69ba8776..950caeedf53 100644 --- a/pkgs/development/compilers/elm/default.nix +++ b/pkgs/development/compilers/elm/default.nix @@ -40,7 +40,7 @@ let EOF '' + lib.concatStrings cmds; - hsPkgs = haskell.packages.ghc7103.override { + hsPkgs = haskell.packages.ghc801.override { overrides = self: super: let hlib = haskell.lib; elmRelease = import ./packages/release.nix { inherit (self) callPackage; }; diff --git a/pkgs/development/compilers/elm/packages/elm-compiler.nix b/pkgs/development/compilers/elm/packages/elm-compiler.nix index 8bebdf4315a..dc2a0a12138 100644 --- a/pkgs/development/compilers/elm/packages/elm-compiler.nix +++ b/pkgs/development/compilers/elm/packages/elm-compiler.nix @@ -3,15 +3,15 @@ , fetchgit, filemanip, filepath, HUnit, indents , language-ecmascript, language-glsl, mtl, parsec, pretty, process , QuickCheck, stdenv, test-framework, test-framework-hunit -, test-framework-quickcheck2, text, union-find, wl-pprint +, test-framework-quickcheck2, text, union-find }: mkDerivation { pname = "elm-compiler"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-compiler"; - sha256 = "1vx4jp20nj4s41zsqnwyh80dvg7b7kd9fh6agl99v1xx9d3i6ws1"; - rev = "c9c7e72c424a13255f8ee84c719f7ef48b689c1a"; + sha256 = "17y0jlii81mnjywknblcv1nfja51slmwrhz9x8w144b0sblcj0if"; + rev = "e44deafaf9cbf3749484070f267f03a368711adb"; }; isLibrary = true; isExecutable = true; @@ -19,7 +19,7 @@ mkDerivation { aeson aeson-pretty ansi-terminal ansi-wl-pprint base binary bytestring containers directory edit-distance filepath indents language-ecmascript language-glsl mtl parsec pretty process text - union-find wl-pprint + union-find ]; executableHaskellDepends = [ aeson base binary directory filepath process text @@ -29,10 +29,10 @@ mkDerivation { bytestring containers directory edit-distance filemanip filepath HUnit indents language-ecmascript language-glsl mtl parsec pretty process QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 text union-find wl-pprint + test-framework-quickcheck2 text union-find ]; jailbreak = true; homepage = "http://elm-lang.org"; - description = "Values to help with elm-package, elm-make, and elm-lang.org"; + description = "Values to help with elm-package, elm-make, and elm-lang.org."; license = stdenv.lib.licenses.bsd3; } diff --git a/pkgs/development/compilers/elm/packages/elm-make.nix b/pkgs/development/compilers/elm/packages/elm-make.nix index 1fe4acc9e3b..bed7698cfe4 100644 --- a/pkgs/development/compilers/elm/packages/elm-make.nix +++ b/pkgs/development/compilers/elm/packages/elm-make.nix @@ -1,22 +1,23 @@ { mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base, binary , blaze-html, blaze-markup, bytestring, containers, directory , elm-compiler, elm-package, fetchgit, filepath, mtl -, optparse-applicative, stdenv, text, time, raw-strings-qq +, optparse-applicative, raw-strings-qq, stdenv, text, time }: mkDerivation { pname = "elm-make"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-make"; - sha256 = "0ywi6iq2a3rb8a68ryqpq9y22536aa9k71wy7fcmrd5nwkmpwd2r"; - rev = "5f7b74567c43eff341048c7caceb247b51cdb8bb"; + sha256 = "0k9w5gl48lhhr3n2iflf0vkb3w6al0xcbglgiw4fq1ssz3aa7ijw"; + rev = "0a0a1f52ab04e2d68d60a5798722e1de30b47335"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal ansi-wl-pprint base binary blaze-html blaze-markup bytestring containers directory elm-compiler - elm-package filepath mtl optparse-applicative text time raw-strings-qq + elm-package filepath mtl optparse-applicative raw-strings-qq text + time ]; jailbreak = true; homepage = "http://elm-lang.org"; diff --git a/pkgs/development/compilers/elm/packages/elm-package.nix b/pkgs/development/compilers/elm/packages/elm-package.nix index 7df5516b27a..ef2d4e9c8e7 100644 --- a/pkgs/development/compilers/elm/packages/elm-package.nix +++ b/pkgs/development/compilers/elm/packages/elm-package.nix @@ -1,29 +1,32 @@ { mkDerivation, aeson, aeson-pretty, ansi-wl-pprint, base, binary -, bytestring, containers, directory, elm-compiler, fetchgit -, filepath, HTTP, http-client, http-client-tls, http-types, mtl -, network, optparse-applicative, pretty, stdenv, text, time -, unordered-containers, vector, zip-archive +, bytestring, containers, directory, edit-distance, elm-compiler +, fetchgit, filepath, HTTP, http-client, http-client-tls +, http-types, mtl, network, optparse-applicative, parallel-io +, pretty, stdenv, text, time, unordered-containers, vector +, zip-archive }: mkDerivation { pname = "elm-package"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-package"; - sha256 = "0z86560a2f7w3ywqvzqghgz100z0yn8zsiixkw4lp5168krp4axg"; - rev = "fc0924210fe5a7c0af543769b1353dbb2ddf2f0c"; + sha256 = "0dnn871py0pvzxsjjggy5ww2zj9g71c2dcnp38rcr4nbj8yxik85"; + rev = "9011ccdbced1d06aa60de0e3096e609ef44d26dd"; }; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-pretty base binary bytestring containers directory - elm-compiler filepath HTTP http-client http-client-tls http-types - mtl network text time unordered-containers vector zip-archive + aeson aeson-pretty ansi-wl-pprint base binary bytestring containers + directory edit-distance elm-compiler filepath HTTP http-client + http-client-tls http-types mtl network parallel-io text time + unordered-containers vector zip-archive ]; executableHaskellDepends = [ aeson aeson-pretty ansi-wl-pprint base binary bytestring containers - directory elm-compiler filepath HTTP http-client http-client-tls - http-types mtl network optparse-applicative pretty text time - unordered-containers vector zip-archive + directory edit-distance elm-compiler filepath HTTP http-client + http-client-tls http-types mtl network optparse-applicative + parallel-io pretty text time unordered-containers vector + zip-archive ]; jailbreak = true; homepage = "http://github.com/elm-lang/elm-package"; diff --git a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix index a84f9e48ba0..79043012590 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix @@ -1,22 +1,22 @@ { "elm-lang/virtual-dom" = { - version = "1.0.0"; - sha256 = "0pa8k04g9yfixahsb30j0rbhfh6hwdh7xmm2fvk0hkidw7b4xg57"; + version = "1.1.0"; + sha256 = "16g66cvvh85ddciq0ymaqfyq2bcz11pxn0g0dc1wx7bmlqx7q1jz"; }; "evancz/elm-markdown" = { version = "3.0.0"; sha256 = "0r3hcim4mpn46ahv1q6sjp6i2viyp7jik6i71xgwmvfb9drns2p6"; }; "elm-lang/html" = { - version = "1.0.0"; - sha256 = "16cr01yxkpkmgbgclp2p80nd62a6fjw3qipzjsgksrhwv9vv4gm4"; + version = "1.1.0"; + sha256 = "1v7pwxxd81qrfywb4rr199p2i9z77vjkbwjwm5gy1nxdpi8mb50y"; }; "elm-lang/svg" = { - version = "1.0.0"; - sha256 = "0c29y6c58x2sq1bl29z1hr5gi2rlza8clk7ssgzmsf4xbvcczbjx"; + version = "1.1.1"; + sha256 = "0xzc0fq2kg797km0nq2f52w6xdffrl9l0y5zbkpa72w163zpxkkn"; }; "elm-lang/core" = { - version = "4.0.0"; - sha256 = "04qgzgv90qyhjk55yw4szy50h2dqdlm0a2padbgn02yf4bb1b4nw"; + version = "4.0.2"; + sha256 = "1qjhfr3gd1qmfvna7iddspmk26v2nmgmgw9m6yyz10ygy3i9mla6"; }; } diff --git a/pkgs/development/compilers/elm/packages/elm-reactor.nix b/pkgs/development/compilers/elm/packages/elm-reactor.nix index 55b6b9ae416..cf6d33a5acb 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor.nix @@ -1,22 +1,25 @@ -{ mkDerivation, base, blaze-html, blaze-markup, bytestring, cmdargs -, directory, elm-compiler, fetchgit, filepath, fsnotify, mtl -, snap-core, snap-server, stdenv, text, time, transformers -, websockets, websockets-snap, elm-package, file-embed +{ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring +, cmdargs, containers, directory, elm-compiler, elm-package +, fetchgit, file-embed, filepath, fsnotify, mtl, process, snap-core +, snap-server, stdenv, template-haskell, text, time, transformers +, unordered-containers, utf8-string, websockets, websockets-snap }: mkDerivation { pname = "elm-reactor"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-reactor"; - sha256 = "03lb6fcc5d02gflarxc54l71hbwdb73v423ffjz5hvlha6ixglv7"; - rev = "4781ad2fbb6cbcde0d659dec293bbed9c847ba71"; + sha256 = "14kkqskvhkfznpl8cmjlvv3rp6ciqmdbxrmq6f20p3aznvkrdvf8"; + rev = "7522d7ef379c5a4ffbba11b1be09ed04add08a63"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base blaze-html blaze-markup bytestring cmdargs directory - elm-compiler filepath fsnotify mtl snap-core snap-server text time - transformers websockets websockets-snap elm-package file-embed + aeson base blaze-html blaze-markup bytestring cmdargs containers + directory elm-compiler elm-package file-embed filepath fsnotify mtl + process snap-core snap-server template-haskell text time + transformers unordered-containers utf8-string websockets + websockets-snap ]; jailbreak = true; homepage = "http://elm-lang.org"; diff --git a/pkgs/development/compilers/elm/packages/elm-repl.nix b/pkgs/development/compilers/elm/packages/elm-repl.nix index 3b17722b91d..e08c295f294 100644 --- a/pkgs/development/compilers/elm/packages/elm-repl.nix +++ b/pkgs/development/compilers/elm/packages/elm-repl.nix @@ -2,20 +2,21 @@ , containers, directory, elm-compiler, elm-package, fetchgit , filepath, haskeline, HUnit, mtl, parsec, QuickCheck, stdenv , test-framework, test-framework-hunit, test-framework-quickcheck2 +, text }: mkDerivation { pname = "elm-repl"; - version = "0.17"; + version = "0.17.1"; src = fetchgit { url = "https://github.com/elm-lang/elm-repl"; - sha256 = "0bpmkm7q3a0h4hwlbwcnzaqgf6n5p1qw65z8kw84f52s5bndc0wc"; - rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d"; + sha256 = "0nh2yfr0bi4rg1kak1gjaczpq56y1nii05b5y7hn6n4w651jkm28"; + rev = "413ac0d4ee43c8542afd3041bbb7b8c903cd3d30"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base binary bytestring bytestring-trie cmdargs containers directory - elm-compiler elm-package filepath haskeline mtl parsec + elm-compiler elm-package filepath haskeline mtl parsec text ]; testHaskellDepends = [ base bytestring bytestring-trie cmdargs directory elm-compiler @@ -24,6 +25,6 @@ mkDerivation { ]; jailbreak = true; homepage = "https://github.com/elm-lang/elm-repl"; - description = "A REPL for Elm"; + description = "a REPL for Elm"; license = stdenv.lib.licenses.bsd3; } diff --git a/pkgs/development/compilers/elm/packages/release.nix b/pkgs/development/compilers/elm/packages/release.nix index 531da88452f..6817d8e297f 100644 --- a/pkgs/development/compilers/elm/packages/release.nix +++ b/pkgs/development/compilers/elm/packages/release.nix @@ -2,7 +2,7 @@ # Please, do not modify it by hand! { callPackage }: { - version = "0.17"; + version = "0.17.1"; packages = { elm-compiler = callPackage ./elm-compiler.nix { }; elm-package = callPackage ./elm-package.nix { }; diff --git a/pkgs/development/compilers/elm/update-elm.rb b/pkgs/development/compilers/elm/update-elm.rb index e27279604ae..a1f76945cd2 100755 --- a/pkgs/development/compilers/elm/update-elm.rb +++ b/pkgs/development/compilers/elm/update-elm.rb @@ -1,19 +1,19 @@ #!/usr/bin/env ruby # Take those from https://github.com/elm-lang/elm-platform/blob/master/installers/BuildFromSource.hs -$elm_version = "0.17" -$elm_packages = { "elm-compiler" => "0.17", - "elm-package" => "0.17", - "elm-make" => "0.17", - "elm-reactor" => "0.17", - "elm-repl" => "0.17" +$elm_version = "0.17.1" +$elm_packages = { "elm-compiler" => "0.17.1", + "elm-package" => "0.17.1", + "elm-make" => "0.17.1", + "elm-reactor" => "0.17.1", + "elm-repl" => "0.17.1" } for pkg, ver in $elm_packages - system "cabal2nix https://github.com/elm-lang/#{pkg} --revision refs/tags/#{ver} --jailbreak > #{pkg}.nix" + system "cabal2nix https://github.com/elm-lang/#{pkg} --revision refs/tags/#{ver} --jailbreak > packages/#{pkg}.nix" end -File.open("release.nix", 'w') do |file| +File.open("packages/release.nix", 'w') do |file| file.puts "# This file is auto-generated by ./update-elm.rb." file.puts "# Please, do not modify it by hand!" file.puts "{ callPackage }:" From 0362eaf3ecda998a547eec367549e1386a56d1a5 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 00:36:28 +0200 Subject: [PATCH 254/508] elm-format: 0.3.1 -> 0.4.0 --- .../compilers/elm/packages/elm-format.nix | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/development/compilers/elm/packages/elm-format.nix b/pkgs/development/compilers/elm/packages/elm-format.nix index 12550e46a97..e759369bbcd 100644 --- a/pkgs/development/compilers/elm/packages/elm-format.nix +++ b/pkgs/development/compilers/elm/packages/elm-format.nix @@ -2,17 +2,16 @@ , bytestring, containers, directory, edit-distance, fetchgit , filemanip, filepath, HUnit, indents, mtl, optparse-applicative , parsec, pretty, process, QuickCheck, quickcheck-io -, regex-applicative, split, stdenv, test-framework -, test-framework-hunit, test-framework-quickcheck2, text -, union-find, wl-pprint +, regex-applicative, split, stdenv, tasty, tasty-golden +, tasty-hunit, tasty-quickcheck, text, union-find, wl-pprint }: mkDerivation { pname = "elm-format"; - version = "0.3.1"; + version = "0.4.0"; src = fetchgit { url = "http://github.com/avh4/elm-format"; - sha256 = "04kl50kzvjf4i140dlhs6f9fd2wmk6cnvyfamx2xh8vbwbnwrkj4"; - rev = "0637f3772de2297d12ea35f5b66961e1d827552c"; + sha256 = "199xh2w5cwcf79a8fv6j8dpk9h8a4cygrf8cfr9p7bvp2wvczibm"; + rev = "d9cbe65c5f01d21b5a02c2f963aa4c9d3f0539d0"; }; isLibrary = false; isExecutable = true; @@ -23,11 +22,11 @@ mkDerivation { text ]; testHaskellDepends = [ - aeson ansi-terminal base binary bytestring containers directory - edit-distance filemanip filepath HUnit indents mtl parsec pretty - process QuickCheck quickcheck-io regex-applicative split - test-framework test-framework-hunit test-framework-quickcheck2 text - union-find wl-pprint + aeson ansi-terminal ansi-wl-pprint base binary bytestring + containers directory edit-distance filemanip filepath HUnit indents + mtl optparse-applicative parsec pretty process QuickCheck + quickcheck-io regex-applicative split tasty tasty-golden + tasty-hunit tasty-quickcheck text union-find wl-pprint ]; jailbreak = true; homepage = "http://elm-lang.org"; From 5b6e3a3ed15289f45fd72b8f5d2c12c1a0a66433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 21:29:15 +0200 Subject: [PATCH 255/508] pencil: mark as broken Currently pencil won't start, due to incompatible firefox version: $ pencil Error: Platform version '47.0.1' is not compatible with minVersion >= 36.0 See https://github.com/prikhi/pencil/issues/840. --- pkgs/applications/graphics/pencil/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index 80774fba5ff..7d9b77e9661 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -32,5 +32,8 @@ stdenv.mkDerivation rec { license = licenses.gpl2; # Commercial license is also available maintainers = with maintainers; [ bjornfor prikhi ]; platforms = platforms.linux; + # See https://github.com/prikhi/pencil/issues/840 + # ("Error: Platform version '47.0' is not compatible with minVersion >= 36.0 maxVersion <= 46.*") + broken = true; }; } From 4ea1b3824a8e32ab9d01165900e56431e4f8a8c1 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 00:39:55 +0200 Subject: [PATCH 256/508] elm-format: disable tests (one failing), reported upstream --- pkgs/development/compilers/elm/packages/elm-format.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/development/compilers/elm/packages/elm-format.nix b/pkgs/development/compilers/elm/packages/elm-format.nix index e759369bbcd..4d30c697abd 100644 --- a/pkgs/development/compilers/elm/packages/elm-format.nix +++ b/pkgs/development/compilers/elm/packages/elm-format.nix @@ -32,4 +32,14 @@ mkDerivation { homepage = "http://elm-lang.org"; description = "A source code formatter for Elm"; license = stdenv.lib.licenses.bsd3; + + # XXX: I've manually disabled tests, only the following test is failing + # ... + # ElmFormat.Cli + # format a single file in place: OK + # usage instructions: FAIL + # ... + # 1 out of 266 tests failed (0.50s) + # Test suite elm-format-tests: FAIL + doCheck = false; } From 3172c2a455c8b15f1ce26822688aebc588424112 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Sat, 16 Jul 2016 03:16:44 +0300 Subject: [PATCH 257/508] path64: remove The project seem to be inactive since 2010 (http://www.path64.org/). The repository is also unavailable now. Found at https://github.com/NixOS/nixpkgs/issues/15558. --- pkgs/development/compilers/path64/default.nix | 35 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 37 deletions(-) delete mode 100644 pkgs/development/compilers/path64/default.nix diff --git a/pkgs/development/compilers/path64/default.nix b/pkgs/development/compilers/path64/default.nix deleted file mode 100644 index 694bdc8990f..00000000000 --- a/pkgs/development/compilers/path64/default.nix +++ /dev/null @@ -1,35 +0,0 @@ -{stdenv, fetchgit, perl, flex, bison, gmp, mpfr, cmake}: - -assert stdenv.system == "x86_64-linux"; - -stdenv.mkDerivation { - name = "path64-2010-07-02"; - - src = fetchgit { - url = git://github.com/path64/compiler.git; - rev = "e17f7f952831bbf1d996"; - sha256 = "fa1320959e1131557d5f82e98f4621a222ec45e1d6e0e7f271d2c13de4fd0dd1"; - }; - - patchPhase = '' - sed -i s,/usr/bin/ld,$(type -P ld), src/driver/phases.c - sed -i s,/lib64/ld-linux-x86-64.so.2,${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2, src/include/main_defs.h.in - ''; - - cmakeFlags = '' - -DPATH64_ENABLE_HUGEPAGES=ON - -DPATH64_ENABLE_MATHLIBS=ON -DPATH64_ENABLE_OPENMP=ON - -DPATH64_ENABLE_PSCRUNTIME=OFF - -DPATH64_ENABLE_PROFILING=OFF -DPATH64_ENABLE_TARGETS=x8664 - -DCMAKE_BUILD_TYPE=Debug -DPATH64_ENABLE_FORTRAN=OFF - -DPSC_CRT_PATH=${stdenv.cc.libc.out}/lib - ''; - - makeFlags = "-j4"; - - installPhase = '' - exit 1; - ''; - - buildInputs = [ perl flex bison gmp mpfr cmake ]; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 944a1efca5f..a18e151f11f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4718,8 +4718,6 @@ in hugs = callPackage ../development/interpreters/hugs { }; - path64 = callPackage ../development/compilers/path64 { }; - openjdk7 = if stdenv.isDarwin then callPackage ../development/compilers/openjdk-darwin { } From 49ea72c3f3c72331204e1404c3414b0c915574d3 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 15 Jul 2016 22:01:58 -0400 Subject: [PATCH 258/508] pythonPackages.cffi: fix on darwin This isn't conditional because it works on other platforms too --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 21700fe82d1..04dc7a26ac0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4373,6 +4373,12 @@ in modules // { propagatedBuildInputs = with self; [ pkgs.libffi pycparser ]; buildInputs = with self; [ pytest ]; + patchPhase = '' + substituteInPlace testing/cffi0/test_ownlib.py --replace "gcc" "cc" + ''; + + NIX_CFLAGS_COMPILE="-Wno-shift-negative-value"; + checkPhase = '' py.test ''; From 1c7cb20fb1e29acd95cd43728985ca7efe97b2fe Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sat, 16 Jul 2016 12:06:51 +0800 Subject: [PATCH 259/508] guile-sdl: fix after multiple-outputs change --- pkgs/development/guile-modules/guile-sdl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/guile-modules/guile-sdl/default.nix b/pkgs/development/guile-modules/guile-sdl/default.nix index 4a0f23457ba..94f3418b031 100644 --- a/pkgs/development/guile-modules/guile-sdl/default.nix +++ b/pkgs/development/guile-modules/guile-sdl/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ guile ]; buildInputs = [ - SDL SDL_image SDL_ttf SDL_mixer + SDL.dev SDL_image SDL_ttf SDL_mixer ]; GUILE_AUTO_COMPILE = 0; From f88f31c4f04e71669511957d8461ed5fc82d3058 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:49:35 +0800 Subject: [PATCH 260/508] forkstat: init at 0.01.13 --- pkgs/os-specific/linux/forkstat/default.nix | 22 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/os-specific/linux/forkstat/default.nix diff --git a/pkgs/os-specific/linux/forkstat/default.nix b/pkgs/os-specific/linux/forkstat/default.nix new file mode 100644 index 00000000000..3a253003e8e --- /dev/null +++ b/pkgs/os-specific/linux/forkstat/default.nix @@ -0,0 +1,22 @@ +{ stdenv, lib, fetchurl }: + +stdenv.mkDerivation rec { + name = "forkstat-${version}"; + version = "0.01.13"; + src = fetchurl { + url = "http://kernel.ubuntu.com/~cking/tarballs/forkstat/forkstat-${version}.tar.gz"; + sha256 = "12dmqpv0q3x166sya93rhcj7vs4868x7y7lwfwv9l54hhirpamhq"; + }; + installFlags = [ "DESTDIR=$(out)" ]; + postInstall = '' + mv $out/usr/* $out + rm -r $out/usr + ''; + meta = with lib; { + description = "Process fork/exec/exit monitoring tool"; + homepage = http://kernel.ubuntu.com/~cking/forkstat/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ womfoo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a6228e374bf..a42e575ef2b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10759,6 +10759,8 @@ in fnotifystat = callPackage ../os-specific/linux/fnotifystat { }; + forkstat = callPackage ../os-specific/linux/forkstat { }; + freefall = callPackage ../os-specific/linux/freefall { inherit (linuxPackages) kernel; }; From a28dda11025ce475e7b864ce139e8b87dea1f1f7 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:55:10 +0800 Subject: [PATCH 261/508] powerstat: init at 0.02.10 --- pkgs/os-specific/linux/powerstat/default.nix | 22 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/os-specific/linux/powerstat/default.nix diff --git a/pkgs/os-specific/linux/powerstat/default.nix b/pkgs/os-specific/linux/powerstat/default.nix new file mode 100644 index 00000000000..9604a67ddd9 --- /dev/null +++ b/pkgs/os-specific/linux/powerstat/default.nix @@ -0,0 +1,22 @@ +{ stdenv, lib, fetchurl }: + +stdenv.mkDerivation rec { + name = "powerstat-${version}"; + version = "0.02.10"; + src = fetchurl { + url = "http://kernel.ubuntu.com/~cking/tarballs/powerstat/powerstat-${version}.tar.gz"; + sha256 = "11n2k20h27j7m8j0l524w23xlkjhapsb3ml1qpx1si7gf0pkglcl"; + }; + installFlags = [ "DESTDIR=$(out)" ]; + postInstall = '' + mv $out/usr/* $out + rm -r $out/usr + ''; + meta = with lib; { + description = "Laptop power measuring tool"; + homepage = http://kernel.ubuntu.com/~cking/powerstat/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ womfoo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a42e575ef2b..c5e8b838fb4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10860,6 +10860,8 @@ in openisns = callPackage ../os-specific/linux/open-isns { }; + powerstat = callPackage ../os-specific/linux/powerstat { }; + tgt = callPackage ../tools/networking/tgt { }; # -- Linux kernel expressions ------------------------------------------------ From b68689ebb2a746b8088ed10ab4859ce64b9d3873 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Fri, 15 Jul 2016 00:57:38 +0800 Subject: [PATCH 262/508] smemstat: init at 0.01.14 --- pkgs/os-specific/linux/smemstat/default.nix | 22 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/os-specific/linux/smemstat/default.nix diff --git a/pkgs/os-specific/linux/smemstat/default.nix b/pkgs/os-specific/linux/smemstat/default.nix new file mode 100644 index 00000000000..a38c819bc6f --- /dev/null +++ b/pkgs/os-specific/linux/smemstat/default.nix @@ -0,0 +1,22 @@ +{ stdenv, lib, fetchurl }: + +stdenv.mkDerivation rec { + name = "smemstat-${version}"; + version = "0.01.14"; + src = fetchurl { + url = "http://kernel.ubuntu.com/~cking/tarballs/smemstat/smemstat-${version}.tar.gz"; + sha256 = "0qkpbg0n40d8m9jzf3ylpdp65zzs344zbjn8khha4plbwg00ijrw"; + }; + installFlags = [ "DESTDIR=$(out)" ]; + postInstall = '' + mv $out/usr/* $out + rm -r $out/usr + ''; + meta = with lib; { + description = "Memory usage monitoring tool"; + homepage = http://kernel.ubuntu.com/~cking/smemstat/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ womfoo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c5e8b838fb4..27d2a556c60 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10862,6 +10862,8 @@ in powerstat = callPackage ../os-specific/linux/powerstat { }; + smemstat = callPackage ../os-specific/linux/smemstat { }; + tgt = callPackage ../tools/networking/tgt { }; # -- Linux kernel expressions ------------------------------------------------ From bc70da1ce0d7afc7af097049e9e520c0596f0a9c Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 16 Jul 2016 00:54:36 -0500 Subject: [PATCH 263/508] nixpkgs: upgrade plex packages - plex: 0.9.16.4.1911 -> 1.0.0.2261 - plexpass: 0.9.16.5.1966 -> 1.0.1.2396 Signed-off-by: Austin Seipp --- pkgs/servers/plex/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 50fc85d48b3..f31971bf4c1 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -5,13 +5,13 @@ let plexpkg = if enablePlexPass then { - version = "0.9.16.5.1966"; - vsnHash = "81a3bf0"; - sha256 = "1sgdd3r067j9ysfp90wjx6zi01s00wzgzs27l8xdlsbnvjr8zmf8"; + version = "1.0.1.2396"; + vsnHash = "c094d0d"; + sha256 = "0bhbpaj88989zn1q590mkcqshcpir87yiac9x1dl0afzpxj09lcz"; } else { - version = "0.9.16.4.1911"; - vsnHash = "ee6e505"; - sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd"; + version = "1.0.0.2261"; + vsnHash = "a17e99e"; + sha256 = "14li33ni6aaa1qwvc02a066k52s1qwhpv55prvlmq3m5jm3iv0lr"; }; in stdenv.mkDerivation rec { From 3a8067e6ded9cb0a1a7931141821ed5ee6502e64 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 16 Jul 2016 01:19:55 -0500 Subject: [PATCH 264/508] nixpkgs: bittorrentSync 2.3.7 -> 2.3.8 Signed-off-by: Austin Seipp --- pkgs/applications/networking/bittorrentsync/2.0.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/bittorrentsync/2.0.x.nix b/pkgs/applications/networking/bittorrentsync/2.0.x.nix index f8ba6a5c5f6..d2db3eec26e 100644 --- a/pkgs/applications/networking/bittorrentsync/2.0.x.nix +++ b/pkgs/applications/networking/bittorrentsync/2.0.x.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl, ... } @ args: import ./generic.nix (args // { - version = "2.3.7"; + version = "2.3.8"; sha256s = { - "x86_64-linux" = "1hnw6bv60xrnc733gm1ilywc0y93k2g6bmwgnww9qk7ivbvi6pd1"; - "i686-linux" = "0hj8nbq6mava15m1hxaqq371fqk0whdx5iqsbnppyci0jjnr4qv1"; + "x86_64-linux" = "02n5s561cz3mprg682mrbmh3qai42dh64jgi05rqy9s6wgbn66ly"; + "i686-linux" = "118qrnxc7gvm30rsz0xfx6dlxmrr0dk5ajrvszhy06ww7xvqhzji"; }; }) From 4f8f1c30cbfb3e5e346a7ad1a699d3c8b3a46605 Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Sat, 16 Jul 2016 10:08:29 +0200 Subject: [PATCH 265/508] openssh: Use the default privilege separation dir (/var/empty) (This is a rewritten version of the reverted commit a927709a35cee56f878f0f57a932e1a6e2ebe23b, that disables the creation of /var/empty during build so that sandboxed builds also works. For more context, see https://github.com/NixOS/nixpkgs/pull/16966) If running NixOS inside a container where the host's root-owned files and directories have been mapped to some other uid (like nobody), the ssh daemon fails to start, producing this error message: fatal: /nix/store/...-openssh-7.2p2/empty must be owned by root and not group or world-writable. The reason for this is that when openssh is built, we explicitly set `--with-privsep-path=$out/empty`. This commit removes that flag which causes the default directory /var/empty to be used instead. Since NixOS' activation script correctly sets up that directory, the ssh daemon now also works within containers that have a non-root-owned nix store. --- pkgs/tools/networking/openssh/default.nix | 8 +++----- .../networking/openssh/dont_create_privsep_path.patch | 11 +++++++++++ 2 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 pkgs/tools/networking/openssh/dont_create_privsep_path.patch diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 64b9fe98278..6d6b43c5f8d 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -45,6 +45,9 @@ stdenv.mkDerivation rec { ./locale_archive.patch ./fix-host-key-algorithms-plus.patch ./CVE-2015-8325.patch + + # See discussion in https://github.com/NixOS/nixpkgs/pull/16966 + ./dont_create_privsep_path.patch ] ++ optional withGssapiPatches gssapiSrc; @@ -66,11 +69,6 @@ stdenv.mkDerivation rec { ++ optional stdenv.isDarwin "--disable-libutil" ++ optional (!linkOpenssl) "--without-openssl"; - preConfigure = '' - configureFlagsArray+=("--with-privsep-path=$out/empty") - mkdir -p $out/empty - ''; - enableParallelBuilding = true; postInstall = '' diff --git a/pkgs/tools/networking/openssh/dont_create_privsep_path.patch b/pkgs/tools/networking/openssh/dont_create_privsep_path.patch new file mode 100644 index 00000000000..b6d432d5c5d --- /dev/null +++ b/pkgs/tools/networking/openssh/dont_create_privsep_path.patch @@ -0,0 +1,11 @@ +diff -ur openssh-7.2p2_orig/Makefile.in openssh-7.2p2/Makefile.in +--- openssh-7.2p2_orig/Makefile.in 2016-03-09 19:04:48.000000000 +0100 ++++ openssh-7.2p2/Makefile.in 2016-07-16 09:56:05.643903293 +0200 +@@ -301,7 +301,6 @@ + $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)5 + $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8 + $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir) +- (umask 022 ; $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH)) + $(INSTALL) -m 0755 $(STRIP_OPT) ssh$(EXEEXT) $(DESTDIR)$(bindir)/ssh$(EXEEXT) + $(INSTALL) -m 0755 $(STRIP_OPT) scp$(EXEEXT) $(DESTDIR)$(bindir)/scp$(EXEEXT) + $(INSTALL) -m 0755 $(STRIP_OPT) ssh-add$(EXEEXT) $(DESTDIR)$(bindir)/ssh-add$(EXEEXT) From 6c0cfd3be3c1e4173fe0639f1081d2c23601c7ae Mon Sep 17 00:00:00 2001 From: Richard Zetterberg Date: Sat, 16 Jul 2016 11:04:05 +0200 Subject: [PATCH 266/508] libui: init at 3.1a --- pkgs/development/libraries/libui/default.nix | 25 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/libui/default.nix diff --git a/pkgs/development/libraries/libui/default.nix b/pkgs/development/libraries/libui/default.nix new file mode 100644 index 00000000000..5fabd127580 --- /dev/null +++ b/pkgs/development/libraries/libui/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchgit, cmake, pkgconfig, gtk3 }: + +stdenv.mkDerivation rec { + version = "3.1.a"; + name = "libui-${version}"; + src = fetchgit { + url = "https://github.com/andlabs/libui.git"; + rev = "6ebdc96b93273c3cedf81159e7843025caa83058"; + sha256 = "1lpbfa298c61aarlzgp7vghrmxg1274pzxh1j9isv8x758gk6mfn"; + }; + + buildInputs = [ cmake pkgconfig gtk3 ]; + + installPhase = '' + mkdir -p $out + mv ./out/libui.so.0 $out/libui.so.0 + ''; + + meta = with stdenv.lib; { + description = "Simple and portable (but not inflexible) GUI library in C that uses the native GUI technologies of each platform it supports."; + homepage = https://github.com/andlabs/libui; + platforms = platforms.linux; + license = licenses.mit; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 944a1efca5f..a66e64d09cf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8424,6 +8424,8 @@ in libu2f-server = callPackage ../development/libraries/libu2f-server { }; + libui = callPackage ../development/libraries/libui { }; + libunity = callPackage ../development/libraries/libunity { }; libunistring = callPackage ../development/libraries/libunistring { }; @@ -14873,7 +14875,7 @@ in vym = callPackage ../applications/misc/vym { }; - w3m = callPackage ../applications/networking/browsers/w3m { + w3m = callPackage ../applications/networking/browsers/w3m { graphicsSupport = !stdenv.isDarwin; }; From c606b9876fbcbfa2aa8360a5a2d808c80d3a2759 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 15:42:54 +0200 Subject: [PATCH 267/508] grsecurity module: enforce size overflows by default It is better to make this conditional on whether the configuration contains a known size overflow that could prevent the system from booting. --- nixos/modules/security/grsecurity.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 9d0249820d5..ee5881d2872 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -48,10 +48,6 @@ in (isYES "GRKERNSEC_SYSCTL_DISTRO") ]; - # Crashing on an overflow in kernel land is user unfriendly and may prevent - # the system from booting, which is too severe for our use case. - boot.kernelParams = [ "pax_size_overflow_report_only" ]; - # Install PaX related utillities into the system profile. Eventually, we # also want to include gradm here. environment.systemPackages = with pkgs; [ paxctl pax-utils ]; From 94824303be3093fa105b6e50ba5497cbc7318f6e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 16:00:17 +0200 Subject: [PATCH 268/508] grsecurity module: smarter container support Only set tunables required for container support if there are any containers. --- nixos/modules/security/grsecurity.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index ee5881d2872..2b00c8954a8 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -13,6 +13,10 @@ let || elem fs.mountPoint [ "/" "/nix" "/nix/store" "/var" "/var/log" "/var/lib" "/etc" ]) && fs.fsType == "zfs") (attrValues config.fileSystems) != []; + + # Ascertain whether NixOS container support is required + containerSupportRequired = + config.boot.enableContainers && config.containers != {}; in { @@ -101,7 +105,7 @@ in "kernel.grsecurity.chroot_deny_chroot" = mkForce 0; "kernel.grsecurity.chroot_deny_mount" = mkForce 0; "kernel.grsecurity.chroot_deny_pivot" = mkForce 0; - } // optionalAttrs config.boot.enableContainers { + } // optionalAttrs containerSupportRequired { # chroot(2) restrictions that conflict with NixOS lightweight containers "kernel.grsecurity.chroot_deny_chmod" = mkForce 0; "kernel.grsecurity.chroot_deny_mount" = mkForce 0; From cef7150bc761d8ccd012f5cc6fb20e439293f3f0 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 17:43:43 +0200 Subject: [PATCH 269/508] grsecurity module: grsecurity is not capitalized mid-sentence --- nixos/modules/security/grsecurity.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 2b00c8954a8..348f3cb5e95 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -22,7 +22,7 @@ in { options.security.grsecurity = { - enable = mkEnableOption "Grsecurity/PaX"; + enable = mkEnableOption "grsecurity/PaX"; lockTunables = mkOption { type = types.bool; @@ -59,7 +59,7 @@ in # Install rules for the grsec device node services.udev.packages = [ pkgs.gradm ]; - # This service unit is responsible for locking the Grsecurity tunables. The + # This service unit is responsible for locking the grsecurity tunables. The # unit is always defined, but only activated on bootup if lockTunables is # toggled. When lockTunables is toggled, failure to activate the unit will # enter emergency mode. The intent is to make it difficult to silently From 59c9a88a6b690a5e577c71b95494e99cfe6fa816 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 14 Jul 2016 17:44:05 +0200 Subject: [PATCH 270/508] grsecurity module: tweak lockTunables option description --- nixos/modules/security/grsecurity.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 348f3cb5e95..e825679c343 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -31,9 +31,9 @@ in description = '' Whether to automatically lock grsecurity tunables (). Disable - this to allow configuration of grsecurity features while the system is - running. The lock can be manually engaged by activating the - grsec-lock service unit. + this to allow runtime configuration of grsecurity features. Activate + the grsec-lock service unit to prevent further + configuration until the next reboot. ''; }; From 61a3610853428afb03d89d159569229a557a1cb6 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 16 Jul 2016 11:34:32 +0200 Subject: [PATCH 271/508] tptp: 6.3.0 -> 6.4.0 --- pkgs/applications/science/logic/tptp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/logic/tptp/default.nix b/pkgs/applications/science/logic/tptp/default.nix index e9a89bc0dc6..32906b88d59 100644 --- a/pkgs/applications/science/logic/tptp/default.nix +++ b/pkgs/applications/science/logic/tptp/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "TPTP-${version}"; - version = "6.3.0"; + version = "6.4.0"; src = fetchurl { url = [ "http://www.cs.miami.edu/~tptp/TPTP/Distribution/TPTP-v${version}.tgz" "http://www.cs.miami.edu/~tptp/TPTP/Archive/TPTP-v${version}/TPTP-v${version}.tgz" ]; - sha256 = "0xy4cqniyx9fv8r9mc5q5b7xl163pkr9hcmpq6gkls2a0pvg07w9"; + sha256 = "1i5hi8grfl5zyh8py63zn39rg019bd90h2l312iswbgai6nyfdw0"; }; buildInputs = [ tcsh yap perl patchelf ]; From a377c71280e9ad7cb085faff85b3ca1ee198a6bb Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 13:04:04 +0200 Subject: [PATCH 272/508] firefox-bin: 48.0b1 -> 48.0b7 * removed firefox-developer-bin * extend firefox-bin expression to accept sources as input so firefox-developer-bin can be packaged outside nixpkgs * generate_sources.rb now includes full urls in the output --- .../browsers/firefox-bin/beta_sources.nix | 366 +++++++++--------- .../browsers/firefox-bin/default.nix | 14 +- .../browsers/firefox-bin/dev_sources.nix | 12 - .../browsers/firefox-bin/generate_sources.rb | 4 +- .../firefox-bin/generate_sources_dev.rb | 53 --- .../browsers/firefox-bin/sources.nix | 364 ++++++++--------- pkgs/top-level/all-packages.nix | 16 +- 7 files changed, 370 insertions(+), 459 deletions(-) delete mode 100644 pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix delete mode 100644 pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix index ad26ab6e950..19f130bcdc6 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix @@ -4,189 +4,189 @@ # ruby generate_sources.rb 46.0.1 > sources.nix { - version = "48.0b1"; + version = "48.0b7"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha512 = "464c3b19ab7bda118d962da2699dd40482e1742887bcd9d72b8b7d211c7ab085aaf4c31fdea3c4e195af9030276118431ed7c2e6a917b354c5bf9f55cc8111a9"; } - { locale = "ach"; arch = "linux-x86_64"; sha512 = "d9f9844fb06637ca7449bc00c54c02abf8660c42207c0671fffd53e2415df7b0fc3df782c4a2ccde807b4c2e477b0cf3a74c36acb7cce3f75e4ce267a3575e5c"; } - { locale = "af"; arch = "linux-i686"; sha512 = "77bca1f05627ed9ace120eee7a7cd24fc354e9bf23a7709e38879241ad87c5d39a8cfcf2aed12881b6f9d6d611c334a864c20c9dee877952990c47c631c6a61b"; } - { locale = "af"; arch = "linux-x86_64"; sha512 = "bf4d5353a46778d93627c232c404c768e643420b17d490c932848d126846e4ca3a185df671dcf72b1c1d3fe75606c212e6b0dadd2169b52c4fe73f5088e87b94"; } - { locale = "an"; arch = "linux-i686"; sha512 = "2882258205866c93a4b808b7397ff62efd629b74b5233154190ce72ddd0be5d1eb8153d686d921ddb72049dfae0f11c3eb46128413e578c0f9f6323636a0e378"; } - { locale = "an"; arch = "linux-x86_64"; sha512 = "543b1d66dc37e1843f370ff071adb050af16e5777bc0042c2d25579a7d99b5b1d176ea099a0b3afc19f270ad5f191fec65e544634e2bbc2223ccc6afcb1869e0"; } - { locale = "ar"; arch = "linux-i686"; sha512 = "855fc1c71b50ba5b8354ee7ce2ea59664b40b77d007d99ea6b658873de729e22ca9018e475a669992b2e2bea9388fe0966e06f1e2b0d334df4ffbff2be147949"; } - { locale = "ar"; arch = "linux-x86_64"; sha512 = "8ff272dd30cc66460a617dd80678b68917067b87d63d6b307f6d60e61deda092f46bca9e890d08b69a0738f4c204cd2c5896201b362df68aa9abbe7dd0fcc96d"; } - { locale = "as"; arch = "linux-i686"; sha512 = "607039866932e6ec0692c534aa2e4ddcb3725d81f2908e7e905edafdbafb3221161f5ae4a5b6eb2ba065e9bd66e1f63c008015b17040033ed90ffa0576b1d08b"; } - { locale = "as"; arch = "linux-x86_64"; sha512 = "59f3c28bcbc50a9ffe780025e03edafbbf82a213f28ba8e0f62a04a0e052038c24e1a5928ad4a730455bd358fc3cd0f1188e785dd13f79b377d86e5c55360735"; } - { locale = "ast"; arch = "linux-i686"; sha512 = "c9767d9b73ec2dd411e16b1fab503e97b7960c315533ca529c4898dd10a6e0f809104588ac33f440e1026d026d114ec080cfc312b1902601958656607cdd4ad1"; } - { locale = "ast"; arch = "linux-x86_64"; sha512 = "f4c7ab66af5e7fca460999b3d68793f8099b177809e70f682fcd7b0a50a3d5ad2a1c15bc5df5a63c37437fce9d70e08e963119755626c357bce6eb17bfb229ee"; } - { locale = "az"; arch = "linux-i686"; sha512 = "58bb0eb057caf6af113debeb8d9d7eeb3b2fbd2c52c9dac04c527a67da45b3a4ebac4debfea1704639cdf20ec116876e140f4b55ea5f2b90f3afb9db6b2641b6"; } - { locale = "az"; arch = "linux-x86_64"; sha512 = "a82fdc532e4d9fee9ffab9ab8aa58074c4ed174c131d56b4ed48b1ebce1f8950371fa7c7e174c4f35150b752cdeccc2a553b416e94fb3eec22c0c4467c0b1f20"; } - { locale = "be"; arch = "linux-i686"; sha512 = "55a96ff3fe9e54ec09a828f740899118504848c82b9c842ed27b9c1e1179f8efcbb2fae5e25f01dd1440f9d2ad896e37056fe8240979cf2c60f536870590cac3"; } - { locale = "be"; arch = "linux-x86_64"; sha512 = "6fe1b00f8a03160a5131a52aba5b31401bf18913eb5b6018d1dccb0456ee09154c76220bb94b1ee20bf5b8e63535a888abf895af570e9a668395b497bbdf90b1"; } - { locale = "bg"; arch = "linux-i686"; sha512 = "e21d3a2234b533b9d5904be3c1ee4f489bfdea747ff2b45828c40712f70d631ca824375c7a232989741bfceb8a7eb1ca341a4709285056cea2cf3689326a9c35"; } - { locale = "bg"; arch = "linux-x86_64"; sha512 = "160600a553d452c30d533e4d9a4ccc4c4d0cbbadf7875856f9be0fc81dbb7a686aa79f47ae8ea1c1e3746d150db31c7ce0dc18f1d271a47abb6d9bc35f478bf0"; } - { locale = "bn-BD"; arch = "linux-i686"; sha512 = "6a4267ce4e0d474779f16a7bb31fb873c0d2ba4af993428330bef8c93a24c1f9121b68d50956beb3df549fccf233fa2ce851c69950bf93cf6cdf34debae0cfce"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "31100d78f0b2fcca2643c822f930ffcf01da9ad3c026d8e05e88b659afddb9d55a000dfe043a87d6e4008d40fced109c134a3bb2c8183a1044d462fdc050989d"; } - { locale = "bn-IN"; arch = "linux-i686"; sha512 = "cb0efc8151949b33c23cb9d4fe41168830e215d4361963ec9399e43c97aa4504b4539a202f2c43283e63ea0a4afbdffb9bbfa1340a256483c3b848ef24660734"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "37e8311e0126da80740b9f97b4b69eb2285716b309e1986daaec5becf88ee5624343ca3b208fa84eb63477f47234c8d5958e394bf750da32e02d777ee94437f1"; } - { locale = "br"; arch = "linux-i686"; sha512 = "be6cb0e7b1ceb0be27a7203620b19341c16061ce0d4632f9ce135b2559db2ca31adac2e40ef95f98db903fd151a1b5d411232361631272f2d6200dbcc45464be"; } - { locale = "br"; arch = "linux-x86_64"; sha512 = "aa71bd069902a921b2a61ebbcbb604972104ba5f4274788da261e1e527dc7ce10c6a9aa0652773f0d0499d53c2916dd1e2d862b900fb87d678a9bcb401948cba"; } - { locale = "bs"; arch = "linux-i686"; sha512 = "5282780a9f35577498b95ded38f86423d043429a0fb4b9ded956716381a3343ebe653508e8929bd8ac7475a2fa0d6c4c67e84482cae0d40a681338eba09f4c96"; } - { locale = "bs"; arch = "linux-x86_64"; sha512 = "1056be9971338d821025a5d272321ea4b1704f3103c02014cde711516e9da5303dbc5753f0c2c1cf236096a53b3b067261b628f17d6d45e6c713f5b5cdee69b1"; } - { locale = "ca"; arch = "linux-i686"; sha512 = "15c98207cb051466bc89dc15fb2dc1da95490306030fb318f3e3bb184d23590df7213e183af2e5178969099a4edf9752e5872a9d4a091958d7a9ab6087ff6bdf"; } - { locale = "ca"; arch = "linux-x86_64"; sha512 = "f7fc94c6c358dff1336938ff2d28c4fb9b0d391c22acefa7e286004978570e18cc1fd1a41a101a8bee27cbec1d750e04ba43cb409886f2b72e8e16a9aed6c835"; } - { locale = "cak"; arch = "linux-i686"; sha512 = "96da63ceb6d4382abd8d1e343fdc4b72ead5e5ed2e3d451e768c6b092186287dcbaf239c389d29bc23e5641495a3f2a05512377300f45402428647ab77550b17"; } - { locale = "cak"; arch = "linux-x86_64"; sha512 = "8584d4d82c79a56657a01a9cff211fa99e0fbcf0a42103a6cd9688713e7c11b77f35535fe31ed7e48855e055897b2c5fd84c2b1796c313401d8f01ed889ac7cf"; } - { locale = "cs"; arch = "linux-i686"; sha512 = "2dff956f8df85bd007b68eeb8b809ddf7d99a6185f6946d2f4fd371f17e4dbf46bf2aad1799b6a1c84bd983935fa2ade5acd3b062f3eee48f7a160f37f3e8e6e"; } - { locale = "cs"; arch = "linux-x86_64"; sha512 = "725a2e1272722cdce125b5dea7e61525a43ddda6a45cb003f397ec8d1c9334f11adcd7fb6dd2c901de1cd9a0d07eae54304e5f95ecc6c529c80070b9d6af1b47"; } - { locale = "cy"; arch = "linux-i686"; sha512 = "5eeacbc1cd803687235927a91923895930e135a39de62574c79499fe56accb5278da3efc4d151f0f93ec482ad44099481960dd6e3102afa94cce3c30db67b133"; } - { locale = "cy"; arch = "linux-x86_64"; sha512 = "49fc8136b3900b96fcea850a9549812b1cf1e9b1058cf99ee7e2e135cf49827e46ef4361badcc4efbd5dd09600d5269e68392f8df03c2e039d6b3d04b244aa71"; } - { locale = "da"; arch = "linux-i686"; sha512 = "f806a36960cbec3624be8ebf6e7f8116635c7fff63ca890a886bd16fe73ec8a311d1e8b3c34ca680425d4634c91f8b96b0617cd175eef69e701d7c72e8917872"; } - { locale = "da"; arch = "linux-x86_64"; sha512 = "22a274b9a5a1e670369009f2e48a4b7d2f63f18baf435d001506dd590b59115d43619fa824e2156b468b17739aea420621148ca47cd46bc3ace31bc5be4533f8"; } - { locale = "de"; arch = "linux-i686"; sha512 = "6d64a77f420d1f87b7dac151eec75d4d42ec1f904b882b970d88b0e20a38ed5ebf8cbb2180abbdb8fb00dd60621e538fecaf77e09c4aee51f71a38a14f81b9b8"; } - { locale = "de"; arch = "linux-x86_64"; sha512 = "897918d57691fb1a3f93273da48c128cf8a91e9bc5dd12d0ce2b4a085ff4df01db3ee28a378f36b7e7944c23f71df8a6dbf3481ec207cf85b73f3bac95bde054"; } - { locale = "dsb"; arch = "linux-i686"; sha512 = "d5fa1438b71fcd3507175619090840cf983de9efb003f537eb28b9dba66f1cb3518e1410c4918187eb25766634464aaa796ebe0020f8fc110361008751e1c359"; } - { locale = "dsb"; arch = "linux-x86_64"; sha512 = "30cb3759bd1f6ba91dfa847703326a57901782ebf397adaa1a403afe894f9b8cdeba80fc910f50037bae003e61956845f605b0e62c364c1c415b12a5abb87080"; } - { locale = "el"; arch = "linux-i686"; sha512 = "991dfd0870e38ee4a8887a61ce87a4c5af1c21206442a0602197caafae0be2c3c5aa4c7b25fd92fd9968bdf25c780ac342dd0203c3df8d729034ba20a459d120"; } - { locale = "el"; arch = "linux-x86_64"; sha512 = "d62b4f1eb5feeb30e4d2d7b8cb7391f374a209d14b70cdd77acb56106b6df36f54c67a3c5fa1ab4286fd7c46b5d0a42efc52d140b8e5cbe08b17c6d7bd14b498"; } - { locale = "en-GB"; arch = "linux-i686"; sha512 = "2cddfb3d4472bfda882a3e3a054d5826a596bfd6b9b4399d7f45c6ad9f157599206f5e149f6c4fb35845ae291320520bf7a76c891713f1951c6e9a9450e92d23"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "d6bda8496f96448b9b046822547167c9c631dbf35c8bba07226634fc9aa1058009200d10e4e586fe059ab1e7b558d6cfa2c0040a33220d46dba5ca742bfe6f5c"; } - { locale = "en-US"; arch = "linux-i686"; sha512 = "a9025b8d66c9294ede71ed37b7df256476cc640f7b7ce74cc4998c0b4b5741b5f869c486f1eaf4793fb4b2f347ba069f859e1c5318fa8df18c52377c83f8a09d"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "a551550037fe762d6d06a4f046ff4e2f37cd2607aace13df5ba2e28d643ddcef01210367555fb2fc66c6fe45d83f0306f61f4139001d1059ea5e913fbd43cd69"; } - { locale = "en-ZA"; arch = "linux-i686"; sha512 = "3e4721593a69bc289c7299b64e91af0ff121d59ded0167bfdd6692dc6d7a0ce0b0a7e8e89a591cee9fb90dc8b9eac26c5d978e4443b1d3462a0f4030ec8c5a50"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "76e069c8938cc133576c934e4049fd4d8920d8a823122f1961d4ab69802e9e52e920873fc1406dbab01edebd0cc576ccb12df0ebbf5487ddd49c339111bf7101"; } - { locale = "eo"; arch = "linux-i686"; sha512 = "ff071fd2545a8dfe0fbb1b1dae57d3fc4b0743698e54746da1f774b568b2b9ad9b0e14e2cd27f56031e1d159a05ae7d54060509532a7503b3dcc7fffa442a514"; } - { locale = "eo"; arch = "linux-x86_64"; sha512 = "7705efee2c65de30a0efc6ea0c372061f47c4266ab7faeb6feb01bfde4324ac92ed99a9eab81d8c4e2e6972245953a200c4331b26845eb7a2f9e048fb3023840"; } - { locale = "es-AR"; arch = "linux-i686"; sha512 = "3c08ab10d76650fd11ecd9616af1d4646fabdc55b63c7625940630f8aa25427482a3ff04052b91e6aceac708ca187552f7c87343d08c01cc1b4940e341e1672b"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "b6d700123f612b93b952f05bfa92dceed8878ad20a84214f8daab63e4eb669f1f69a9a5d6d28896b16b19d3dbd710b98a4851d7f611bea0fd79e41930c3d838e"; } - { locale = "es-CL"; arch = "linux-i686"; sha512 = "7c64c7f7058b1cb3bd5f55b1afa0bc2e779d46d05e5dd354fac7573ad6245ba31aa126301d827ffd17f197b460be24c98ad7c2a9a3d4c66cb6189618a4e38ebe"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "dcc4b4085fd4e480e79ca85b862c421f6e85d200d46b40178ce27177c1ac00f0d19d0c71ae3d7c12e15bf570cd0234743d080d06dae1e9e3c0c2f0eccf4bdf86"; } - { locale = "es-ES"; arch = "linux-i686"; sha512 = "d049bada399fbc723ceb14aa116b9218d14729cca6a2297d852782e4d3a0cc7e278aecc62ec4b7f1e1c5af10f65d0cd0bd39e6fbf95d989ce4d2ea5b0e2f7901"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "a77978f8af7f932151468c9e002731c8b6b3e9d3d8d8dfdcf28cc545b63f1d859b99c6dd25c547201b050f58bde9a55fc67b8134ecb0c893ce50f7788774fe99"; } - { locale = "es-MX"; arch = "linux-i686"; sha512 = "46a7bc0f112f99ffc218e0161116b373c5b496e8d73744f9ed341fcd0fece5bc4618bcaebd68cb0aa80bf86078163d92205d322464dd8a918463507e4a9bde9d"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "412f52d4eaf3f85cd452d18164d2ce13d3057b45bd4f81ef2255a3580bb5b7e68f23dfc8622dbe3c4d69291b1fbb4a3312a429713b940b081415157fe5dc849c"; } - { locale = "et"; arch = "linux-i686"; sha512 = "34d56c20cd06f224d1a3916a12bfd3f076a1659d9bf21aacacd5bea59e789ff496600b712a12f0b67410da97e0500d2f28f1f916872bd223f9f3b913ac648552"; } - { locale = "et"; arch = "linux-x86_64"; sha512 = "383a4e2b28217651e76a06dd84eed5f058bf53c25847a6ef0ad1ea9e6a3c98f6a94ef05999a92f03f669e7cea0df11654b201c4e21fc595fcf99bc91b90c05df"; } - { locale = "eu"; arch = "linux-i686"; sha512 = "cae20dc1b9880dcd9ecf4331bf1b6c6208a63ee3490ac8b827c9e338916a9d07e447f93be4108db78ce3cc96b8d3828f1882c28aaf28f198fa4f875035ca5835"; } - { locale = "eu"; arch = "linux-x86_64"; sha512 = "38ff3155783328b685c72f1ada0e01ab8a8fb75b191455dd43de590207f9b3a258da7cca6ecd3538a7d8319c8d1372e174fea0a22baecb497ca33aaff80a33d2"; } - { locale = "fa"; arch = "linux-i686"; sha512 = "6d4d15e4897568d32128f193fa7bb413e63cb2bca23b81a16cb5b9ae7a558b768193461a182552da1153dfb708f834434a1fb63478cb5fe7984b91d00415ea34"; } - { locale = "fa"; arch = "linux-x86_64"; sha512 = "6439f27cec2a8af66a4e68406c88b536c5f8e2b0202ce82aa46e75f840cb3977ddb041d8ee315d95505ebaa0e37b36afbf26ea0f39310cda09f6e765eb7bb120"; } - { locale = "ff"; arch = "linux-i686"; sha512 = "ee9114fe358d9a6dcb7e404f13fc594de9339fc7ad126063b52548d42aaedac7abbce9e647766462de2716c3ad248b6992dc04e96ea3816068e884c30a3bcf84"; } - { locale = "ff"; arch = "linux-x86_64"; sha512 = "beae2223a6b3aa555c071b51a46d3b0758efa53b6002f2486554f5bec154cfc1a1598f0175af654fc47a60a170eda916152e959a5ce2f799b779e5040ae15c5e"; } - { locale = "fi"; arch = "linux-i686"; sha512 = "d8414f63f04a5a9c916487f93c67d2368bb4d8c8fb757c1d58233e6c6e6bde139f323b1c77dda57730173c6005b2647c688f7072ac09c1962b04a2493cdfa18b"; } - { locale = "fi"; arch = "linux-x86_64"; sha512 = "7e0fce63b69653fa5d0d0ffa9598d10976a1f49aeeb48bcd8eee26b51ca1f6d1d898c84944a442d530abcab700dcfdf89c48ca23db9d835c877388a8f694b7ea"; } - { locale = "fr"; arch = "linux-i686"; sha512 = "c3bfda75397d644bc4392ef87f1d24faa033f4c5672adc4d5d0007d5fbd63efd7f46a2febd0bfdf95d8f06152d274daf39ef6355e049e7fd5e53e2d750d03ae0"; } - { locale = "fr"; arch = "linux-x86_64"; sha512 = "81c8091c9d8cc1ede738bb1d9b4fe72580d13de7e3f89410d1c684ca017ee197837788e63243c9722b30e23b2c910cb54fc7985f4936bc6068643a504d9a4ebd"; } - { locale = "fy-NL"; arch = "linux-i686"; sha512 = "59797af1d76fb2afceb06de28c6fd13bdbc14d42c61f87f1f71d8273e03aa691e2ade3ba0361d19721862878c911ec46ffbfd0431d19d6ec0a92ebac05cfb4c4"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "19d0cfb01374bf2842a17ef4e9f5ab85280c1090723c1657459a230262d22aeb14c2faee1b86ac0b342c5926cbbf0479f2e1ec315117c06ad3272a3362d02f8c"; } - { locale = "ga-IE"; arch = "linux-i686"; sha512 = "c1a4fe00a36e95fcd33d21544ee6b4fa5a6eae0628a37c27057cc801a641fbe5519818ccc157b87b64f24f4886dd6dd629809c89b9c89dc4878de794e48b107d"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "8d9654ecf7b6cb43b4794f345105c779809b9bd39a9dd46a0fbb1920139e9234e7433fd9a8d7dd57192c738d187f97ab82c8dd3f3a2460e3a34cdc9e9a5c5089"; } - { locale = "gd"; arch = "linux-i686"; sha512 = "0d48b2886c431a9237293f24fa5f8cc7104a3373b24c98e23bbf93f66aeeb5b8b9e737712bdd1c777db19bbd6b01f9a33f0c388b6af023d852cce6543d486973"; } - { locale = "gd"; arch = "linux-x86_64"; sha512 = "0339b6952f993d38686d92ac9a664cfa558f2827b92ae3464188f12e28e2676c8c4718cff62a840dba14de687434cf13902a621094f63e1bca1ebce321800d15"; } - { locale = "gl"; arch = "linux-i686"; sha512 = "5cecaede8ebdfb58951b3f839388b81dccaaaa5d3b4fb5cbf26978b23cd962905191fa91d961037fa15000af47ab48042d272fd18a73e5ed4dcc2bb0ff4416ca"; } - { locale = "gl"; arch = "linux-x86_64"; sha512 = "d1a0447ce592e7d2a8564d9c27fbce5f9378a4e21db3fa501782e57b6e13ede6f42b612fffea32e8891d47010509ac8e3ed1f63c5a81878008f9bead68b6b750"; } - { locale = "gn"; arch = "linux-i686"; sha512 = "aff2f407e4c947d3e34447b43e844135562d79bf937a05dad5ce4dd1853dd479f35b4f6af1b2d8b52deeb9786a4fc67980cbf58ad82a747a7e55ea753a50ad43"; } - { locale = "gn"; arch = "linux-x86_64"; sha512 = "78645796fffe364fcd28b80cde591d88db91a756318f645610f6823b616222c0c53faf8d55aaf1703d4bbcec1e8381cee566bb5739ccfa181e1d1224408463de"; } - { locale = "gu-IN"; arch = "linux-i686"; sha512 = "331bc227d138a49d74cca37f8d7ba4e6eb891064357aa5b0606761f9af8cc4a029816a3a96cc3ac4dfb71b1d010c569940ebd70375fdd06af7b6b487bd90dafe"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "d1f6c5af9e75e76683d39281eb559ac688436eae65d6bc486763028744af030a6c311d1f0358ead5e88ead60357261032dd739251352cde097986251dfdff325"; } - { locale = "he"; arch = "linux-i686"; sha512 = "7a49d8cabab6aa8480026de6b77e1b6d60333c580d2b9591cf3fdc8c491d269f6a7a7f93118594de8c87576dda868f12de5a88f494736f721ee3ddc16a9afea9"; } - { locale = "he"; arch = "linux-x86_64"; sha512 = "0eed4301d7949415d21426d9e52825710a0f48a1a0a3546f62d757059091bf12b3b53091f2c3102de0682162e3982a9fb58c111c9a6b8245d84825892e1d6844"; } - { locale = "hi-IN"; arch = "linux-i686"; sha512 = "70ecabcdfee807b1a7e0b6a167bab07d3df798672a61bb7b80d1d6c3ace9385c472e08dd31f2c4c684cd5e723e7024016728df7b22943d3adec3d770ba7abd1b"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "11e8be059afa8298a23857bd68b2f895bb60f73378c513d2aae0395b5faed68123631d9ee44b5608263334269e33b76b4563c063b2feec486e7a2dac1be42275"; } - { locale = "hr"; arch = "linux-i686"; sha512 = "2c99b81cb0c8413aa98dcbac2cbd45d59a440c173a9cd744b78ee0d60b82ec4fe4894fe5e313d51b81caf6b86f40effdb36f5fd90c73cab82acf97c20fb5b152"; } - { locale = "hr"; arch = "linux-x86_64"; sha512 = "fc209d82cbc24eea777a4318f5555d2cea4828bb7f305f868b8fca18014ea7c930f778c716eb0b9c1a7e29d9a4353b4c537900f9d659c432d6a75b1eebf30963"; } - { locale = "hsb"; arch = "linux-i686"; sha512 = "3232380f15a33f31f8e3755707231ba0725b9afdae1d2a0d4fb2eb883ab4dcb5c8aee75549e41e7e2cdf445b6f39331b2be4d7e417604987c7ced46d2dd5dc51"; } - { locale = "hsb"; arch = "linux-x86_64"; sha512 = "11bb460c404316c322e2498986ac6e7cb976a196de7208ee54dcd4ec61b8f05fa8f7782d6cf462cd5531f3137b1688b7797da2d78437e3c4d4f95867c781953c"; } - { locale = "hu"; arch = "linux-i686"; sha512 = "40c3837c7ca4e0dc9e97e4c4422e54cc3ef157933ce9969abf71fd422fbcad517a6f6da3bcada83d3567323e83248a060fccc8a23a7f6fb55568a5b7ee0ff464"; } - { locale = "hu"; arch = "linux-x86_64"; sha512 = "d05bdf14ed9c72031a29e7e9b39afe79bd2ccdc69bafaf8c6196081d462b0aa57a220a8a2105812b215067494c53de8adc994fbbb3549ccfcadfc15f99c710ac"; } - { locale = "hy-AM"; arch = "linux-i686"; sha512 = "a9da495cc3e7a1e89ca8dd7a3db6c83529e0b7ba6562e7f0542f8b9c93bee8e4c219973b0b6fda1abd046d933fca718fab1f6bd4350ee960ddd89144dd321ed6"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "53db4843e0c9e99188e28bbe46b09239d998a3bae35ab79954bc6eedc5e73c0f3010c500dbb93f8a6ee2d5b22fb3ee9fef9ef6eef2dbbadf4b83f948282a8bc3"; } - { locale = "id"; arch = "linux-i686"; sha512 = "05e7450a164c940e43ce34f6b7c9ad610d1652f11b0f030dfea7c9d8539961b2f3e69ab0d3b8d714725cf3e8bb256f18f4ac3613bc86bbf6223d9914e4eb77f3"; } - { locale = "id"; arch = "linux-x86_64"; sha512 = "7ce0b880406dfbef90ca6ae6f121eaf72bd289e7b57f7686ea83fc182cb9b54a3e0bd8b23bffbcfb3c9e82a6b13c7afa16ce56d426f33f66072db4b5f466db04"; } - { locale = "is"; arch = "linux-i686"; sha512 = "71446911d5142ab19308aca456dcc1d4d087db07898e331604230faa58c2146b980212880c7f88b6e3770b303a8450cff9e447638b5a063daf50ec25d29de738"; } - { locale = "is"; arch = "linux-x86_64"; sha512 = "2542f214cb2474eab97d18a1daffb1181fff569058b91c1c9d7d6400b8401020b69ea9492fca55153c904289be45215b37ed0846d563f8f06ba401c482d59762"; } - { locale = "it"; arch = "linux-i686"; sha512 = "bdf0da50be211492e2acdd9de223ef741fa916c54e94bf9c8eb20685006b68b5f430949161199a915c368d11143caf828c25b2e82c33fd5a61bfcd05de53966e"; } - { locale = "it"; arch = "linux-x86_64"; sha512 = "a4562fdcac6d9ba96fc840498bbb381de6190158fea65c4809ea1ff3518181ed47b7c33bb772077975fd07c23a1e8700403cb6cc67c5fcb1c24e72563214f4bc"; } - { locale = "ja"; arch = "linux-i686"; sha512 = "cc81a02282474928e7d2efc694761168db022ffcbf5ff32d92c21b90edfb194187dfb78f2eca4c42e60cfbba8ab6614c1c7b0359aaecafa47b1c9d3918327cee"; } - { locale = "ja"; arch = "linux-x86_64"; sha512 = "07cd92b7f9647f774b080cfcef828899144cb03472d70394be197c43732b164978e1d9ebc9212a47b58fdcc61f5009328e766f4c6f799f35d73a4dcd2b31fdd4"; } - { locale = "kk"; arch = "linux-i686"; sha512 = "1bef31c35180ad7fd49ab695a6985d8be301a6802225d319e979b8c716e78a5687753b6f63516f4b4221c402a2d2c8c0a0e22aec9023cdee98d71a4335728e7a"; } - { locale = "kk"; arch = "linux-x86_64"; sha512 = "dff599278a27fe2b4efbcc99b7ad3b211ef5debbf1b95d765a36fdbdbaebff69936c250018f237843481244e2b02cb8de4e3090d9422adcbb3d8af4239759269"; } - { locale = "km"; arch = "linux-i686"; sha512 = "0080783187b80019cb4c56e2b30a1a403c632defc375adab7d613489fbf7f217a22a779f0119e2810ee9f0bd024418ffc654df146873a06f59bc7f1de5fbf244"; } - { locale = "km"; arch = "linux-x86_64"; sha512 = "84d1ca7fd0a4d6a39aff375e922dcdcbe51fb2b497c6eebc312abe6cb5b29bd049e648197f0181bb2ee1b47b43275c14eb13233958c0bd4f7cf7b28e5725de97"; } - { locale = "kn"; arch = "linux-i686"; sha512 = "2dac35157e3264547726ad33f786bd86e52a4db8aa8d1449cdfa9993e5bc16556c6005e06cee915e427e74b3eb4eed665a4a6deed7bf3800a95319346fda3690"; } - { locale = "kn"; arch = "linux-x86_64"; sha512 = "175b3edf58286a229ab4045ca2d75f8a00e8ddcac532fbfc8aee5a048e0ae0cd5044155a8619d6dc53756150bce2d46b910e1abe216bf537d259435199cb42cd"; } - { locale = "ko"; arch = "linux-i686"; sha512 = "1db17eaf47e7916366d05021d683c2b4d8f26316abc057a450d24a5d19fa1ed9aaad2f7a45cee63c0f021d93214b62a032d17312cdb123289b31dd2e5bd43808"; } - { locale = "ko"; arch = "linux-x86_64"; sha512 = "4bc673e54fb0c30b7c8389c2a66b322bd4b19e8635cb3d633754214c0726fb95d3194d09435bb4afca17e6cb3f03f028408d13f9ed44d8c2b9c323eabe5101e9"; } - { locale = "lij"; arch = "linux-i686"; sha512 = "8349ba8cf921d73f0c3bd54c9a30df9c0232d7686724a0d635435d65a6bc8baa1915e25702b930cbefe954b5aedd1d3faeaf54ffa9b5dc494e465a635a57369e"; } - { locale = "lij"; arch = "linux-x86_64"; sha512 = "e12597062c060dabaff08c251f82ad63f534c341d1afa94e567c763b7ac290cbb03a27726e03b449ff89fe8b86b25211e807ef7ba34e876d902705f9361d5cdc"; } - { locale = "lt"; arch = "linux-i686"; sha512 = "f67ff28a20ae0580aa537797928bf84cdc088cc0df586071a460eda6ea7b96337a5004b2689688a487ed246b5d83a14bf77a5002f39fe7ccc46e92f65b565cf1"; } - { locale = "lt"; arch = "linux-x86_64"; sha512 = "f4ffb37c69b9c69e9ea54d691bfa3c069b28d5b1b0b48b917f4c6f10c1434bb451b7c17e777b5daf3c869eeefb2a064264bba7591f681d319fcab00335b37384"; } - { locale = "lv"; arch = "linux-i686"; sha512 = "7efe759ef2f0e585a8887e829e2bdf917209efd5b3d5235f5765c0995206c25941abed9b11f9241da565a919f94890682a944d2bb7dd1d1360f67f173dcf2852"; } - { locale = "lv"; arch = "linux-x86_64"; sha512 = "63cdba3ea94fb1847913a42ba70193ebfbbf1235a28881c7d671b20dc8272c5989dcb8290087a0862cea7a4c8ff448ee61b42a13d6c03c8787be1dbd957769f1"; } - { locale = "mai"; arch = "linux-i686"; sha512 = "0619cde7ad13590d2da001fdf87e2fe9772d65d1ce468ea2b1f3085d8c6c157f48d23b343e6886969dde5827d12a368e208242dd16df4e498893d53f030665d7"; } - { locale = "mai"; arch = "linux-x86_64"; sha512 = "f65ab5c51b7dd0f127a4b9f65a0280002af3387b12e8730f8efd79f4700f6c5f5842e3f634dd738571995dfa52ef58ec0d68255ceb52c6a7df0332797dfab253"; } - { locale = "mk"; arch = "linux-i686"; sha512 = "e6d2bf183fc1fa88d0bbccbf058344e8dada0271694ba3bfc149e965ff16ec05ba6f7a04cc39f3657524555e84f25d072d7922fb2c075b0bbb8cd933336f1d94"; } - { locale = "mk"; arch = "linux-x86_64"; sha512 = "68a96a11e38944d654d1aa720b5a099fd0789520b8681f15cf33d972956e7dd2c44d940ea0b2840c48db79615aed8c83d3f19769908752f960f84a7bdcf3a2ab"; } - { locale = "ml"; arch = "linux-i686"; sha512 = "32c8e00f71a7fa609c3b99799f64362962d245d75865ce54fcd72e8cefc45f5cec7a99ed343a7bd92614569e62a02ac0e712b4ca3fce3d5d0f2f7ad52767c209"; } - { locale = "ml"; arch = "linux-x86_64"; sha512 = "c641244006a11de3b6ae947f2d5bf8b40fd4bcde8e7b71d2fa2a8258087bf3d6382f21b10b05b2554f031ee95a579d31d0e0d8f1b72a5e1101acb31075aee02c"; } - { locale = "mr"; arch = "linux-i686"; sha512 = "3949d3e4d9fa507c50f5ca92ee9cb041dc9d034f78d44343139a1576f128a06d8ef3aa2b1fcfe11d77a7489b0f7dd18e14f0ec0fff595dbefc219f6b1eadd969"; } - { locale = "mr"; arch = "linux-x86_64"; sha512 = "c323cf8842f695e47f3c91d356ff63bb0ce7a5cf47cbe874dc6956d90fd84f6330e6e1f5f0bbf61e2cfda66a2dd0e81a756f3b464108e7ad84450722562e5906"; } - { locale = "ms"; arch = "linux-i686"; sha512 = "f5ded01c47ac91d506a10774b198b3c2fdcff35a10ced17cd0cd94a1e367d489f2afe7ae22d59beb420f771684cefe3724c88313249a4c6072ce68f36bb16cbf"; } - { locale = "ms"; arch = "linux-x86_64"; sha512 = "39d4a052c21fe9ee876f8b8a7fabeae9a6a30d959e1a7b27b0a1fd08658cac5959aa4879e3056675e2b7de83f588cf82f5d138f2ee5d9b0bbd135b51de109f7b"; } - { locale = "nb-NO"; arch = "linux-i686"; sha512 = "6cc34cda3cccb3ce92f44244e291dc94238292ef6e91172d73659ca5b4b46fd004483680a7a45ad3643d59c57c7fe7bf4286f4cf7c903301eb39712db9bd3583"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "da645c69d2675bdd1d2808f0d7446ded4414311bffe5f1a37a685f6f4338a56e831349a1a7904c0332266e909e4e82085585afb14b3fda7925698d66e9912a65"; } - { locale = "nl"; arch = "linux-i686"; sha512 = "a2d906caf6b4c36305cbcd2840915000c53db2ac03122aca162e672014b217237363bc309cdee5ec19d21106073044fe8668fd044805161bf4916cdd938565ed"; } - { locale = "nl"; arch = "linux-x86_64"; sha512 = "6288c2f0306aacd87a82a3a6262b514f32a177674e6b96eeb5a8f937ee36b6573d8a3e6925be87609e4d7dabd1e6367eb0e730d87148cd50c1572756bb098a5a"; } - { locale = "nn-NO"; arch = "linux-i686"; sha512 = "04454f9f5dd2611cc76575a41d56f6819c5b97e213f82ebf0aa5e8393d9cd4a99a9df5291d3e3c3985396a99559f39fe5dc6a85141ac1d2f4919b731d7539a89"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "fb55685275d0b6c9e47b0356bd4249feeb3005b338d2a2caea4bb7b86edc6991752af9276db91f448032ba7d9e01209d92706f7612531232f87c05cbcb13f337"; } - { locale = "or"; arch = "linux-i686"; sha512 = "16639bc10229e171577abfeab841bd7b5dc411f4e314335787727803a486b8f04e8730a7be9321172fdd60791fce7363d5ce5aa28628cc4d2b7769357737cd0a"; } - { locale = "or"; arch = "linux-x86_64"; sha512 = "041f3a63a4cd9c0f287132252df7aa6d7eedc72650244729e01eb52a93a9ca8206a11cd7783e7778d4cad9a525ce2aef1c423840ea5c54fa202600a0b5805e31"; } - { locale = "pa-IN"; arch = "linux-i686"; sha512 = "7c9cda0d9dd9d1196ca33a58b6f5f3c3f09896bf65e8fbeed67fd9811cb1bdc12b7ca8966b7612cad524a3bcc9dd1e2678627f6cfe172b1bfc2d9b64eaac17cc"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "56507e7e1e93ae880de5410b4ad8c1302f58b43ade2ee4dc70c1290334edf2ea05f7ddf2ca00317ee33662de29c635caad8f73332935fd5bd4ff6a37758bd195"; } - { locale = "pl"; arch = "linux-i686"; sha512 = "52cb7e700e541a82328c935a0a99313dad6b7699c09a1386697c77544284d53653705ec6d57f3cc1bec632962217c090ee39687a81b19f3a3af2178eba9a1eae"; } - { locale = "pl"; arch = "linux-x86_64"; sha512 = "77a99740ad99808a31df3e71038944901fc0d5339f919cce40389de67baeecf2b9c34608194ea1f0e4a25bbaed0ba06159d10ac8816735b34a2e28ab041ae97b"; } - { locale = "pt-BR"; arch = "linux-i686"; sha512 = "e39d9b22f8b7226ff2908b34847fb77cbe0c834f51985712024de83ece7549c8a89c3ab3d81abb6bfe6a7b21f18dee2d87926abf3d2edf9f8a8976242a4dcb26"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "a03a0e37ecc2d903715b70eec0a4b2808a913a8e27398dd96206295e1e765283e97b76ba278b394f9629e352c10cdb2011f3184b903d0e6de784a13abfcf9668"; } - { locale = "pt-PT"; arch = "linux-i686"; sha512 = "2d511400948ce05358b9400752bba41cbd947d1a4a5a5a92f982830db92507e257c28ae319f411717253dd53a1a7e73607f9f62fb7b7c8666aa339fdc73ce728"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "71e2a000333ae8565de6fc9d01e871c2e894f96a9a2544a21aac08ccea0399da37d74c3230c4b3cb7ba0231fcdddaa417f78e48848fda8f063179766cb675038"; } - { locale = "rm"; arch = "linux-i686"; sha512 = "4337964e6daa7bc799f01aa52a33f04c060288bbb881c2321ef938658b57f05b632f734ea0564cddd0078f4b38d1c8cb2c2e6221849ca4aa80579f308fdc2056"; } - { locale = "rm"; arch = "linux-x86_64"; sha512 = "a55e250de5e11ef808243ef974fac8938c70269a36bcf9db898a11997722b8d96d60d76ca28e41e023b4c7e6614e323479d3d4d2831b83655ad3ae3eb5ed774c"; } - { locale = "ro"; arch = "linux-i686"; sha512 = "17171889ac7647e525783c96afa5a5de796d603c8fa6a7ad8d12205ad510f869b35f0df79aaa04e4b980c86ceb923f89936499df7e55539393e40ac92c23bb1d"; } - { locale = "ro"; arch = "linux-x86_64"; sha512 = "721912e5ad4b0ad0727f0185f660351b3c59291b3a22aa394f01c26ee87366b43b5aa08cdfc164c16117e1650837bc2007e42c34756dc26466edbb113f11fc09"; } - { locale = "ru"; arch = "linux-i686"; sha512 = "28dafdbe6ae4fdabc061c68ca82dc6ab8fc463da11c712500378d90dfb662d6e0991f35a918315ce138603283befcee182092ac4f8d348815bef27431252874b"; } - { locale = "ru"; arch = "linux-x86_64"; sha512 = "27bbd48859f5ed6053a2062778537f4952a0847ff74d2dd407766ef4b4f144903167b4fe80b98a5b2b80e42d6b730bdfed36fe9a958d247a335bf31f091b8c70"; } - { locale = "si"; arch = "linux-i686"; sha512 = "0f50616131a3b80499885ed5fb8573fd3ebe522cc893496d03e48ac6eafbc2a5224240971b66c393323d2583512dacb73f3201eef1a495298badad605cc76bb3"; } - { locale = "si"; arch = "linux-x86_64"; sha512 = "37996cbc994a7527c2ffc5143dfe970ae2fe0e098f0bcbf9fd4643e8297bddbe7fc0f4af2f2ee15b0807c339c25d780040e2f9f03975ba9f49359052a2be271e"; } - { locale = "sk"; arch = "linux-i686"; sha512 = "db95ce3b68fdfdfc9916cfbfa6a797370ddf58f5aa234d59bde6e76cf7fc0e821e9954cd0ce090404f5f718b9ede9c1ae6b9c7e37db9e64eb9d9dcfd975c6a79"; } - { locale = "sk"; arch = "linux-x86_64"; sha512 = "f9e28572c83e70c7658fd67abce93d021600fcf6b8daa7861cb6eff315a28c0e531f1082f6c25f5779371b2884c975fbc22cb953aaf589ba6b050bc736d25d9f"; } - { locale = "sl"; arch = "linux-i686"; sha512 = "e40c201c5e892a83a23ac9f1af22e9274bf6d964b39bae2e191bdac100170685376fa81210ddca38c76e5277978772c693563e55871318777cca7ac7e47fd1f3"; } - { locale = "sl"; arch = "linux-x86_64"; sha512 = "ea4a198b300e2fbb23fdf863659b683b772624cf4f6c2c3e5e07af9a3f991a8fdf7113f852646f36f697c705c3a6f24485dcb8e2d615a3a358bfdfca406254a0"; } - { locale = "son"; arch = "linux-i686"; sha512 = "b510efeafff8c32ef3b7f88e81d4c1a1c1b2bb435c2ed4ad69adbef8f5d374677e2231f94700cdbff9e5f747c712d8f58245a4c8f0d38ac3eebb5adcdc42c7ae"; } - { locale = "son"; arch = "linux-x86_64"; sha512 = "8c8d583e7e5ef1363096c905535c8e6dd63900ee50684d9cd36b4e55100930b8fc8ee9a3ae770128cfc71a30a73f331cc508555ecdfd3fbbf359ad08d5cc9519"; } - { locale = "sq"; arch = "linux-i686"; sha512 = "809ec8706df6f3538e3c53765a1f1834cee3d2d9cffbfb1f3e991faeedaca28a2dc3d4e037ed9e00d58ac6cdb27f5575bdafdc454828d9fa988d7764bca88c0c"; } - { locale = "sq"; arch = "linux-x86_64"; sha512 = "6f2c5778d40e9bc5bb558ac626becfcbe33c42e2a2e588ee59065f60643708ff83be55a082b383f7747241ad8d59c0e3e13bc8556967f5fce034ee23d7f054f8"; } - { locale = "sr"; arch = "linux-i686"; sha512 = "cc0e0c039af32611d489bf082dba5ba971b54b22937d4b8fa80150a560a3c452851e67d02f7cb27e1a63229c9a42da449f932cdb88af342e0146022586de109c"; } - { locale = "sr"; arch = "linux-x86_64"; sha512 = "21928411981e8d3fac5e44f02173a08ad4c3135ec874998d6ddf5ef2821226ffee260023e5bb45848a40db19537b1d6cc0b127d9524c0d0616d80618ab1d9228"; } - { locale = "sv-SE"; arch = "linux-i686"; sha512 = "cddd222328f1099c25591b03abe23692fdccc82405df127ff920818fb7952fe384fc1373b1330b971d196e98acd62b3754711b38876050ec3cce7de20f183b79"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "06c819436de292d531a9d3df34b76bad36bb627e0e45ca042f2dafb06db14cc23e956dc2e00904d5147bf7d0b39c16f712f2b8acb1d9bc4daa210d56d8058e22"; } - { locale = "ta"; arch = "linux-i686"; sha512 = "5e8560e423aa88c1fc5b61cf91c558a861a58d09d7e560790ba835f0bbae85cc82c61e1eb9e1a92e632d2fe24419d3eecec4a15bb083bf0c1568a441a5586a50"; } - { locale = "ta"; arch = "linux-x86_64"; sha512 = "6ba48474d930036d77d23b717fd2e592b19d0ab2b4399f7a6f7bd36da48cc0a2dea9c25442928c507cdfe8a8f37a8d0e4ddb94da42a7a3d6c2ecba26d4f7dd2f"; } - { locale = "te"; arch = "linux-i686"; sha512 = "2df2a46677c979b8702700c69f687e8bfa49e879ccd9204a1ca876b7a5f8925abfe6f81f42e6d6576aff6cea264cced854ae536a3cc01ed04b7a536396e9ff33"; } - { locale = "te"; arch = "linux-x86_64"; sha512 = "d6c7bdb7a823be0cbe8286b977cc265e80ae290ae8fc4002a7dc71eddb3b80a3796e66ad1e00fe2e797ae83272422f460defa86322dea8e33ad0d7dfb50491de"; } - { locale = "th"; arch = "linux-i686"; sha512 = "eb017475d187ef4f1329d303bde84a17995ed84458923330c2ef61940c86674c03f06de2e3655885df49cdc384d1b8e952dfe8ce960cec738f99b8853af1e018"; } - { locale = "th"; arch = "linux-x86_64"; sha512 = "cca6fe63bf24ca1db9d736305dff312f334cbe0a836cb181fdde85c4b2e383e1a19135f441a1f07c69cce716a4c2d3fe42a07fe3c91146aa6598d651890ff049"; } - { locale = "tr"; arch = "linux-i686"; sha512 = "98aa598f348be7705c11834f6d174fa19a8408b87193a93f641c4fe92898f3175f79a1bef9c66dc93c3cc19a372930725025d7ff1bf178e951c9d5dfd675ff36"; } - { locale = "tr"; arch = "linux-x86_64"; sha512 = "a4c2d82f7e56e413526cbe40eb24df79ea264b37dc09b470ccf3416c922730d714ad166507f06b6a68fc85ff73df73309da936ff56499cdf81b78fc973675c86"; } - { locale = "uk"; arch = "linux-i686"; sha512 = "cc04ead20aa1f6d3a8ac470ed3fc69ac0d348ab0523308ae56b49734785fd63bae4ac6fcc32bcac3f2e9350ebfefe76fa39efc2a7a7f5d7c2309b6999f490e90"; } - { locale = "uk"; arch = "linux-x86_64"; sha512 = "1f29246b8bd1a4e07af7b30c2ffcb5239ee5f870e529227e96c0ef091cf9d9d8783891b2e60b0a5dee10e80893ddc6a5cb972d27e70ae4cd0f820ba9f60a2165"; } - { locale = "uz"; arch = "linux-i686"; sha512 = "d144626529e57e93ea12ddca25184903b78b878563302c7f14a396435187791d2a14482a7d10bb569890d9483253474634574f105b9c79763ad6a85fb10de73d"; } - { locale = "uz"; arch = "linux-x86_64"; sha512 = "4e6b7706c6f529739a18748f35d7e31071c6818c0f83261e1d31e66306fb40ac94573f7ebe3b811f4c70f88a2bbca29528b868821962e88ba30dbf84039c5ea1"; } - { locale = "vi"; arch = "linux-i686"; sha512 = "fc7144a73551e09196b7c79e4fcf1ecf5ad92b3e54e8a203e213627133df0260dc53f0cc9bb9e03ccae0953de5f2752e303a35e0fdb720a40637e5b31edd3544"; } - { locale = "vi"; arch = "linux-x86_64"; sha512 = "7a38b4814418516c8971825616874782512bf91d51a798fbdb1b8d8a817d30e72d9fde45238602a6de9cb9c53cd0512acb07f6e16a819ce24fba6467ab1cc8b2"; } - { locale = "xh"; arch = "linux-i686"; sha512 = "0fe791a3270343598417b093476fc7eb50628a7557c56294b3222e657c62a2b5ce7988243d75ae08f7a11c2b9e437d01d47258b1ac93c2579638ac67e12c4d78"; } - { locale = "xh"; arch = "linux-x86_64"; sha512 = "f797c52d88b62aaff15419baf5d7c5b2a44909674602ca82c295120b4b0fcb7182a36952f7adeaf7e9878b3d21031e990d22e5f8dcbc5421a3d587ba37f63906"; } - { locale = "zh-CN"; arch = "linux-i686"; sha512 = "970c14e1f105d6092fd542d73db57260836bf249aee99ab53f43882cb6327520905b7a452e96a6c142676794bf22e13c80e86291bb5b6dcaa09d0d9bb376d4be"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "b811f9d359fb61674781443d71e961ba687fecbe4904622b6ac410e435e31b6118f30726896021d28ae51628ab95092b28181ca0ae471374c0cbc5a740fea496"; } - { locale = "zh-TW"; arch = "linux-i686"; sha512 = "43f8d6e9cdf5815365e0eb1516ccb5f6c7ac7e19c10d1ee45ee367d721bf1944321879d9966f7000f50d324f14c36f9f8fcd9bb43ef20c780ba39d3c138f2192"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "02f4910b3c5b6f75e2f19c03452ce0534980be7ff18abed8be2a2f9af19c6eee5928c493e618b00d167bb3b2d7e60724741a2f4de1df9b1e48a05923a7649cef"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ach/firefox-48.0b7.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "9fa8e2fe59c149abf5b1f4fad168717aa68c9e3e9acb219aaf257aff953a719c2df1dfd55081c6c4398732c9bb16690e4481b7c3c9f1fc9ba20468ca38d7b9fa"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ach/firefox-48.0b7.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "b4115232ee0cfa6062fb9c06743d31edc444f9e5481b84cae4c1ec275c55500a16fe7478ee79caa269b669e566701be225c45729946ca950a492b36038d208fa"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/af/firefox-48.0b7.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "03dde31a027765e7003c89188cfdbd87f57447c8d7f6542e11e01ac4242866f6db98943d8d50188b1e0c41d740f3ee95b5f9ead01e9df5ad9beeb066c0b1e54b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/af/firefox-48.0b7.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "e9973af0cc52e2126ea682067fd7aa11bf071ae2aafab935d704122480a46658139043a29df30c038af85c1fde836ff7725bed21ea4c4778e176adbab704c6ed"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/an/firefox-48.0b7.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "1e23956adc055188e4342cfaa0e38d062bcacaf0fb99895fd2fe3535f4e528890a75a18e0620e881e1fc87d11ce8b21c280c88ed11b2444d037990a11fb8e9af"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/an/firefox-48.0b7.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "e75ea9a5ca4860f228d4b2aba3c9ba4d104a7cc24fa138102d80b595e29a391d15fb82d749ff7a03193dccfccc7bbd106dfbffe5ae7152afc4b62f4d05d58ad2"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ar/firefox-48.0b7.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "df97f1f2414d9f2c1d5ddc50e901167fe3535ac0f71ef99e08552ff9a5f4b7e6162f258c41d1024e2f886969e7ae80b741c271b551a51ae05a48a3e7987a52b3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ar/firefox-48.0b7.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "79da3baef8806966891b803137f2b9610b3562f0a806ab2fe3234f3320cb0efe11ff523373e933d5d230a6959ca68ab013d64dded47e6043e9fee90202c8bbc7"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/as/firefox-48.0b7.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "ab18bd3f015cddf2dfe337556d29a20576dda5879a56242955476f50b0978808d3ec63812666ce73a58904a70edf251e3773ea34a38b955510ad331e5f66751a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/as/firefox-48.0b7.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "26be5b409c5e4acd6a09482d1380f902cbc9948fce33ff5e33c22a8573b5ccd05f10a4b6f84dae8ed9280f5b6568a411837ec7bd1b64bfaf18670e2a45c475cf"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ast/firefox-48.0b7.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "30d23a4012caa6faa02871be312ebf867321b5cddf1e74d7680e426af4a6670b34aa48f237ac8801c696d0cd2551f90ab5fe482b4a9bd03bd7d4521e204bba65"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ast/firefox-48.0b7.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "cb0ff48d6cefe69c4f05a83d7b9247b5bccc31db8efa708a7de3ffa67459f8427ac255bb6645e59f7ff6047f0370d24d2668954837aed7d71eae88df6824cced"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/az/firefox-48.0b7.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "00685bee899c7a083fbe2a4dbdbe32df1f291c619e1ca681164a3c88782f6898a11add06a17f13aeb912c635d0fb2ea2c30c0e3bd5ff7cceb63b1134901ecab8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/az/firefox-48.0b7.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "e4133e1a9fb103652037caf21bc18815d89bf5e1a0d7b34abe115715e8e5060de8b00d35326bd3cfb9d5edb7cbe286456748953742e4cb5d5c76c7314a344720"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/be/firefox-48.0b7.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "9444970e5cc3f3359b02b8bc58f13edfd64ae6f99d306ae7d9baa084658c75b85120354614fe2655b600e0005de1b128df1e2967f93dd0fd1c31ee721e0ac306"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/be/firefox-48.0b7.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "08bf09e7b8f8911e42f5e88852f705c1f7263d1b6a0981c07f7ff651e620bd31c1a6baebd8a8a9353e49f9ed50d1c0d55bb88c97faaade0d415cba482ddc6f73"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bg/firefox-48.0b7.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "1708e547f2ea234537a0dcf40163ac18c641bb4860e74f054325db8ddf4960ee0649348b458a8fad1f5bfbe1fa4308c9fb13d84fb941c2928ea42f6ea77cccff"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bg/firefox-48.0b7.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "26540e48ce864590cc40a45d4124250674a1977778d3251b5f46701d3fa3b0f6d8a602b5bbe1449040ff943a2ed12bce7758037fe8ab753d0b43eb815e905ffb"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bn-BD/firefox-48.0b7.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "6e37580672455a717be37061c4d3135e72cd6aacaceef20957cafe9fc95ff40a6781dd92a8425e4023f75f4d027c5961d7a3b0b6373501790ec5057da519baec"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bn-BD/firefox-48.0b7.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1498ed777a7e3aec18945ab01aec80a51e7cf6a202ca38b333ed6aa9517170bf9ec4a3c9e638acb60cac5b01ca16963b41489cdf71cf40655cd87d2ef161d4ad"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bn-IN/firefox-48.0b7.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "1d9335e8b1268fc163bc31d1afe58613738f08e4ca8a429da63e59e4b862e326cd62d82a686e5710304a5b86e9d2981885ce52aca9913d4cbbcd4c1e0a88e782"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bn-IN/firefox-48.0b7.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "e686e0a9f8d5078d2a728add3085d0d11fcec9ce8b1a05f242769532ede411f41d8385b2199e2a27edbe8a58648d3e4b91df2d730e6bb17b7cb69c4a22630fb6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/br/firefox-48.0b7.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "19f012125431f7c56ecf9ac12bb44a52aa041a97a0b2c1db3656d6229b4215d5bf492730c2bf08244e38ff120ad9003d4ee0842f834cfef8536b8f40d8e2217d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/br/firefox-48.0b7.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "250c9dc52e661c91163ece0fc195ed29d621508ab5666ae97d74ffeabd0dac1effddcc4d0ad9573c5c44ba9aa746330b5a6dd40693491f52609b1c47e9fe97a0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/bs/firefox-48.0b7.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "fa946cf9eba376ddccae25b44c31cb41dec16c016c678c155d0fb6f235c2932fc59eac0df292940acceaa7f463979495de17c86863450a1a771a277440d2033d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/bs/firefox-48.0b7.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "eaf3e8c8706a6005f6f78645c709cfa2463e47f678baa395db6c562506b872d9d110e973186b4408022cb1d4a8b343d7c84e2e0f1a3c18e3d5c04b72c23243b4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ca/firefox-48.0b7.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "c4fefe7ea67edda4cf5ff7dccf6639246fb73eae683ef72bb7c75e25d630cea78fad38d11d690d9786e43e506cff548df3c867fe91d7570048759933f2ec0523"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ca/firefox-48.0b7.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "9bcad65fcbfdc85892fc552809da740fd28094bf6be32ddf783a6d011c901f3a17d8ba8d33649111978cfd75274641f6e0aa3513b2d05ed100f2d2d9a8cf9057"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cak/firefox-48.0b7.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "430b4f156d4130d2a689349c172c40c635ebb4e41d8dff65f7e3971b92ce7682661de763a1ccd706c9fcd11d3590d53193502c01964b703a7a304313c94e710b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cak/firefox-48.0b7.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "46f3fd5a750618f8bfbc8015748e12df62b1f3db470abd3e7b0edba01ffe4dae1909cdbda5dd5cdd78a0d62845eebaf8e6223cc11e4b88b3710e1ce62e3ebd39"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cs/firefox-48.0b7.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "d8b8eed71db048dbcd25f116e70040d5105dc3ea9ea69a77064807862f19229cc215ef1482c94609276b914ed7fe55250889b986ac1d11ed086e4de3bb15b9b3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cs/firefox-48.0b7.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "01e23193ad0bb1c0cd218bf22e301fa79da810ec79f4d68afdbb6d7f3da5871de3f15f38abb5cb5440fe29a3781600dce4733fef67d0410ffc6e63b0c29fb9e4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/cy/firefox-48.0b7.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "451f4eaae757e9474e905135caa2718d75551f2893a6343256b8c8595dd312e0c5416a7d7488b6670cd361db81d44097fb3c54c3cfa27a7efe6386652addb472"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/cy/firefox-48.0b7.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "c260f1090ffe09cc714ade4105c74bf234ab03f032cb066cecbc0308866c33169c9b3c7b37f3acd70d17794878d9e7e9f928a29c5e8aa2172d8475ca7460fb15"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/da/firefox-48.0b7.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "a449772de22183399c34d91b2c747253e7e32bd388e37b6f7194d68b87faf74df805886bc75230b19766ffb40e312c76d439754902b6d3c8b2057a654e656f33"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/da/firefox-48.0b7.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "990bf989ce48afd5261c7a6d6a4e3ada0c40acaaa5cc8c369724ff7eb73f5800009ea2c4584e8afe926f77d4b18af95510558bd99ff564754625e1c1dfe0d5ef"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/de/firefox-48.0b7.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "5c6cc3a65a31043ba0143d9609ad006b6cb4f9af4cbc57efb4d2012ec08438b63045dca06c93b7d9c657f7cab9e19e01ed2b5dc78b79f2d9f59ff85836a89009"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/de/firefox-48.0b7.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "1dcee925aa75eb0acdf3e21a0578dc7f747dbef8cecfe5024dba66461e03420ce9a9211b2c69a35861cdc75facb956f576cfe3664f91f4085aba1585d976fccd"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/dsb/firefox-48.0b7.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "c327582db0a1f78b1d4ec56115220c4bd5751eb46d16f26bd589b4b64291a66845d0277c4eb099cf197225771414ad1bd16a56d41587befd3fa1c766095c697d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/dsb/firefox-48.0b7.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "eb049a000e908e5d46726d09ad8a219e1c60ff2f29959f5cfa416a788e5c747f50ff5e6b807fe30f7e013a7f5587f607834ff0faad6e060a33db55d04dc6cfb4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/el/firefox-48.0b7.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "634320e4103b0ce72a6c132afc8e33ff4a234669f835a23e526c227e94f62be62075cb69d6883831d72d13d309d4e1ecf9947d850c8079efe0c880f7b7b79aed"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/el/firefox-48.0b7.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "85c4a47f5d3c65a6ee623f89420141f0cf7e02d8c7338d39c8c672cb0aae2364afd37c66fa740bbfb88c52aa37da6b9d106a824845c881e4de6c2d2604477d47"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-GB/firefox-48.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "1ea0aafb65140f9c09aa4557d7460cfa9f206bd963137ec72a86d237be9cc3ca131b616c198e330d6328f48ae713cd5ac9f53159477b131e55e3ceef8e2ed7b9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-GB/firefox-48.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "1a726088d2843ce835154675c6dca3e877af6281bac63aada1e4969782350e985428971b216e9225646c8daf523907394a21080e7f4e40225b9ff62d24df4295"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-US/firefox-48.0b7.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "ded034cd43b45d73539a3c3f8a196f26d5e80c3cba84e3d2ccb925815b661b4c9a3eaad1d35bc363ecee70e3ccec953bb03795c6fad33debd1a81ce8dc71669c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-US/firefox-48.0b7.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "0bdb77bee7fb8720f1154ffa486a8f6564ca592c56ce07b823800bd54218bc01c57bc27cddc73524c8f8fa1944c869523880a02fc698e44c5c71f4c800dd7208"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/en-ZA/firefox-48.0b7.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "9557d2b57e09c390cd706673c6b2203f2a1beec8952a63e2d891d00b975c67ba3b5f0f6da622e81572d090aecee42ea8ff398df61845f7564ddfd42818bdaf4f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/en-ZA/firefox-48.0b7.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "0617a7b1117fe47bec89b86f89248cef981812a2126e64779d2f7b9c81fc11b38cb3ffe8f039aec72d4904cbb95505519e7ce64c115c1613e96adf90ee72f5d3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/eo/firefox-48.0b7.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "3e4ffa7728382e6862f224be0f576953120b563e0b68599df545ffb46483ae470d12280556a97b238aba0427651be744e9e93e7ba19be3d0764698367b4ab5ac"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/eo/firefox-48.0b7.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "acf8527148b42e9ed50d027dd9c9a6de11975d40556b2ceb27bbb2fbe0e37a4f2839ca643972b55de52f95619eb432e16b12f0cfb501a5be3824e977315ef89d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-AR/firefox-48.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "ed70d0cf72acbcac71e0684ef755d987702412103bab21510daa7107b369186569e848586009fb3e654f54ca657e7cb259ad5574d5ca1e16c517100946135466"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-AR/firefox-48.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "541f5579e3889413b6cfb1be40f5630ab401b7b0b3054cef1a633d89e36b59b1d83c86e44ccbb3acc8fbb13f2851b16e0b43f9aece4f98b0713b377606e742af"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-CL/firefox-48.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "a44839ac7686b1d252cb04fe17ef5c2790d30214e5fa34a3cbd11f12dfbd9168acf7b33ef9dc22a06edd624726511e718691a973c5b70665eff78d0a18287413"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-CL/firefox-48.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "84b768876fcbd95dd1f9734368c73b51b82ff445df975bfe913eb74c139e35d069acb1428b9afc51357c4567dba0d03950d7199b3fb43017df4987aa69247450"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-ES/firefox-48.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "727f670438db45203d403746b7396b3b754b888b4a1d104b2bd0599790ef12b0a16db9a32b51617ea05bdff4f2ac696566970e83029e7e3d25434ddda8c4e88f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-ES/firefox-48.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "638ebd73556eacf0f2b38ef2d71db5922299d10c0d5b72b6bc7e935d814e300c17dd835f94517b8d0e62ba6e54d5bf5059dcaf57eb03a03bb7068161440f7c22"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/es-MX/firefox-48.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "da88b8c3d5c9aeb33cbd637b00f4790225b7b46f4b8a1edfc6c49edeb1e29929c4690bd66de0afd31492b213a67eb617355adfe5a7d7b5ded09208eb3a861e36"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/es-MX/firefox-48.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "0581028fea7610b44f27a6e5b25203020768d87e83e665aca24e753bbc0f0d49e2935c8f12755e6d4911e5f79052b4362447d1dfdc37838bfe9976e0d218e49e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/et/firefox-48.0b7.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "6d150372dff1113d14cb32003fcbbfc11f9aff6ed8a0fc8f5f8e2d5d3119b34a8471469d69e8fe48161297e69f95185c414680b3c59bb95d7e483ab2805b5729"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/et/firefox-48.0b7.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "72d784c90c054d29420582a9a71d96c9a7270b1ac5592d8b920f8148542f17181d9cd71d019c0294c60112dde94191a686ad105993d7bd8340142ca849b5c150"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/eu/firefox-48.0b7.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "0c2b1f0f886436c8d9fe6eead6718ee47e72fd988e1e4d83a70200f6d085419636058d6767a66d273842cb44573d39f58f72181ddfce01ca60f392c6c18df22c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/eu/firefox-48.0b7.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "7c03846d49cf1dba85202b2f7b6ed722898da5185a956ffde1c88df454560eb682ee562f782c3e21bf62b41ab156048ba1c63efacf7fd46f8fd7adf0536cff5d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fa/firefox-48.0b7.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "3a21d3ecb88827de7094aa4ccf29005ffbf3f88681c459aa9f159d6dd6b04affda08661b1b77986b73a19de1fd2fdba2ceb91036ecc718a69cc5cb16e8c8bbe9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fa/firefox-48.0b7.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "4750663d5eae7ba9fa282b0dd97e05cbcf3ace8b0715983525ae207de57d352b45495e0dcc46381979997532a8e20c85567a9de18056181f5d408d57cefddaa4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ff/firefox-48.0b7.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "e9f452656328e3c5a2dd7dde23b84ae535551bcba16b14cc58fbf8aa33f2eb8655cb4ff524a15b0a2db2d4af9ef5da4ca853fedb5c0d05b877fb0a8656833311"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ff/firefox-48.0b7.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "f43daeec8c0647a8ee984d3541172516d1d8822596ab66a1a9651cd31d447a35f078725f1eb4b30a3f01c02b8573fb0ad268ada70ce013cf1932602f22119e4e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fi/firefox-48.0b7.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "477e5594a9821864db879ebf04b74852c711c5f0a43e00c02bf17754817c20279c56705aa3e3b51bccd52f9380bc242b12bf58cf40a2b64d9697c8ea76270771"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fi/firefox-48.0b7.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "aeef4b397c9972c055392faf64947d16173a903c290e4d710067c5cbe6c422acb2172f17c8b72bd5b80ae883f4d22c905ca0581c11822975a42031f2621852b3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fr/firefox-48.0b7.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "363bd189e7988393a97c7fd9544537068cb541e762427115bde4a3f05297302a30604a5e6a34c97b037c8f2e9c25ddcdee0ebbd8c292ba007362b6de858643c6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fr/firefox-48.0b7.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "4da717be716a1c16440be76d988ed2ac2ff73bf5a8734d1025ff190cb6d3b9072bd613d973e65207102e4e54479c32e8101aef59de533487b60a1cf10e7ed9ae"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/fy-NL/firefox-48.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "49e343a363afb94a8b7f7d2aca557127af4743a97678d123fe2a4355d542497da1f5c43a9c83ec974586ca707c3988d416c9e55090c9bae10923bc5aae785bd9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/fy-NL/firefox-48.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "1c53d25d464e36d7dcdda0ba6dbe5bfc85c03309dd22edc916c97aac4ef7f4bdf6329349fe66d27e1e885b7ad76359e27c6fa885302905e6c6e785da1535b53e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ga-IE/firefox-48.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "bfa9b70d5b2c891a82b92ad78e5f7b71df005ec142a1fe60e6bbc5717152f1b5325499fa5baca6a9f4e01be104b0dcddc11994a510e7cb41a5f1709dbe00c895"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ga-IE/firefox-48.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "3d6bc3254bcffeda6260168bc43e58e1ea517543831579892b784cb43f51d9cf0b598f6acf1b56f51b72b7946f1904eb96168f046a80a76923ba52f265ef6d12"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gd/firefox-48.0b7.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "4c12d70a50e8d1b5bb2a912f3d070b30783757ea339eefa87e63c46f8e47646e69acaf975f3a565dff67bb65933bcf070bb823c195a5df9ba8968ac9a7fd82ea"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gd/firefox-48.0b7.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "fdb748f6914902308d074262d4a1816d8a0a26a3e7f159d013d321875297b7c46eb266473361567c92c5011234ddc66a89f0a88b7ec6435c39e7488167d0b63c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gl/firefox-48.0b7.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "e450407c27de08ed93b088222fda97daea6cd69ec93a75f267ec67a510f3ea6a657eb4eed67844990f8815be28fa1af8fd722f208c3b6193fba38188eb03b134"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gl/firefox-48.0b7.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "be63e8e8dc2daa586fccfcf4e41979cc6746ab2797962a86b6644c9ed14d0f228a0a83aeea7ca115e4a13f33bd5048075ceff9c0ee7516ba1fc50dcece31d88d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gn/firefox-48.0b7.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "545a5c29789b626e47db56d0b962989f8a73244d865ef03bbff57272f463706cc5de1cc5e346b0188d4dbd7caa3fb67f6c0ea6064320d6c81a7db678b8eac86c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gn/firefox-48.0b7.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "4dff9aad6938c17f3b97b1901831cdf1f993f0c8c03c3d03881680e1a5d82a10c414f85d5d6ef8791ea5c352eeede94036075b8a14046b87b19caf6cb917f950"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/gu-IN/firefox-48.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "a63a9c54fd2e3db1c161d33b6c725711bbe43d5e915f6bfe50ebe9f667a47299989e9096ac8b8caf80c7f69f0fb276fce33873dc77b930d0cc228d0472ae81af"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/gu-IN/firefox-48.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a9dd610aefc900d712bc68075d32ebe0e87a1de05af9b8592533db8cb65a1a6f56db5a566cd3c013a84d72802eac917fafd42517c0ce53b4701f58711ef0b7d8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/he/firefox-48.0b7.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "5b0b46f00e3c61ea8c00b849b5605357979c7ec4276f9f490b6e75efee28fd4ba2aa285ebf689bacf58a40f03c2336e77a7b19c7fb518f95d900150c3c70d62e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/he/firefox-48.0b7.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "d67ef81f2c539718ff6916349f9ecfff42983c2e28b02b64e8ac71c54ef2dbfe5e9a4da6ec6f1b4361e458940bfde6f4da7f22bc19515cbdb98cc0166bdb1c27"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hi-IN/firefox-48.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "a15ac725626fdc4f9bfe02e31da4385af32c57c407dce7dc321e259fb29d4c46a254bd484dce8ea7d3e322fcdeef07d62f64a874d45f0460bd2b17007f688b71"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hi-IN/firefox-48.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "2ded18a44554ddfe73721a35af71b77c600b362dce138ee78a633fa8d4d91a5fd55921654ff9c2eae05d0ebd9ede1de8b5c9bc07f761e068339474bb8622732e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hr/firefox-48.0b7.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "797fa8e8ea628b9855f42bc3f77e1928743f9b96566ce886cf2897dbed920a6f83089f518bd07f5f820374e0968de848b46d8a6777d8c77ca581a1b172fd25c1"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hr/firefox-48.0b7.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "623eb40846a769825300177ffcde2f18721474605e6bbf7cacc0f26f2d7e3e68f0699a173fd0154bdbc6f56c13befe2bf45caa76dd3de7ba2249cb153b8624f2"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hsb/firefox-48.0b7.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "58b1f83e123fbd32ca6d824aa87e0834d92f8c148db086fba5414519aa77a1469f5010077b119dd6758bf58165afdc1bcb0fe5b0b664a68fb73951047082ec07"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hsb/firefox-48.0b7.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "853b6fa276e7e6c1ba0a30b95f8fde73e4bd4fb7e745c3722fed9de00bdae0d1739b78570a0108d2ff9efb73e8052e5d5192151ae789c5b336946039ece560d0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hu/firefox-48.0b7.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "984d3ab191091e9956bd28a2112715d0c27a24e5345b9c515e2b0521030200d2742041340db0d916915c87071c70b3d60762ca278dbffb88ab35611f30337468"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hu/firefox-48.0b7.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "cae180b050bd956bca474b187648dc969c2ca8ca3816ebe46d379681bbd470029d93e6518e7fe6170864c2466e6b3752aa3f372df34b672f93687704a26f0b83"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/hy-AM/firefox-48.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "f26993353fab3bbae965b7d7cdef57bee60839e4a726c75c966ff2e99cf6edd3e249bb3e3adc7791b1095869fe6f5b43861337f8cc6d3017600e61fe436497a8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/hy-AM/firefox-48.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "b7c228256d16587720f186c1a257cd157d8302e597dfa6cb72fd984c05105cfbe6e33578addce044a88ae11b11e4e6703aea432d5823526caffb08e81b1b300d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/id/firefox-48.0b7.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "324de4444814ec0e57c57fc4ca07dca20e10bb0a80df33ee01dcb8908caf6e5310563bfd66b62ea4eb5f595ed81edd9c504a8b6f81317bf85c4acdf9da2181af"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/id/firefox-48.0b7.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "8b199bf64955d23fdbf47c92c57022e7742dce10c02242cd3cecfb662303402dce4a6c784c141a63007f4ea92b78e0ea0fa74fb6bddf157a848b2e85f50acde9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/is/firefox-48.0b7.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "4addbf9e9626f6f81a276e506b5974232da161e108c194ea34f755efa40e5f5b4df6e4feedc90309740b4e8c04b946a8da74cebc28867f2d23ca71d9c0dc4cf0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/is/firefox-48.0b7.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "843bcdaf5855dba929b4e12ba88388e3dbe3372051a3d789ac5951a66ff4c044af563e2c04e005788bf087590444d390ccdc0646ed37571e95cfa5225976cd36"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/it/firefox-48.0b7.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "e637a52c2d365835de33b8e3f3dae7beac254169ac65671282252c3ce33816c3af3cd696c73d15a3f3a3827c72376245ead9b0f655d2bdc857156bab353ddf69"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/it/firefox-48.0b7.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "f62acc4a2d2e8fee43f3744e3adf6b2850de9b7ada59a9d985b5ea0051a2f00c2fb0ce14bffefe679c0359897e1920e071aacd177bc140719f47d64dccf799c6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ja/firefox-48.0b7.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "081aa992d79d9a07e82a3027294752fc338e715e0b26edd6dfbb80fad3fab78fc4c0ab5082cf8880912c3a3249d7d35b0ae99c2152bb87a025219e7ecf16f330"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ja/firefox-48.0b7.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "3ffd093818c2fadc5d6e6a3ad9891b84352d522686ff1c23a9574c981a2421974d6346284db686a382193078ef3ad4ea8eaa081d9ecf59e4d07c396e1a1b223a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/kk/firefox-48.0b7.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "492e2165c88e5e2a1fcce1bfc2c994f7daddc1ded69d6b486f21d0655c6ccf112b1202080cc989bed68a1c35502c078025135af13ddcb0548b17d6f830c09b66"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/kk/firefox-48.0b7.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "f5e7a56849dd1aafc13b3b0772fdb482cf6e283ad98cbf2aa655c016d443242d9b760cf133c130813f04cc572de3f5ccf5cd4beeac98d07cdd4d9441838b1f34"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/km/firefox-48.0b7.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "d21d401e1505bdea1dda8fcd65622547ff919e0fe2c3ef402c1a5a67a5c61d6c082730ae21286def66699a994f0196202ba03956e9f5ba42a166d8dbff2a1aa6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/km/firefox-48.0b7.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "c0e08b44b09c3f8c0e17335c0d287285e3f6cd5e308688da36647ba226ecb10c98f87f92ca6b2d50e0718e39757bcace7132390ffc4d2a339db5d3cfbc37b85b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/kn/firefox-48.0b7.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "71d3dbd2fffbf51c64fe7af008e27a2d9ff3dba3417bd9c0f1106fcfd445f88c2865ba03799b8fbbb00c13242c1cc7995b5aeed3d20c19b95448a7597378023d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/kn/firefox-48.0b7.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "dda7d698c760ef750575f5978599bb964cc008a18ec048e744aecd17cf41d6eb2b9a69ea13efedf5a5d5a46da990c1df817027b7762cd169ca2f30a0920ebf98"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ko/firefox-48.0b7.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "f427847b0a4d3e8c52f59a75e4b1971ae96998d202b44ed360f5781775d3cb1c705923a4acb96a365925fa1f27af7e7292d3e4f0af6c22af9803600d7a64a9ee"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ko/firefox-48.0b7.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "fda5463fb43253a392616ea7f0e287464e83bc9f4c9b3a88ae40f0e2bb1b18b5873ebe7304d27b76b2016312d9a2ff416f3006f5a75f315e2be5f8ea16be82a5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lij/firefox-48.0b7.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "38d539b3b0ad87b557aa9c75212c64978fe1397c797247d94ac6b2fec33723d6d05de80f1d79b84989424fe5074204eda4af3f23d163dbcfcd035e5f7f568ce8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lij/firefox-48.0b7.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "a03e8261420d0b336545bf140916fea9cdf6cf2ba5bb55de6f039141011bccec49e88fddf7664e7a574c6da525f2f6646793b9d505135a311710a4d4014fde5d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lt/firefox-48.0b7.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "ca11b61ed252863b6efcdab2438fca21bf837f29bcc7b719e5a99065aedb8f75bcae8beaec1a273624ea3c2a7a57db4386f52096777755297183691498f33c62"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lt/firefox-48.0b7.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "7d6af8577ce9c9e3ab13ee3313b4c35bdbeef802bb5a5a15fd991d4fcf063b49ea1292718a4d74ed57b7c6f00889c96c9261bba442476d6aa090623afccebd9b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/lv/firefox-48.0b7.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "19024158acd59afccdbe39430e463e9b441cf1950aadc713ff8a74d9da97cc11d9437d86d0542306a8fa4a29a69547b4d59aa28be2bbec8a434425f20ca0d1dd"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/lv/firefox-48.0b7.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "73c81902a047a13c01fddc07eeab9886c0c55e2a3ebd30fee0a036878e52580f50c47a1dd4050cf39587b63432cc9c2947c88200fb2c95b143379a21ea60c400"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mai/firefox-48.0b7.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "d6a2d0b8821872b4f78f2fc9ec6ab9e602673bfff2d1b6339a37532f883b61134719d0e4e9caba53d3198107b895b3ce193839de2a374391c3fd58e595be1eca"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mai/firefox-48.0b7.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "bdb1e2e97b736b70a7d11538e3fc16be55889b14397709094c2efea1faa3c57b0c272cacca0fb0b307a3cba656145df3f7945cba4e9f762f3f9ee4f389e3ab50"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mk/firefox-48.0b7.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "0c52c93a00e1b82b5569787a624806f1c3175d40813da3da0833b23006cb377dd1b693120f96c1a6c172093393ad08321efc52262c5260e80fe037e709c94ae4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mk/firefox-48.0b7.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "bc2c513eb37a667195180ba3933407c7f90cb1e815f2c646a5410fb942e562c3659eaf3200ec6397a12987267ea26be1c71dd4467f80045c79bb793f2144cd89"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ml/firefox-48.0b7.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "7336e98002f71f6ff9b51d94b5c2ca2b5ff412d9069837053a63e3819013b36ad6587b9675089243f19474eda2906767e98b2cb3e96ace266ea29f5142c2533d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ml/firefox-48.0b7.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "fe70de56fa9d3bf56d355058c4412427f967f69467dd7b49cd1fa26c6abc898ae061b49bf259eaba7073fd926c1e8e5901a0979a88007ef3ba3d5caf07329203"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/mr/firefox-48.0b7.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "180072a70d38d4607b8c2105dbfae2647900796208f6f5a6111419c4712e6ea959a6f5ca5068f1f7653ece073087e2f3c5dff177d92da4d92aba4ac1b4b7971e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/mr/firefox-48.0b7.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "08bd093d657ae4e6b6136d1627ebd355ea2794c2e2824ca4d4121a5a506b0682a65e1416aa2cab49fd00db4c3736ce09101225b0333385032a958309cd7e4edb"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ms/firefox-48.0b7.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "a3bdac7effbb5a29f2ff1385da3de4a2c16a914d1d3306cee22b379779b1eb9d45f6a6c6bf10ef1e1a11ab52834a08c5510a38303c10cc6e4cfb96b32ce2769a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ms/firefox-48.0b7.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "08f2fe47c14ff5432f8944312e3d45d26dd3fa56bf4b0d350b4504cdc639eab147e3da9edc25b8551ab5156dc214101831c2c1c0f1b159201e5a061461e51285"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nb-NO/firefox-48.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "cfbb14897df334df5f11305ec44f8e4b736a8320b6ed39e5581be413cc4daf92908ed54215e24e35e34e0904a1a500f295ebe64871e53438658d0340f7e708ad"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nb-NO/firefox-48.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "19403a121e9e86447f3265ef72bda4e3a7fca55dfa76e8a25381ff97412329705f8b8a79031fd0116ac7e0fdc29fb9afa0c1de14287399f28e95d181fc933470"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nl/firefox-48.0b7.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "73789e769bcf2bd710f5234cc9c0f046abd5aed5d66b4e900b19f87a3c23a7daccfd086d9fb80fc6ced3742ccec90e96aba785330a2dc9cc79d76780fdf56cf3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nl/firefox-48.0b7.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "07a842dbcde5fa7c5623fe5e8bd8dec04b33b300f52a1ffa8fe604ddf93df9879b9179bf8363cca4aa62a1c878ed77fb5e0b5db85355b4a2d1405888a9a6268d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/nn-NO/firefox-48.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "b82f14f66dee3036dd62d0af2889137d51521ff51494584fd8f50f380e8ead3d8290a73843a0aaa7dfc7e38c3f69c28b661185841c3f71f11eec686336c7f36b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/nn-NO/firefox-48.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "9b627e063644d138c5b9b5bfce48431f8926fb3b13caa01547aebf007a002c75f8ae3818d5643f212c2e6d1e6203c49a24412aaadcc2dc5539824c168ecea52e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/or/firefox-48.0b7.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "7e36e94c90cd2ce6116a56a5f1ae2772eabfb19bfbe0a5bb616173f0e3cfc6d9f3cf77db07c767fe2673b29437ea8cdd70584e2b65752660d6c4878d598e0998"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/or/firefox-48.0b7.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "cfb9989b2ff2e2a81c3453dc7b03113e251d57b1925ba1fe60bcff4bca9fa16fe8ce6409cda6f90d7afde832b370a731d86c999df08e77a7c69ad6e72181f6e8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pa-IN/firefox-48.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "63e4f8e6e5d6360914073a1a8b9dfd9d1936ad3efef6994a880bde075468cd37809294d3cd80dbb693b429dd82426e06632b6ea87f776da509bfb1ed1cdc1848"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pa-IN/firefox-48.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "49a065634297b37532882cad5b13687fb6abfe0fdb577a4ea1bf86568abe2ef5b29bec7d786a47b8a12ad06d4fa78faffdea1f531245488efc42b14da24d2f52"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pl/firefox-48.0b7.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "06ff4df2f58d8c39ded84915d5f4ea2137f1692b7955c205a738fe65adc8c324c9e4e1f46963e40dfb74c483a33028d6157609e9f99819683008e0e5f992e52e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pl/firefox-48.0b7.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "b07fc75e55b860ac8ce03262dfbe77ec558842baef037f0e390245f3bffab03df31f6488811b630ed5355878dc01e4930b839251fa726a121fcbfac2eddae9d8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pt-BR/firefox-48.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "56a5f63dda3c359203a1ada88dda971aefd4219e0d76a8123792131cc5abaf23a1bda2498c1f93725b853576f572205905f3b7d16569611adcf87b7bc96528b2"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pt-BR/firefox-48.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "5f7af50fa1620c17e4473c869fa0a4384518b79514108317c1aa8c5f32fe6635bf88eb53d589f4714fcae740988d56163e293960b40b2165eeb6fdc7146586c5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/pt-PT/firefox-48.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "b3f4913abae949f1783cb6cfe934b97f3a93a579c8f57d3e29d87e15169234b58c5a243395ddd0944edf4519a9d3d735424bf14ff7280d7a54494989cbe7aed9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/pt-PT/firefox-48.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "71853f84f9f1545a099bee0994bc598845aceabf562730c1fbb7b0f9c3ea8113e6ba473840feadf76aa0d35ac0ae5a038188ef6078fdb192de99396973cfebce"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/rm/firefox-48.0b7.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "d1aef184253166dcab16b1cf25bf58131ec76e30af84ea0a75d89106e253ae4b5ec17d55039b1d1584f39c4ee1ef7eb28b73144cb8312fe15aba74e43cea0ae4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/rm/firefox-48.0b7.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "1ebe23f6c352e088180ebc9f03c4e35b1c08a2c8b9efc64ef710c8bb0c70c082bcdc3f23c436a427a95bccc219a5be8011b46d49047483fb57a2be2ea61577a1"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ro/firefox-48.0b7.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "6ae17fafcc61dcf5ea548e55c7535ac196402c20468ed53eb32a529eb756a88264660dc4acaf1f27dfeb9bf4e5515c75287b4cc8ac42c765358908659ee12d03"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ro/firefox-48.0b7.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "9635df3cf66825a4ec30ca03f944929977bd526146d5991b03a2539e59a6d5a979f8d25697e9aa6e051ebd6f05bbfeb993e11e547491a272e77c36b695402d93"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ru/firefox-48.0b7.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "ca1f6e5e32da878f50b2cfa5f42d78ed93423e0f4f308e914a184747c59a82f0d2db5c768fb65a16bb0409070614be44ea14351c21904e32baf5470b81fd4925"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ru/firefox-48.0b7.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "14f66c3db5d3f17e064eeb80eec31ea4d531b827248eaa5d6d1c936962b77503f7b9adb16daf754909e4749f8548f4be8f86f3d01345bf9999e70d8e7c52f6d6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/si/firefox-48.0b7.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "cd45ccd8f3e41ae3f4833f6f5a821dee061898fba61c974099361eb84272676b146896727889f8adecdd563db9c4ce0de666221eacc7f0ef841ce4a5155961d9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/si/firefox-48.0b7.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "234fe0d5677b67bf5458df4290b055159860f43a3afa66982b9ed9279a5e74ba90ef6cde23fdbd9fb7134ef0ba47b270880b3561f35fdf2286b23e128f9d0da0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sk/firefox-48.0b7.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "0cdc7209cbb2d537ba19ba206b53534f18ec0cfba1ad67a435f7134b1161f13236db2bce707cad50687790861e09ddd31a35eec8fd4965d4b1c697a84b4e00f4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sk/firefox-48.0b7.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "8db988c2fe8624d9b7154a39df173f2bec70369edebcb02363f5a1ff50e299590722961d58c96bc7cd003e14b7db8e6c1c78a488bd1bf3721e880df1e14fed08"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sl/firefox-48.0b7.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "a67d0bb63da12db2a1d936b40dfbda4f4473a67c8937c771b8b07c651eb9302128cdce01c02f1bf52ea641dcd9520b5d79561c07a88004ab39ae4ddf28a6cfc0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sl/firefox-48.0b7.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "d0f179237a4dfc59d8e847f5393ce7d59c6f399bc9bf5113f70f3850e3452d14542f08ac1b2faf0ec291b0f80183553d4b44c64866902db4ee891f00703bfe4b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/son/firefox-48.0b7.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "f66d6383be284933b2b62432b86e6ffa636c737ff5ad2d8159dab527cd951501eedcbe9a41d197fc1a7f14404ead4b2f25b7c1bd1725bef80a5dcba6a793ea42"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/son/firefox-48.0b7.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "bf461c7cf0f24cc091af8806097b759a5ceb5934fd96011e003a438ea5de0dd9221241665c3b713dbb3485f13070cd7aecc23902a28b2f84bb6bcd69d96b95d6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sq/firefox-48.0b7.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "cac1528dbddbf0163391cbc7860cd048376de7012950fdb74beb8f0dbecdbfda5b41dc347d100b0a83b31d3b324211e7a253dfbfafbc72f083013250660139c0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sq/firefox-48.0b7.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "bc96183968912b8ccd6e46adf82c49777f19b1692a5a06ccc9e24d4cba31fbddca79993f6e33a1693da0a794c081d8696d96dfe84de32003f190c2cceb484e9e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sr/firefox-48.0b7.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "4f5ae88197d4841cb38da7b0b8c5cc0ac8a228f6d1f6851bfa8782dc4ae91124da25a2235a13f9074d29498ff227602bafeb2a475e1f83f116ae6df26a575f66"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sr/firefox-48.0b7.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "334695dbd86e2fe674897b23c9144444e984e16c5cb813a980fbc6b025b214aaf344019dddb8612125c26ab1b6da4b9007dcffc1ddf205cbf226d43f536728ce"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/sv-SE/firefox-48.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "9bb2a9d07db3f7840e56368edbdaa3760abb2a5e9a266f75ac84ddafe0ab42b582613cce581dd898761ecb869b85ec515a113a79ee1c3470ae48ba261f559c8b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/sv-SE/firefox-48.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "3a7dbf64988527a3d1f88fa1840bdf8292cf90ce21b5823aedeb2fb9263a2b7ffd9f89d2709e2a2d208f0c7e70d3819a92c7859cc2c2510a4f0fe8160599d3b4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/ta/firefox-48.0b7.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "4d6df0bc1dfbb8a0761250fa7bcc3575af66ea0e91e6ed18d340eac96e4ae2c50e1f873c54f10eecc08a0902f3dcb9a9df753d6d9f6a640e7421fa9bf38f884e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/ta/firefox-48.0b7.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "b13dc2570f7c2f5d4a323aabf1448d04550d6356bd43b143c10fdc7e88a97d79d93b8145c3d7230e9f417a147f5884af3217738e5190955ab61459703bfe5954"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/te/firefox-48.0b7.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "b3540cdfe33168c6b77386d3d32dd3a44c3198e9669fac89129549f6240475e657c2e790a38f985e85e20315df0769fdee57c65513c914ebee239f51e7932043"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/te/firefox-48.0b7.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "3aa1ea89e62fa74208c5336c99aa6bdd98358852a032e1c90a70a48b6903523d08cc03e62976e10bfae86cfe0b431befd9a33bd62ef1f262d58bd9d5940255fa"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/th/firefox-48.0b7.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "8e2e979f54bef8979367b7bc5b54eafbcf774dd4ec47a65352e8529d76edb6a4ea331fa8dafe82894868f4cd6b269424f06668a46596d099400a980694b03db3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/th/firefox-48.0b7.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "708841b24ad871cef003040a59379dac33b2131bb699ede2146d02b6be7f562057c6713d050e201075341dbbb8a7fb400c6852cb4d1de2064fcd03ecdda6450f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/tr/firefox-48.0b7.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "788e91d5af695acfdca1b02eb422efc8ea35652dadffd3b03babe5622c6e8d0ad1dd200a63589329a28eed3e0ca723e838ceafa721c45a86ffcc34aabc462671"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/tr/firefox-48.0b7.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "370fc35b68ec734e9f5544f7cb74cb07d706f3e1c181f25c7e1b6e5fe1f9ee1bd9b289e164792e4a31c9fe7fb098c5114919234cda0583794f8964f14d60c4f3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/uk/firefox-48.0b7.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "463da060477f0b9831fce5e00248d841fa7b9ccae1e70fd707966aa09f55b7bd4eb89ee04b41ed6619ce465c86ce84236fafe14268a2b97c482830a2c6f8f77e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/uk/firefox-48.0b7.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "7a085f96ad6f67092f11ac1605541f1dd39a5ded50a3375e50596e18c76e992a1ec9a648a2ffcf4fefee09a3644d6d5d0abcbb43f5173a1d086f3c38b4ed7ed3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/uz/firefox-48.0b7.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "e3458b936fa06aab7ad5fb37c8bb0e3d1391e764382643b9978ded9e175dbe14fd3658f9b0903a0a5a74bb1aa1d56340fef37f19ca9ed92d3ba3ed28174c2cd2"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/uz/firefox-48.0b7.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "2899fc4bd5b40996aebd0c67627ddd40bd9c3778001afc23a7d4a232a12ababf4504568594aab045eddf2a1ad71e026bbc832b5ddd265132c74325eb84523a82"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/vi/firefox-48.0b7.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "c8cbd21b1ec2962e30a525bf7d1f45f449aa80448f3c8cedf2ffd54b2f7e1e07d8f0ceb2c5fdb3a9bd7e2df8fae0b14c65d0d84fd60f6cece8ececec7df468a1"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/vi/firefox-48.0b7.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "86fd5cf184aa8b897b37dc0f05bdce5dba64e7b8d7d6fea79d42e7a591a141af7b28e87e15a1a98d828ed259c097005b8ff8f52fa5c33873eed199d5f2a391b3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/xh/firefox-48.0b7.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "703a39b4d0fbb522c9b7a2c24780776d804025b659a6bfc1b875924429f05d55f2eb57bc333dfc6b0b0b18bf8b18dabdb7a91ec7696cdefb404cbf0b2afd89b7"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/xh/firefox-48.0b7.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "0551330c8203a93db60f5c4570a03fbd7b63f243eabe2eb0465bb8e3fa6c2389e402b29237fd91f98455f74360c6056d31fc1c1f66c5035c57ff4c8b2500070f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/zh-CN/firefox-48.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "8b9293827007bd0d510ab84e15553f4f396dc058a9871651d63638936fa03cb628ffd31bc2d01dfeee9935ad18976e0941345217e1e161df0ddc7a0e4b527ae6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/zh-CN/firefox-48.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "ecdb91365c00090388b0d0e0b9bf7fc327b6d142c3671fa96e626a744852ee838220efcbcdc57a6fe2f17d8b3a3b57fc3644b30d965a0a5c118cab421755dd05"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-i686/zh-TW/firefox-48.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "9f65780b2952210ba613767fb885dd77af3e96596e2d7833902318ac7508c98172abb2a42d3c33c7bdb63826379f039ee50f0df3436c122a4bc794d4e9fd3a20"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0b7/linux-x86_64/zh-TW/firefox-48.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "a915d396e093f2d87f2ee6cfe20f3c26fb6c524968fee0c8d1cbbf1e53a6cdec86921b6e2f252ca3a8dc13bbc8617e97d8d6e883973364e68be70c409bf1b8ad"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix index e9f6f816be5..88d9a0ccb96 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/default.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix @@ -35,18 +35,13 @@ , libheimdal , libpulseaudio , systemd -, channel ? "stable" +, generated ? import ./sources.nix }: assert stdenv.isLinux; let - generated = if channel == "stable" then (import ./sources.nix) - else if channel == "beta" then (import ./beta_sources.nix) - else if channel == "developer" then (import ./dev_sources.nix) - else builtins.abort "Wrong channel! Channel must be one of `stable`, `beta` or `developer`"; - inherit (generated) version sources; arch = if stdenv.system == "i686-linux" @@ -70,12 +65,7 @@ in stdenv.mkDerivation { name = "firefox-bin-unwrapped-${version}"; - src = fetchurl { - url = if channel == "developer" - then "http://download-installer.cdn.mozilla.net/pub/firefox/nightly/latest-mozilla-aurora/firefox-${version}.${source.locale}.${source.arch}.tar.bz2" - else "http://download-installer.cdn.mozilla.net/pub/firefox/releases/${version}/${source.arch}/${source.locale}/firefox-${version}.tar.bz2"; - inherit (source) sha512; - }; + src = fetchurl { inherit (source) url sha512; }; phases = "unpackPhase installPhase"; diff --git a/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix deleted file mode 100644 index f43810d53f0..00000000000 --- a/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix +++ /dev/null @@ -1,12 +0,0 @@ -# This file is generated from generate_sources_dev.rb. DO NOT EDIT. -# Execute the following command to update the file. -# -# ruby generate_sources_dev.rb 49.0a2 > dev_sources.nix - -{ - version = "49.0a2"; - sources = [ - { locale = "en-US"; arch = "linux-i686"; sha512 = "85c4289e561d2246f96a05e3b8df011337984b9f176670826a705c2cd68a1284056ba507e4b6e4887595bf37f25386d9f7b28a20bc1f125865b9fd7b8be17eaa"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "2bf9518dbfbb48348f74929c19d03e8daf51020bf9ba6db577a202b6e98ad7ffb9e9a0b4ca92af010cd3f864ae84940b65438f4230e6de3165f72e4e7280086d"; } - ]; -} diff --git a/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb b/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb index 03acf17e426..d049363f2cf 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb +++ b/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb @@ -10,7 +10,7 @@ version = ARGV[0] end -base_path = "http://archive.mozilla.org/pub/firefox/releases" +base_path = "http://download-installer.cdn.mozilla.net/pub/firefox/releases" Source = Struct.new(:hash, :arch, :locale, :filename) @@ -39,7 +39,7 @@ puts(<<"EOH") EOH sources.each do |source| - puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|) + puts(%Q| { url = "#{base_path}/#{version}/#{source.arch}/#{source.locale}/firefox-#{version}.tar.bz2"; locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|) end puts(<<'EOF') diff --git a/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb b/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb deleted file mode 100644 index 37d5569efb0..00000000000 --- a/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env ruby -require "open-uri" - -version = - if ARGV.empty? - $stderr.puts("Usage: ruby generate_sources_dev.rb > dev_sources.nix") - exit(-1) - else - ARGV[0] - end - -base_url = "http://download-installer.cdn.mozilla.net/pub/firefox/nightly/latest-mozilla-aurora" - -arches = ["linux-i686", "linux-x86_64"] -locales = ["en-US"] -sources = [] - -Source = Struct.new(:hash, :arch, :locale, :filename) - -locales.each do |locale| - arches.each do |arch| - basename = "firefox-#{version}.#{locale}.#{arch}" - filename = basename + ".tar.bz2" - sha512 = open("#{base_url}/#{basename}.checksums").each_line - .find(filename).first - .split(" ").first - sources << Source.new(sha512, arch, locale, filename) - end -end - -sources = sources.sort_by do |source| - [source.locale, source.arch] -end - -puts(<<"EOH") -# This file is generated from generate_sources_dev.rb. DO NOT EDIT. -# Execute the following command to update the file. -# -# ruby generate_sources_dev.rb 49.0a2 > dev_sources.nix - -{ - version = "#{version}"; - sources = [ -EOH - -sources.each do |source| - puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|) -end - -puts(<<'EOF') - ]; -} -EOF diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 337e6573309..90749b914f1 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -6,187 +6,187 @@ { version = "47.0.1"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha512 = "a5391e45d1e59a7c14d8d421286033e3e760bf2b4afddfec3d1767b2ebc957b053c39f17f8185a6c9ca2542c76f6c9612d95d474c01bd5ecc62e5d4f4e43e8df"; } - { locale = "ach"; arch = "linux-x86_64"; sha512 = "48681328033b694adfc6149bd965a3dff90ef014db6f65641ddd3d79ba7901604623735555bad024dc2425f226c65e332a0875d6b18fe1c06b18a1e407b70294"; } - { locale = "af"; arch = "linux-i686"; sha512 = "7757ba99ce9991f67a45d9a19615a93c0a1bf0e35d35c5fe653f04d47c068054c8d91327641a48cd20fb9531cd1e842066c0e6f2dd8b23bff216a9fc727ec84d"; } - { locale = "af"; arch = "linux-x86_64"; sha512 = "7e3d70da29aeb5fc81f5e6dc52a4b8f831813f8c025b1a105df631cc5b675905c82dae842459ad30c5257b74bd5654e9aec5dcfcdee93eb42443c45cda81138e"; } - { locale = "an"; arch = "linux-i686"; sha512 = "1051e1e3a6c25ba6b3aa4ce5adfdc60bcb3c612f3facd5edb702385ea8c0837cc53e95b064a424e0c055a56a11f3a54a7ba37e2ef35045c8cbb834aaec0f6327"; } - { locale = "an"; arch = "linux-x86_64"; sha512 = "27fb75ce402c0d47f8542d3d6d6992587e6ea0caaba2249e763f0f9c4f1d233b37a4b87ebb7e730d16704c7d2abab690660e409e721850875fc09deb0c433252"; } - { locale = "ar"; arch = "linux-i686"; sha512 = "296e23fff265bcc08ec0f81608d50428181163d216fd896c80a1a8c31e95f243112aeedf3bbd96b1efbaa1d6d576a9bfc75e5fe8df434cbb74bb9576f7d90a83"; } - { locale = "ar"; arch = "linux-x86_64"; sha512 = "15f0e7cbf5a98ffa9d2d7befcb11938b76194dff29b1d93ddcbb8f5c655ef33659534874a72aea18f98af06e5fa4392aee5412582ef43292d70603dff2c42c60"; } - { locale = "as"; arch = "linux-i686"; sha512 = "67883c8cb7ffb6c05288b316b2aa5bc3274372dd82ab4c771fcf1e5a968e550d12c89027440704d8479a906beeef24a18ca72ad243628a5ece45918ed990c793"; } - { locale = "as"; arch = "linux-x86_64"; sha512 = "f7718b0dc9bcbfd109591f87263d7791dcd7612b0312d0bf93e68b1f2014d3732dc6740c57a8e64dfc1af7946da14dde617945e38842eb19cfe39376cb12ad44"; } - { locale = "ast"; arch = "linux-i686"; sha512 = "f29b883932752bfa947c48f7c1ff6084b1cf215ea84cf63beaea808702b0b90f50e85aa4cefa4d2c1234b0d366c8f6e3d8fdf7a0f92d432cba790adab6d24174"; } - { locale = "ast"; arch = "linux-x86_64"; sha512 = "8b656c6b08640c125b94f90e1dc8259c90af2e764cee73b02b9dc3c0246b3195906d9208bc2a6b3ca31091d8cdfca8338fa6c489b7caa5685a23133e98847a39"; } - { locale = "az"; arch = "linux-i686"; sha512 = "5ee1247e37964274bbea8021c8e4e5116fedca95712fbd91d709c5c580bd1618c6319cae73278b2f0ba82031e94bd3fb382d2b4dcfc9a5d7ad47ecd80f4fca43"; } - { locale = "az"; arch = "linux-x86_64"; sha512 = "c369046c29dd0dfcf40e69e1f5b5a63423833a376d2b143d3fbf2ee1e23dedb3baf24843ba1178bda94b86f357724898a147d4adfac1e469cbf44166d7ffd16c"; } - { locale = "be"; arch = "linux-i686"; sha512 = "f8a1ab05b8d25a7a30e755a551f0851a308ba0720180685f6946a510363988717f8274ac2c8ef826c60232a62c394b86829d289e7d74e24b7656b55238129b15"; } - { locale = "be"; arch = "linux-x86_64"; sha512 = "df05271371de5fa25ec11164eaac0b253bc892749d421a6ca730dfeceb4ef89492c42ce83a87eccbe91cb03ab001bf0a1d9a20a7296b69841cab8c6b5d2acc36"; } - { locale = "bg"; arch = "linux-i686"; sha512 = "80644b86f9296b708e74843a51f81d368e3508f0f2f74de1a998d30a15f6e3af08ffd70dcc5c79adb76c03be9ff4713fc8403b8433cbc33ca3493941c4fb2fe0"; } - { locale = "bg"; arch = "linux-x86_64"; sha512 = "0e6cdc5b3cc706031c95a550b0c800c9e8e2d7bf241010c22f0872eca4bab018a5f0d4a94abb4f8291c279476700f2101a69ac0c57ae79994fba38b88b00fddb"; } - { locale = "bn-BD"; arch = "linux-i686"; sha512 = "4c697f1dcd68634e2ab712d4f2415e57cf8be0017fff3602223d8af19a1f3a5c973489d13951baaab95924fad42212a485fdff622d2b559be36e246c8a847b67"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1931035a9d92dd9246a00b32443e282dc405096407a4feff7856125b7ee156840114c9be0dd58a020c250fa54c4ccb22052d2be291eeec9b5f76303fdf6c4cc5"; } - { locale = "bn-IN"; arch = "linux-i686"; sha512 = "fbab6f7e4205c803a50990624d58aa80cfd3aa76fed02cbf9ea390f4ecdcc1a97bda9b51791cec49f2a7e1010109d5f81a1c9b6ac224f1f70df49407df5f7386"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "c705ec8356796060c6782261086011bc0bf3ac9f08bc821ce2305c9aac11c522abb802a9d9ab7dcb53b0d38468bb6e667d45b187355d769acb43a8b252c4f400"; } - { locale = "br"; arch = "linux-i686"; sha512 = "c58cd77139a0ae7f3bb8f6f25c40856aca18a831c8f5d6f5d59a45ec615420bd55205093fb66a77591835b0d9493f774b1801a168b9c071086d510a1446cc914"; } - { locale = "br"; arch = "linux-x86_64"; sha512 = "b6bde26d478eac081007ef43a6d588f70dc4d54afc423b019468dc91bfcb117d3b4989c4cbb4cf77a1a11847a58ec74fbf822b6e6f0ef86fdb0065c301294850"; } - { locale = "bs"; arch = "linux-i686"; sha512 = "16ee40d079996f42be77167b73645d389045648c9d36b76e34d0398c7b5b6dee54712d109f93d054236ac7076fc3edb06ee82acae40ad22825a23d92d0e2c636"; } - { locale = "bs"; arch = "linux-x86_64"; sha512 = "ef674f409df5c32fe4584f9de65cc6558d6b3ec78d8a83f5cec829bc1ae09f30399567915e32584334704d12264c2592fecc9e4952beabc8b0d4eb49a7186854"; } - { locale = "ca"; arch = "linux-i686"; sha512 = "fe522bd836c82cb68bb21ad1c7f36bd9a7af1642abf7c035e2d0999b4cc07c58124e4d8de81344598036159102ee12f22c12e44a8a087e54d6c661c3f453b63e"; } - { locale = "ca"; arch = "linux-x86_64"; sha512 = "b618da984d35fbde3819d101c103d8d9a5a4de98f0e254c67e894656019ebb6adc56e14a57410a61430d9aa9c1e0a01339b39a5272164af372544f27329a1644"; } - { locale = "cak"; arch = "linux-i686"; sha512 = "82659aa2fbd091224aef6800b3df1d2e5141b6a295918e4fc4ea09b671184f62c670e3dedd7040b2f167581b0c8a0e8799d861256b273b01b2455d0937722273"; } - { locale = "cak"; arch = "linux-x86_64"; sha512 = "a507cff511c6337f805a27c0f73548342d2fb2cffa683874d66b054b844b17c354cc6da5c3d15618006c2279099b0cd9172b17d9d4b21a3863b5e395db686b22"; } - { locale = "cs"; arch = "linux-i686"; sha512 = "9af91acffc2beeb53280a6cbd21656a91a686c03342fad90dd91314c49535acef1a8abac8fe54bcfc250ca8b8f07e3550c890094f3bcee6baece983cec68bd8a"; } - { locale = "cs"; arch = "linux-x86_64"; sha512 = "c8bea48dc11c021fff9df5ee1a67a6b6e9193ffb2a07e17014d7448254d8a8f4d1512f862ea73bf84dc15b40edbba3fd94cd3d2d18872255bbfc7fa9a7b8ec29"; } - { locale = "cy"; arch = "linux-i686"; sha512 = "7cc062c3b9b4bbfd0b1f7247f06505ae99458514b607d4d9062836085798bab7ade6c4d1c8903b1b961243c6fb6adb4c4f94780f1194f745cf62d786e2c4f5c6"; } - { locale = "cy"; arch = "linux-x86_64"; sha512 = "abafa600b941e17f8aea0e778a937f5fb34cbc8803c93e59febc5d9fde6ad3347ba0bc7aa07ab57a61f6b9d6b11d582b987100364aa8401bca539dc6e14584e3"; } - { locale = "da"; arch = "linux-i686"; sha512 = "d4a9141779f52b78a51b9682b6b44e5ccffdecf5582358ab8a02efe133d9a52023e03c238e106a79e41a8aeaabcc58e0757c1af66837768e7bf4732f26182915"; } - { locale = "da"; arch = "linux-x86_64"; sha512 = "48f0c48aa273cec9830bf806330c7a630185262838007628acad904a45b3186450a8973938c36db636bdef9042c78ce94a4a456e1682ef561abaabab6ac20863"; } - { locale = "de"; arch = "linux-i686"; sha512 = "01675b3a8ecfa10da1d101cba36295b226b130e1cdb2c760541cd76c9b21436ae84ca7228e063402b1ca2eb59acadcac7720c9dd47db8b406675fb273af206c6"; } - { locale = "de"; arch = "linux-x86_64"; sha512 = "6a7ef802a8109f58504b2accb9ef0ee38986f6c8980e0831c30b470f2ee768169557cdbde1a58d7c72996b27596e553185ded476cecdd7114b75d82428b7846e"; } - { locale = "dsb"; arch = "linux-i686"; sha512 = "55528fca4d276b2b0430949686845e3d7d88975129c9a9846408f758b4f9c8f154425db891e5c1930197e36137d6c15ba29de90dad624bad23090015849d0ab5"; } - { locale = "dsb"; arch = "linux-x86_64"; sha512 = "f21c14a57f6f973be824340fcd417ce03765d5826114462f62adbd933661bccbfbe90b66935083619c62d48401c511830574ccc373ca2110093b06fad59734ff"; } - { locale = "el"; arch = "linux-i686"; sha512 = "ac5a808db1ba68286a7199eef33794f7aeeafa26e97a20738fb21be479462bcaeb1e8a7995720d5c7dcaadd0cebe91bb2a3e019873d0cf74f42838f7d5c1a427"; } - { locale = "el"; arch = "linux-x86_64"; sha512 = "c02e6587d99fc3ca66debe854c778a8b3dbf9b514e6ed74fa15e3035a54643b2bc324ff59f1705c6bd392c37ad1996f80dbabbb57df10aff954ed0ff3f5b01d5"; } - { locale = "en-GB"; arch = "linux-i686"; sha512 = "c458c70db0408d627a904781adc9af18011f243689f4c5a606c8f1508b4e9417a8df499673c4ba56d32ea77d0f79ab85ff88852f7c518e7fd124e5970615b2f9"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "28ccaebc4f7613d7ea8c3b47504923f2d59bdf4afd6e386a67dcb6b6923a9374c1c783e4f904da0b6e0f716ec87a046fc12f3781b732389d1d680745d6955c58"; } - { locale = "en-US"; arch = "linux-i686"; sha512 = "e1ea34bd0829656c04c471b66d2013fc07cbd5cf40b47bf3a932326cca71f9a502c52d1d5e6dd902d274d307079475b0e75d7ff552fcb2fadf31b2883efba79e"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "a56b2ad26df424f008d96968a4e6a10406694b33f42d962f19dff1a0bcdf261bca5dd0e5c6f3af32d892c3268da5ebee8ce182090f04f8480d37d232ccd23b9f"; } - { locale = "en-ZA"; arch = "linux-i686"; sha512 = "d5efc3d4e624f34c81df068f4d6c184cb8a63ad0667695e9ce7099e069b23715eb77cf2004adee41bf355452179959e5ef7450f167f87be70339abb4cf70844a"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "859730132549691b61e936813f0f5fd3e62f3ef6fa9899e3f68bd3178b7438b4c6b49f54f00d4898b568d6abccdd55a0f9fc6c51858e95735fefcc13de460d73"; } - { locale = "eo"; arch = "linux-i686"; sha512 = "8ef290bf1eb3504ace393b32c2da64d14435edc327c4f13a40cd925efaf7e042a03b6877689b3f2290f85625410a4e48dfb2cf676f138fdba87ffc597b25f4b6"; } - { locale = "eo"; arch = "linux-x86_64"; sha512 = "7d6167749d2a57a9c12180302a825fee14555e9050b6be3c83dd35183678bc36e10391cedcc864ca0dd96d297997a68627dc4fc1a9cd8922e789dcfa814f18eb"; } - { locale = "es-AR"; arch = "linux-i686"; sha512 = "07768e3b3ed903f4327881a132f192a65842a376eeca6d10ec0de69fefb4ddf3d7fee2a704bbc8d229c78556478814d9e53940cca9edee58270d9790d6b76998"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cac021af09abd742273dc77291fb1528dd5d6d38cef3a5e36e615fbb9f3908655fdc96ceb93fd131c4879acf24e702a044471136e7575f3b550ebcecd982047e"; } - { locale = "es-CL"; arch = "linux-i686"; sha512 = "e92ce6bec5b1ee8cf3db0a604eb4cae6245fb6d04a48eec64b6dd55139f3606cbbcb65511e29a3164d6572929b7216afbaa7f034a2191eba100ecb7403740504"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "98e57146481a53061c0b30872290ecabc2d14c73805a9461d82aaaf4cf9f301521fd55b01c8159c09a56f52a1580d83c9527986b1390f496d0fbd11227216e7f"; } - { locale = "es-ES"; arch = "linux-i686"; sha512 = "c44df66e140ea9190112f89aedff9519b6bee18f5e2b54aea19acd233e623c299aecf134cdba70d366fcaf6b7795d220052ff75409c7a04394a7aa02d9ea708e"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "c2d70bc5a304df7b2484c8fb2b374f8e31a69049eb223a53dbd0e4b51e4ccce907efb1674eb637370ce7c3947ba5c09e65f433d10e0f328b80d482f3de9cae12"; } - { locale = "es-MX"; arch = "linux-i686"; sha512 = "96dcb75cffeb85b85f092e295e38ee55c272714c40609ca90cfaac5fa0cfdb3efe8e993319ee690b4a7938c42346bf39f063ab1f3db606e743c1e4720de5a93f"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "60b50d6726b2e1985564bc02263eb88c9b4c1bb39e6d19812ecc6751d6ad223ba04f65a7755a946fb15dceab90628b057bda89c55fdd4972604586f52c5a4b1c"; } - { locale = "et"; arch = "linux-i686"; sha512 = "0a4bef2277f729c93db413b68f8263eb356f7b3278880574b8ebe010e2db9067b803967e1f0d6912f128a9ad5ef204466f52ae277f3addfb8fe9ac377c3b8a3a"; } - { locale = "et"; arch = "linux-x86_64"; sha512 = "ed1bd4fd67262958601f1107edc589bb28e9b7f9faf0edebdcaf0c07ec6007f527a9eab434582a65271a8f68edac8178601da54eab9398f48b31126657a21b0b"; } - { locale = "eu"; arch = "linux-i686"; sha512 = "8c5c9406345e2a1fca3544aeb742dc0d254c804d887e3614613280c050a63b69320d4488b017ee16b0a2a07bea862e8b245baf7edc9df65689d509986f3c5958"; } - { locale = "eu"; arch = "linux-x86_64"; sha512 = "d8f7004e24033f377391b577c549b66f73cf0e899ce5f580eaccd07713ec03b4362db7b222ce6345d113641d3e6a951302939bbb155c47ec0fa46a201a631427"; } - { locale = "fa"; arch = "linux-i686"; sha512 = "f4e02737e20b6ffd3bc2b3a5e5fa59fc80a8e37dc8459ad4a6b99e7621a4d3f360884915f7136dc201830efe371de37977ef3e27f34f84e2cb734c1fff8f6e36"; } - { locale = "fa"; arch = "linux-x86_64"; sha512 = "8f624b066faa39341b750dbb702dd60ee6ad75b3850c659dac2e21969ebed1f792423e9fb0a9cae7fc456943020f9a0155af5d7c596433eedaaa9990ce07b7d4"; } - { locale = "ff"; arch = "linux-i686"; sha512 = "22a2c5376b1e8d770659475085d98ac1f1020cd816ff3ec6ccfcd68f2484b1b0dc25bb84ca52f4ad27144f4da356ce5e7fd54411d12ae7c852064509470d5828"; } - { locale = "ff"; arch = "linux-x86_64"; sha512 = "bcb3dabc250045b8ad444219055fd9d14902296ef3f9c320bec1bef940f84eeb0d4a50249805188ae96ed0288a70f0216350ee79191beba49aeba890ae515b41"; } - { locale = "fi"; arch = "linux-i686"; sha512 = "0c505a0e1d3030038b61ea159eece3892bcc7d947b6d7010c0be8791525c9d91ad1170d4cb45260584c93a78a4bc831b7acd9f28e95ae62e5b96b31745dcbe50"; } - { locale = "fi"; arch = "linux-x86_64"; sha512 = "f347cde005c6b61366c633db5a8cbc5260dfa0d68230a938d847e3f80bff2f1bed09dddded7b1728f4ef9525610ecd046743f9e71eefb467943fe6b72ed198ca"; } - { locale = "fr"; arch = "linux-i686"; sha512 = "8fb8ea2eab82740657a6b822b330fa0c289c31ad900683b4ad07b1e9b0c6c4e14f50af39d6d0f787642010628800b0a99b5ab0c4cad62e4a579390509b1ddd13"; } - { locale = "fr"; arch = "linux-x86_64"; sha512 = "ae79c5b7f9f8305c3631f4f913baa341a9beaa7a2ee5df1c6c1826030c21bf22b92095ee579affb8911110bf3bcc359793c0beca18d4c32b1fcc1f3d1dbcc4b9"; } - { locale = "fy-NL"; arch = "linux-i686"; sha512 = "1c57d02fdc33ff53de48ed9aa9e89ecd5a56d35b432d5651e71bbfbd5f9dfd18aeaf14d10b881f72df871afd00a12b31ff05cf9d5c5a55cd44a92c7a0156523d"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f30f59d630c5d289b61dc7440f7bbb976eb16732370f827365a477090cdf9f2859f39afb7ff9d9be7e8a022f181f2aeb7a3005c00f4c14e6505a28db7ae48a9a"; } - { locale = "ga-IE"; arch = "linux-i686"; sha512 = "739d5feec4bffee67876227f6783d35675f4c0d168b7abbe5f97b6e8edce7fe4b8f04f8240087f7f208db4180f3417997b661c93ebe046decff3f4f4fecac839"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "cb4344df6e07db839ce8c9fffd1b7b310c8108b5218cea3602972806c1a40f56bf1355ede4cb3595f54179b16e3470e25bfbddc8e39d726c7d6c1e99d128ca8b"; } - { locale = "gd"; arch = "linux-i686"; sha512 = "91004d62bb5f1f6a1d65b35fee9e594d21d9877669e042cb4c9a834b01b35797363e1433a9ce5a8d0a9f64c8b256da6a6d09fa3342b74b7c2af8ce8afb3e4e56"; } - { locale = "gd"; arch = "linux-x86_64"; sha512 = "f04034cafed25c34713ffe4109e53b107b8fe81321c0c0c035f54ff0ce67ac393b42db7598edc658d3f026e447f9ff1c4d1cfdedd31066eefb6019117248e4c0"; } - { locale = "gl"; arch = "linux-i686"; sha512 = "107bdebb92ce86f39cdc45d6bb24a9c4d104820eca6bb77950693ccbd55e7f8a2f143fc3a5bbb1bfda161e7a33c8f6d8d2686b09da1497215defbca2b4e4e109"; } - { locale = "gl"; arch = "linux-x86_64"; sha512 = "c841af5c73343475150b5404b4b54396bda845aa5b231a742aa17ecb7fdbbc5cd4123efc3ac2ede1c24f485d04bd87e8bf7cb00b7135bef236ce56afa0c27a19"; } - { locale = "gn"; arch = "linux-i686"; sha512 = "20954e218967772488bd895ebf069522c3f4c56ebfa09a7c8efb740158cb95b6be76cee8f4d7f2c1c6c505ca9071a0ddc1914784a54f669d337d5196f18b6f4a"; } - { locale = "gn"; arch = "linux-x86_64"; sha512 = "aaed68f13e326792671669883b452b65556998ed757ed5b745c6453d6bae8865a06f137709de37ace2688e2e09f1b96ecf2e5b6374b4170d29100c6f83ce22ce"; } - { locale = "gu-IN"; arch = "linux-i686"; sha512 = "205093ecc0dfcddb2b90e05b1a17f75805a4597bbfad214d67442fd0d952f765b031ba63a3c399ba9c1c46e4d05b3cf786f01c46eb8990240a16431964c93a94"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a84ec5015f6922a22a284eaca985010586067370d818e77d401b58782f86dcf2f534f1ef021719c170f1f502525ce25c94760d3b75481c15fade3c25b969b563"; } - { locale = "he"; arch = "linux-i686"; sha512 = "5727fc4699316c4b34be1c2596c5cc20d5fc9d2062b1e106087cdb34b788fe3ebbc098acc8c690bc83c9d9be59ac3b3977fd9116d766ce908aa088660fe34771"; } - { locale = "he"; arch = "linux-x86_64"; sha512 = "c399969bc24b10ca1c1eff17d3414f214cfe3e5b73282942ead5b2ba4d2c58b74d665b13031ccf42956cd45f0fc7b206dd2f9674103c1e3a8861a33577b5caa7"; } - { locale = "hi-IN"; arch = "linux-i686"; sha512 = "f014c47a143d425aa3452be2bbed199a8b5e75d278c35fa86bb6bcac40bfb32bdee22d030386c881c818b465451b35c81f97bf29f9ccfbea606d52c822057899"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "0e5dc0970680886dc02448d7118b6864092699fe44f3276ca17cba160aee59418f8e39338247897b118de0e1fb7634cf725ddc6a34a8b6f002b7a78d92deffb0"; } - { locale = "hr"; arch = "linux-i686"; sha512 = "a9af43f6cf6f493f728b8942d3a600f3cb3a23eb0818d284ddabb8766f7d274aa0a232f9925b65625bb56d00864946dc6b0567491cbecdd6a7cf626b6964d9b1"; } - { locale = "hr"; arch = "linux-x86_64"; sha512 = "d97951148ca0ba80a67020f323859ea3f508e40906ecfd18f7a8fbe7a2bc85ea4635945b5c6063e1d5d18456471604075e6767da9a4fda6a09dd3e992a7d3a88"; } - { locale = "hsb"; arch = "linux-i686"; sha512 = "2f7adccdc894f345e861b29a6d65909b1cde2649c69ec9223f784e659e8e3f4668f815b3683fe691de0749483167d26885a0199bee88e8524377c7eee3afbe99"; } - { locale = "hsb"; arch = "linux-x86_64"; sha512 = "70e39341ede01e18c653a0eb56b48e31c73ee3df54ebc11bcd220e2d8e19c67c3e248095c4d070b12a0eac5c24acf5a8ad83069673dcaa684229f4706103685e"; } - { locale = "hu"; arch = "linux-i686"; sha512 = "1fc01c6dd873e2194e6196b1bdb0246e95d0b0520f558b21a2052251d2a5202141c09410c4631b3f025479169d8f68411c2a24f32825261fa8d65696fc7cbe0f"; } - { locale = "hu"; arch = "linux-x86_64"; sha512 = "b4509d671d7eac055812add85ae571f52c90b4eeb172d21c22ce844c70192ba235f37a732e94a0edd6794ecd5a8caa5e8bb6ce05a26d3705902d3628420af871"; } - { locale = "hy-AM"; arch = "linux-i686"; sha512 = "a2b7cd1ec95a0b5eb064e816cfcfc6a74a92806772592947267c4b266bf7ce77d1beb17a7c25b905251cf497ca8dfabf16bca367cf6d9e9e635182f306bd71ca"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "9997ca45051e609e289d7730caf1254adacefbf8e618a165750d5bb7ff7933d014781af76501296c89a4236fd3ac477df6e6be5a5dd45f214983c851a856ce5a"; } - { locale = "id"; arch = "linux-i686"; sha512 = "bda5a7c599885bef966daa35a3f34297e38534e32967142ff9cc720a34c7aa9730e3f24623c240637838eca03f78f9b2ee30af3ac3dc8ba48f9664c56b64c789"; } - { locale = "id"; arch = "linux-x86_64"; sha512 = "97d16c5b4382c7fc6ccee416d671e47d345834a44ab111aa486a41c756b25eb894628d0128e8454fc15f38937bc40436b12e60752ce7b7c1fe35a230abaca337"; } - { locale = "is"; arch = "linux-i686"; sha512 = "576b904fb836ea735f652c6b9c91891dee164edd3523c5f99d68cccb4bd6689c29e4c579b6cc44e699a8900101fb8d223f9e0b0860f71a2814ae0ee2c70609e5"; } - { locale = "is"; arch = "linux-x86_64"; sha512 = "592d65977c34c6133f5745a85722f822efa5956bafc6e880954a0b318fa59712c754e882768755fc08f5e08a1c99493c0b30b4219c46169ba663258e3fd3f3fc"; } - { locale = "it"; arch = "linux-i686"; sha512 = "4d749e1b5d8432df789f29a247ab48a688d4aa16fb25dcf7209783c6036bfccb9ff8ac32dcd09dab1708f71896fa034576d6048eef077d1a6c0a3dc58d3cdb26"; } - { locale = "it"; arch = "linux-x86_64"; sha512 = "087c456d691225d9aef54b2013af69cc7bf2501f83060179112e9c40c1d6762202f68e6329a936df091a1ae6aa5f20bcc96a4c8b0451b71270426bddfb45d15c"; } - { locale = "ja"; arch = "linux-i686"; sha512 = "cb4b0bbff7d322f2f04fdaa50b365d4e0a1ff1786206539cd124870ebd69a9305b88d39b9fbed41c64ddbe68098e02c51a0dc665262424f8eff882b1497ea1fd"; } - { locale = "ja"; arch = "linux-x86_64"; sha512 = "b6c9b419a3e746957f93a4bdba9043adc3911b6f76e1eea2e4e31e77e9aa9057ce720205db4af5586a90df4d6b774b90829f1d7689e77c560c50ccae755400b9"; } - { locale = "kk"; arch = "linux-i686"; sha512 = "ae7711d86ce8180997f44f9309a63a436bd8b70ed0dccda773c34ba816daae99b3b1ae913ee87f4d1f9a4e8f016aea670e89652823df16b5e8414bb58ac28225"; } - { locale = "kk"; arch = "linux-x86_64"; sha512 = "49fb6b5ab6aa12535373927519bf36099da6fab7c2e1bcd6f5ce73d91679f58e81eddd3556df65b305fc2d1cd439cf6de081980fa98ff79df16b620ed41290fd"; } - { locale = "km"; arch = "linux-i686"; sha512 = "29dd1808c1430c01dbb395d5e5a833bfbde85453278d4efd32f1afa1eac19a651c0c3a42eb4ba3402f56a8492e80746d753986c0ec0f1a6dc0e5eb6778b5c6ae"; } - { locale = "km"; arch = "linux-x86_64"; sha512 = "f53966aed30b57a601152f09a26414e11bff4ff31683989eb1e47546eaa32fce8cbb6511043f9753cae076d23d6f2172c2b224313cf5f3262f109b49119175e5"; } - { locale = "kn"; arch = "linux-i686"; sha512 = "17dc37df2b3d5a87bbadc4d5c80d4ddff03752b7a80f5c76171ce9f0bc4b8926964b6315cd4f0c6c9dd3142cec56b464503bde34ec3c69e2b8a66ddcae72b0ec"; } - { locale = "kn"; arch = "linux-x86_64"; sha512 = "2af5ac5c254bd0ed2d08656a6fee7966d73aa89973cfad67fd18d7d88fd1f18a2b882de7854af46a3ebc6acba4cceacc06942db7ae495faa2c6ef21c65e94158"; } - { locale = "ko"; arch = "linux-i686"; sha512 = "415fc260f3dcc2ede6c43194501d9522fdfb106f7c86e5d8f5929df6615c73023fffc3efd190deb68bf08bb2a0d4ab34f7605e222301c8350b980f2dbc289c8a"; } - { locale = "ko"; arch = "linux-x86_64"; sha512 = "c991c0b9a89b618ac046882b929fd7e3689e19dd96edf4535b25f9172b6baaa801a4490ae4fd35e82ca3c776afab74a0a09b993f8ae8c2a603d210f2cf248f73"; } - { locale = "lij"; arch = "linux-i686"; sha512 = "3cd367654397d14b782cea4ef8c96f1f6938f011576a8dba92dd4ca832ca3c8682f3e0e161a4288b112fca550d556080d0ece5a79e4c4f6ec99a9298feb6fa12"; } - { locale = "lij"; arch = "linux-x86_64"; sha512 = "2d7475c544df807a956feb9361f889ba0f5e43dc52a9e1dc9c469d86e97f344b4f2995e3fa149a77662969f3acbcc998f430973b2b9d28b23c82c5058b4a9dfc"; } - { locale = "lt"; arch = "linux-i686"; sha512 = "35c8a452ca845576739d5faa9dab6f3c34dcecf9ce95870f68699836f3534b4807c91fbe80007950abbbca662e6d01b406205b3e4cdf4d33e0717ea5d6f57006"; } - { locale = "lt"; arch = "linux-x86_64"; sha512 = "8791df09d841d5ddabd552d0fb0dc7e9446d23092bae1010d92bc3b056a9ad4a6dad01c5d8db531a273945eaaf4c30c922cd03d7b17e1b6be263e0bcb91b8384"; } - { locale = "lv"; arch = "linux-i686"; sha512 = "22b865a344a46096c53a72ff6b1402d00808bb3b49ecabe6f4115ea60e40e522d64afc701648772616fcb784a963bc6d5bb3f89517d7f8407f22fa82d81bad98"; } - { locale = "lv"; arch = "linux-x86_64"; sha512 = "3c66af306b1a8d0a684c12511d95353c0bdda0bea981ce4e577c928be03e12b582b19dcaccdccec551b3cb0fb716323b1079180aa7a8f1204f5e4b5a84b72831"; } - { locale = "mai"; arch = "linux-i686"; sha512 = "780fe423a3cd56a7452df32679ee07a0e328b21cadc78faa2721cec59185c4a4467aeeb75e9237cc86d38dfa2cd71530f02156c4fb9515582ca564dd53d47543"; } - { locale = "mai"; arch = "linux-x86_64"; sha512 = "d27218b59edf004dc57cfa9ffd70dbeb59b7d3c0871b00388a56b505629fd82ddd6f6e0147f5b4c67a8ad72a674e384b66ba2f9455fa9ff218c9ada4b27d1d7d"; } - { locale = "mk"; arch = "linux-i686"; sha512 = "da7ae3718f3c69ec9b62aaaea93951375d82d8d02818d6855fa9f085a64b69c155a1336585d786ae2d33d657110b787f62909dc9e4d54c62d2ea94d2fa8fee3e"; } - { locale = "mk"; arch = "linux-x86_64"; sha512 = "95136f8bf86014a63bcbf4a5cfbd778c4c7e6a84618aa0f6a6948bb597638569b3702e0569b50c5dc9b46339e723377faea8964b921ae9802043fb7983a2c4e4"; } - { locale = "ml"; arch = "linux-i686"; sha512 = "56743acb54283715fb2a910caa85dda61f7e2c1c5e012aa222dc07e3b522572500056fddf990b7ef03a175ff8901fb11b113bcad5c2adf4a6e6e032644ccca2f"; } - { locale = "ml"; arch = "linux-x86_64"; sha512 = "134f35f5f6616c2a7eec48f637277fc02e23b57bf38eccff9777bb08c70a41fe79967b69567f75f9c8bcbad4b22d2ddaf16bec98e399c4b8ca9db9b70e99ef58"; } - { locale = "mr"; arch = "linux-i686"; sha512 = "f29de7ae7dba03465baf86f93d778c9faf3055d50295977c0207c7e4daae6f7ad733ed38e1323263cebe4f737d9a1616024333a97139156470de1a9fe3c16276"; } - { locale = "mr"; arch = "linux-x86_64"; sha512 = "731b4f143fd1303ab54ea3f1b6aca6c4f78ce935caae32fed0b8cdcd46c0ade8c8977131a3be786ea929a7d284c3d45d34851a0d81242761f722f0bceb126957"; } - { locale = "ms"; arch = "linux-i686"; sha512 = "d372bac105f2012b189efedc449c7c183d0daf64cd7a40822ef9d685ce4a1550ca9699620440dd198b13f95513a577766e9f1a8e88b212492831bf7ffcac7e0a"; } - { locale = "ms"; arch = "linux-x86_64"; sha512 = "1287f36a742fa834d5f31e6bc2f6d3651e54f2bc8845a1f0f647e9a9e38ba66c58138961185897c8832107cffff06167a35dc3ee1f0ff830f997f65fb0854a63"; } - { locale = "nb-NO"; arch = "linux-i686"; sha512 = "ac3e46080e188e56a6b67ff77aeffdba7982d7c3aa4156a6f2781ef6b8fe63cac50d678e5afc91aca4ad16c4384d2b2727f74ddc4083da91a1e3590ac98ec9d2"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dca52381e45b5c2d89f590971d830010a9ec1a2a513fe655ee93c3fbd980adcea78787701595a95402bdb660c2f3e0a489e001deba13798337493655798c713a"; } - { locale = "nl"; arch = "linux-i686"; sha512 = "6ec01f8eb18384aadb5715a996c8410ffa94b801ee1f1b1ab43bdeb492e179e781e8b85acbeff4a25cb4fef847ce3e2335968458d9f6e47d046083264e91f6f7"; } - { locale = "nl"; arch = "linux-x86_64"; sha512 = "7d5840518312dd167d914a8f7fa5670fe17f9a6fc39ccd128e30f689005b35bd352d0602993713c3d05288f2b036829be8e08398d536e4aebf2341ae2290e633"; } - { locale = "nn-NO"; arch = "linux-i686"; sha512 = "a185f7592649a91214363cf2a0474b5895f33342c98cd4bdc48fafb0cc76310b2ba4f46575970d723c76b2ecfeba8e2b39d9671e6059a15bcb2565258096156c"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "7f8e7277bcbfbe5f40c161f1ebbeed86159c2b6205a5ea55cd8b6253fa6742bcfede11d4de6c1aba36e2b1e98f9c9a7b8e26f9aa35e1eaadc1d011636d429be3"; } - { locale = "or"; arch = "linux-i686"; sha512 = "a543a7d3f4e24364be7e4df65a81da82d955d1268a4cbce741ad7ddd5f4e9916573e271f02af1e92b123a4da2c7f312c17f6ce714e3057a1b204484ef12133d8"; } - { locale = "or"; arch = "linux-x86_64"; sha512 = "7672596470cd8f49f9c4558b05bd637af1650da729bc518681a8cde3ec785358121fa7ef209e123fca4b59df1a63878832bc32d2ff404b5d2a818b60ba10c15e"; } - { locale = "pa-IN"; arch = "linux-i686"; sha512 = "a99b60ae1eb479e31f838fd41d5de325c418762fdcfa5e0f3bc3d5da8df108d3b64ce5bfac0af09663007becf5327164db8dea0ea7a3876586cc43030a780199"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "f0110b74842f924808f74979061151fec711d10a6005d2da2fbb8d46fa2a25ecd5a2c804e58c10a918efe570d4d67d05578b0245f526e1aede4bbc786e9f304e"; } - { locale = "pl"; arch = "linux-i686"; sha512 = "7eaa2bad351429d76b476819a1529ed1609388968327382cc13df235a294f2e9fb14295341ff15fe3b2815ffd1c6c8978e2aa104a847fd2cb4adcf2ae3b0b974"; } - { locale = "pl"; arch = "linux-x86_64"; sha512 = "a40e2c15cff0e7f7bff8a5c0bc4cf39df948a21bd37b34ffc93dd87e1f5256526a25526e457fcfd8d081bc872dc1bec13e67da3cf671b6a16dfa17850be4743c"; } - { locale = "pt-BR"; arch = "linux-i686"; sha512 = "c9cd96e68fa2e1f73a49e71c287a25be8d45a8ebb56262e02c40ba5869fc58c7fc43a1f6958592bb377e7dd4064d64f5ebcbcb5cd3a9fe0a007c2da665f50a66"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "1184751c1d1a0a9044f8df2d20aee7dfe332dc5f851802ebaf2c5c83fa2bcccfd913cb6e16d2baa449cff1b02aa18f828489914c0741a2ef2a46d54fefecc268"; } - { locale = "pt-PT"; arch = "linux-i686"; sha512 = "86538057ae91b1297acc11c9bf3f7d24ba1950edead89d4733f7c898cf53e3848054bf391a975f19766b69f4c56f576ca54e4b8da806db7416f3e3d91777c3c3"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "0a480c26e5dfe2bb9b536e122ae32e18a6dac999004493839cb506c1ad615e095c554d296f1a77bfccbbb86b58bcf549db83f7de51d02b68d1eb752b421f23cc"; } - { locale = "rm"; arch = "linux-i686"; sha512 = "751ffe931cd60296490c7164f49f61f4a51bac5210328a18d02261a07eb607e181b2bab4fa0b59d2df15334152386bf816a984840d2331b7e801171be9c90594"; } - { locale = "rm"; arch = "linux-x86_64"; sha512 = "3e526c9a1a876e5d2c548c9a68803dd11c04c8214e18eb09c0b1c3fb3833f64c8a3362db8083ac5de81c59268439b53effa3bf1c64807fafc874eb8ed9baf188"; } - { locale = "ro"; arch = "linux-i686"; sha512 = "73cf6a18deafb7ba93fd60cba3ba0bb0191471f977c41bac11bf2fd6cc6f7fd7cf2ad125ac5cf168ef577d71dfb0e893e182f39be6ad186ddc642d87c40041a5"; } - { locale = "ro"; arch = "linux-x86_64"; sha512 = "b62c54b8694b4a662c1d336056d404a8d432ba0a3d4f2964b5c5acc0e39b668fd228105e1c4e307bfab1acfa5c3ce223db4229df01866cdbbc7c1ac95e70fe2c"; } - { locale = "ru"; arch = "linux-i686"; sha512 = "6ebd3b3a1f3613905313129cde7cf113bdd777fd0f600496231ba813a95b04309b25016dd69891d31189a93ccad3f87b9c69d54d6219ad39dd38d1181b1f3102"; } - { locale = "ru"; arch = "linux-x86_64"; sha512 = "539a22d13587cdcc21b6f76ff24ccfd1df98cbaaacac802aed46ba8f2bfed27cb2f3e5c146cbd2c3559aaff22297e692030b9612041a05a6bfca08f49bf0d2fb"; } - { locale = "si"; arch = "linux-i686"; sha512 = "bb0d1621f5b9af886fca0ea7cf7fd851d7c22d2d8f279a7b88e9bce98be33ad7b75d6a51ab47ea859802ed39b467815db60409285afaa0bbf4bb1ce6d590eabc"; } - { locale = "si"; arch = "linux-x86_64"; sha512 = "90337d193df7db41a1384856938bb62212952a80144dcc319a725a9b567ffd4deb7bb7af89b57891d3c17499ff466990e656edf7d0b017b8f4e0370aab445477"; } - { locale = "sk"; arch = "linux-i686"; sha512 = "23a15e6ad5ce9b03c218be4e26e603a412de4d870d5f64b599ae511bfc66bf2cf04613cc06fc1a054d06b80435e284456c0b08e33f34d8c9482f5ca23da6ae62"; } - { locale = "sk"; arch = "linux-x86_64"; sha512 = "a86cbed60f65e4ebb36c614d846fbb2515945112fd4f2482c3a63b49a62c3acb310f050dcbd57cc76a808c049eefd8f779d6aeea53362dd81798bb8d7177c86a"; } - { locale = "sl"; arch = "linux-i686"; sha512 = "8ae008f0077081ef40de3bf08c2de294231f41439a83d8a41a485f53e95ba3f4fc6ef03d6ac98e8848c3f3dad290978f1607d8c847f1622bd86b7d38cd0be730"; } - { locale = "sl"; arch = "linux-x86_64"; sha512 = "34efb560c65329c7f3f6b341cc49ac4952f24e6e9b34e7f5bd45d98618a4d03ac89c6f62580223efd2d37db24a03f76a54381d4162f5430b887122bb56eb49d9"; } - { locale = "son"; arch = "linux-i686"; sha512 = "d3e5a25fbc4a786239a7ae543fefb7b7e3ecc34192c8326af915f18b9b08436656bf68faa4953a34bdc464e32305baecce800f91ef0152bb4b4a8323ab448f33"; } - { locale = "son"; arch = "linux-x86_64"; sha512 = "ffee5d1a23e91911fd1dedb5ecf24bfc6b1733fb582e64a5e07d4df4b7afd9a6c502a70ab3af6624b4594f5ddcd81bc8962ede5b693cc035a96a561389f6bfca"; } - { locale = "sq"; arch = "linux-i686"; sha512 = "1cbaf8c32d1d3205cd85127839eed11b416903960c9e411b9adc71c42ba4add47acddd32a9217bb68f27b90d6765892edf2d356e21235c5bfd5cf69d1ee719f9"; } - { locale = "sq"; arch = "linux-x86_64"; sha512 = "16d93961a53ecc3e1ae3480be9e34f2a22dec2bdab55dbd35d1ea79ecf2ee48f195380bd52efc7d39529601610793b75daadeeb54dd76c9a3702c786af25acdd"; } - { locale = "sr"; arch = "linux-i686"; sha512 = "0b2c5234f1787cd972fad398dc270766fbc3015dc1bba29755e5316f207af9f5787d4aa41e96cffd2c9d31c57a5d1896e63fcd04e6235a4a6798469e738fa10d"; } - { locale = "sr"; arch = "linux-x86_64"; sha512 = "e7c7e7ff7fd81ca86f45997faed7244e4d807c3e5ad7ed66d6feb38c3e9173eaf136bd34af690ce28534f0c531c7f1d11595ec6502dfa42778cc19dee4334c49"; } - { locale = "sv-SE"; arch = "linux-i686"; sha512 = "dffb94b0ddb4b9d2effba3894b408c9f191f2079dc4b47e214347a235c9bf1adf77e520465691d14a274c3f3344c7f8b7d41965051d506728347e0af1117ad27"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b601906d28f071c6beb3dbd6b37fa68f50809c9c47c9db69d631127ccc7b784e7d3b278aea6de060b34d83b6c78137da32b77f8e17ed199c3213b89dd9391264"; } - { locale = "ta"; arch = "linux-i686"; sha512 = "1a496470ef8e0899bfce66b41490f54d4d32776eaf60aca8725c4732512f1d3befb2e1fc3b942ebea95fe2359509c43d41649e5f90498264b8e02a3352244260"; } - { locale = "ta"; arch = "linux-x86_64"; sha512 = "00e6dbc43ad3c77693903fe534722094826637698df691b266eb801b27cd5e63502c21ca3e34ff939a7645a1f75d36fce6154626019eb96bc73cc39ab845c952"; } - { locale = "te"; arch = "linux-i686"; sha512 = "70ed539571cadf241f819b68ff24829db32f56287aadab31656fdf66c0ed94ccc6cc11b6cef6e2e963203cda47af2c6032db6e5689c37aaaf495b1e4fa970207"; } - { locale = "te"; arch = "linux-x86_64"; sha512 = "d491acd4635ab9b22f76531740c7ee7a85832678aef9ed646e75f56755c02538440adeea71e9ca5a7a5e11f3f2f6941c3c4c1e47380547179f63baaf6c20ad07"; } - { locale = "th"; arch = "linux-i686"; sha512 = "0414f74c6266fc204f2741b6860f7919c957364bd56ccc2cec5ef4b9c4be812c554ab584e6ce53387e6b7a18ad02991a44d9507a16da59a4aabfd44e7fb5b754"; } - { locale = "th"; arch = "linux-x86_64"; sha512 = "2952cceaecdd4013882150e8158607639e4ab2cffdef563d4fd1a015c41f1eff6c5ac22c0b9301a05ab6f9fef9659d54916275d5a50d97ad43bf69f10da7b3c8"; } - { locale = "tr"; arch = "linux-i686"; sha512 = "c5c6273bae2b9a46108a433af3a85b5cbbba4cd3154ee124ccc49f46c4a76264836a76d1b2da4b1064e9a913cc9fe461911c53e44f40343c5f780be04da932e5"; } - { locale = "tr"; arch = "linux-x86_64"; sha512 = "f0b5bef1ea4b948d699a79d902055d5b31afbe5c4f1814d98cadef1ca820ce39212ec009f68d875860a48942e9d797bda88eec4f6ed591dd8b3b260e04170974"; } - { locale = "uk"; arch = "linux-i686"; sha512 = "3a069ba914716ce122c4a89612988708d811b9350d333aab203dde212527c0e0cc86ec4781e6aa23f40b77f2266f76eca366cf355651870f43e180b97aa25c43"; } - { locale = "uk"; arch = "linux-x86_64"; sha512 = "db7931aa3f1d150e4b5b8c87b9d069df4a515fb2aa5e250b8f8a1bae0d8fd9a210ae949df056c47e3c88e8faf28f2571311ce2d6f179e3365720b42f1335b546"; } - { locale = "uz"; arch = "linux-i686"; sha512 = "110a82749e187f39d77f63b16ad515218e5512e5974916e4145e625a40d797e23fdbb5d110a23f061448cfc3d3c597858636c9304e941a34c68368f749c3c900"; } - { locale = "uz"; arch = "linux-x86_64"; sha512 = "1dbf94cef034449e8d1342822384bf1761dc61748e2d876aec1ac628dd161f92b62da832fe397b2fe4f8a1b82f9adf1c3690f26e07ee3e48c6299f95969533cf"; } - { locale = "vi"; arch = "linux-i686"; sha512 = "af97e1dcfc9bfbdce95a5cd35025b2540ad928d3238863471116e071a51b354b7818577bc3e7427c513e7b335bc1510605ba3ad1a37221389de7c7fedf6e2103"; } - { locale = "vi"; arch = "linux-x86_64"; sha512 = "cc938935395e66ef721fdbb8c8b781ef648b5419393ed1687a116a4d9ae12dd18f2edbc8287235504aa6782bbd6a41f9f5dd89c9c712ed4980fb9fa44f46ef38"; } - { locale = "xh"; arch = "linux-i686"; sha512 = "a76dbac054cdb7f5c194766dc54f215de4cb4cca4aacd7c883e0e3632b9dfc18cc25d7a54788e213bc65c894dd26ca9b863199b55b649133f93da9fed9a58fe4"; } - { locale = "xh"; arch = "linux-x86_64"; sha512 = "cfd8bbb81637c19464ec34788254740e999c13bc8a64b4289b0e1c64f76d711a5a5a8380995271f309444032739066f06334da2f81b6ca2b2be33ff55d3ff402"; } - { locale = "zh-CN"; arch = "linux-i686"; sha512 = "d11637b0c28aa1c45b315322ff12392e133aebe21f435564da278b9e301f0c8515ccb721df2bd55c175c48c3e24934837abbba4b84c9fa659b7a58db1da68f04"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "27a06d87f23eaeec170d1ea7f3df636198bfd4787001e178948fe9b8a3f1aafff3be59b9d01ed5b5851902b550601f061e923a4cda3a972f0ac68928cab28577"; } - { locale = "zh-TW"; arch = "linux-i686"; sha512 = "7c6ef5592b273749ccbf7b37c09984b11722beb7f49d4ed25555b84f0521e0dbac5197c7642ac508a21a1a40c5578dcfb49310858819875cc9407c85426d599a"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "9ccce84a292144f3758190ff2858c077d1e7ec6d49ff5e1efb404b8dfb3bcfebf96eab15d0ec32325e4d96d94f4c6bcc67f4e43dd22af418b822d82a2afaf6f1"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ach/firefox-47.0.1.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "a5391e45d1e59a7c14d8d421286033e3e760bf2b4afddfec3d1767b2ebc957b053c39f17f8185a6c9ca2542c76f6c9612d95d474c01bd5ecc62e5d4f4e43e8df"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ach/firefox-47.0.1.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "48681328033b694adfc6149bd965a3dff90ef014db6f65641ddd3d79ba7901604623735555bad024dc2425f226c65e332a0875d6b18fe1c06b18a1e407b70294"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/af/firefox-47.0.1.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "7757ba99ce9991f67a45d9a19615a93c0a1bf0e35d35c5fe653f04d47c068054c8d91327641a48cd20fb9531cd1e842066c0e6f2dd8b23bff216a9fc727ec84d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/af/firefox-47.0.1.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "7e3d70da29aeb5fc81f5e6dc52a4b8f831813f8c025b1a105df631cc5b675905c82dae842459ad30c5257b74bd5654e9aec5dcfcdee93eb42443c45cda81138e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/an/firefox-47.0.1.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "1051e1e3a6c25ba6b3aa4ce5adfdc60bcb3c612f3facd5edb702385ea8c0837cc53e95b064a424e0c055a56a11f3a54a7ba37e2ef35045c8cbb834aaec0f6327"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/an/firefox-47.0.1.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "27fb75ce402c0d47f8542d3d6d6992587e6ea0caaba2249e763f0f9c4f1d233b37a4b87ebb7e730d16704c7d2abab690660e409e721850875fc09deb0c433252"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ar/firefox-47.0.1.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "296e23fff265bcc08ec0f81608d50428181163d216fd896c80a1a8c31e95f243112aeedf3bbd96b1efbaa1d6d576a9bfc75e5fe8df434cbb74bb9576f7d90a83"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ar/firefox-47.0.1.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "15f0e7cbf5a98ffa9d2d7befcb11938b76194dff29b1d93ddcbb8f5c655ef33659534874a72aea18f98af06e5fa4392aee5412582ef43292d70603dff2c42c60"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/as/firefox-47.0.1.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "67883c8cb7ffb6c05288b316b2aa5bc3274372dd82ab4c771fcf1e5a968e550d12c89027440704d8479a906beeef24a18ca72ad243628a5ece45918ed990c793"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/as/firefox-47.0.1.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "f7718b0dc9bcbfd109591f87263d7791dcd7612b0312d0bf93e68b1f2014d3732dc6740c57a8e64dfc1af7946da14dde617945e38842eb19cfe39376cb12ad44"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ast/firefox-47.0.1.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "f29b883932752bfa947c48f7c1ff6084b1cf215ea84cf63beaea808702b0b90f50e85aa4cefa4d2c1234b0d366c8f6e3d8fdf7a0f92d432cba790adab6d24174"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ast/firefox-47.0.1.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "8b656c6b08640c125b94f90e1dc8259c90af2e764cee73b02b9dc3c0246b3195906d9208bc2a6b3ca31091d8cdfca8338fa6c489b7caa5685a23133e98847a39"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/az/firefox-47.0.1.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "5ee1247e37964274bbea8021c8e4e5116fedca95712fbd91d709c5c580bd1618c6319cae73278b2f0ba82031e94bd3fb382d2b4dcfc9a5d7ad47ecd80f4fca43"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/az/firefox-47.0.1.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "c369046c29dd0dfcf40e69e1f5b5a63423833a376d2b143d3fbf2ee1e23dedb3baf24843ba1178bda94b86f357724898a147d4adfac1e469cbf44166d7ffd16c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/be/firefox-47.0.1.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "f8a1ab05b8d25a7a30e755a551f0851a308ba0720180685f6946a510363988717f8274ac2c8ef826c60232a62c394b86829d289e7d74e24b7656b55238129b15"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/be/firefox-47.0.1.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "df05271371de5fa25ec11164eaac0b253bc892749d421a6ca730dfeceb4ef89492c42ce83a87eccbe91cb03ab001bf0a1d9a20a7296b69841cab8c6b5d2acc36"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bg/firefox-47.0.1.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "80644b86f9296b708e74843a51f81d368e3508f0f2f74de1a998d30a15f6e3af08ffd70dcc5c79adb76c03be9ff4713fc8403b8433cbc33ca3493941c4fb2fe0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bg/firefox-47.0.1.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "0e6cdc5b3cc706031c95a550b0c800c9e8e2d7bf241010c22f0872eca4bab018a5f0d4a94abb4f8291c279476700f2101a69ac0c57ae79994fba38b88b00fddb"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bn-BD/firefox-47.0.1.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "4c697f1dcd68634e2ab712d4f2415e57cf8be0017fff3602223d8af19a1f3a5c973489d13951baaab95924fad42212a485fdff622d2b559be36e246c8a847b67"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bn-BD/firefox-47.0.1.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1931035a9d92dd9246a00b32443e282dc405096407a4feff7856125b7ee156840114c9be0dd58a020c250fa54c4ccb22052d2be291eeec9b5f76303fdf6c4cc5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bn-IN/firefox-47.0.1.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "fbab6f7e4205c803a50990624d58aa80cfd3aa76fed02cbf9ea390f4ecdcc1a97bda9b51791cec49f2a7e1010109d5f81a1c9b6ac224f1f70df49407df5f7386"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bn-IN/firefox-47.0.1.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "c705ec8356796060c6782261086011bc0bf3ac9f08bc821ce2305c9aac11c522abb802a9d9ab7dcb53b0d38468bb6e667d45b187355d769acb43a8b252c4f400"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/br/firefox-47.0.1.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "c58cd77139a0ae7f3bb8f6f25c40856aca18a831c8f5d6f5d59a45ec615420bd55205093fb66a77591835b0d9493f774b1801a168b9c071086d510a1446cc914"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/br/firefox-47.0.1.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "b6bde26d478eac081007ef43a6d588f70dc4d54afc423b019468dc91bfcb117d3b4989c4cbb4cf77a1a11847a58ec74fbf822b6e6f0ef86fdb0065c301294850"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bs/firefox-47.0.1.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "16ee40d079996f42be77167b73645d389045648c9d36b76e34d0398c7b5b6dee54712d109f93d054236ac7076fc3edb06ee82acae40ad22825a23d92d0e2c636"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bs/firefox-47.0.1.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "ef674f409df5c32fe4584f9de65cc6558d6b3ec78d8a83f5cec829bc1ae09f30399567915e32584334704d12264c2592fecc9e4952beabc8b0d4eb49a7186854"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ca/firefox-47.0.1.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "fe522bd836c82cb68bb21ad1c7f36bd9a7af1642abf7c035e2d0999b4cc07c58124e4d8de81344598036159102ee12f22c12e44a8a087e54d6c661c3f453b63e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ca/firefox-47.0.1.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "b618da984d35fbde3819d101c103d8d9a5a4de98f0e254c67e894656019ebb6adc56e14a57410a61430d9aa9c1e0a01339b39a5272164af372544f27329a1644"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cak/firefox-47.0.1.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "82659aa2fbd091224aef6800b3df1d2e5141b6a295918e4fc4ea09b671184f62c670e3dedd7040b2f167581b0c8a0e8799d861256b273b01b2455d0937722273"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cak/firefox-47.0.1.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "a507cff511c6337f805a27c0f73548342d2fb2cffa683874d66b054b844b17c354cc6da5c3d15618006c2279099b0cd9172b17d9d4b21a3863b5e395db686b22"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cs/firefox-47.0.1.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "9af91acffc2beeb53280a6cbd21656a91a686c03342fad90dd91314c49535acef1a8abac8fe54bcfc250ca8b8f07e3550c890094f3bcee6baece983cec68bd8a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cs/firefox-47.0.1.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "c8bea48dc11c021fff9df5ee1a67a6b6e9193ffb2a07e17014d7448254d8a8f4d1512f862ea73bf84dc15b40edbba3fd94cd3d2d18872255bbfc7fa9a7b8ec29"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cy/firefox-47.0.1.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "7cc062c3b9b4bbfd0b1f7247f06505ae99458514b607d4d9062836085798bab7ade6c4d1c8903b1b961243c6fb6adb4c4f94780f1194f745cf62d786e2c4f5c6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cy/firefox-47.0.1.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "abafa600b941e17f8aea0e778a937f5fb34cbc8803c93e59febc5d9fde6ad3347ba0bc7aa07ab57a61f6b9d6b11d582b987100364aa8401bca539dc6e14584e3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/da/firefox-47.0.1.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "d4a9141779f52b78a51b9682b6b44e5ccffdecf5582358ab8a02efe133d9a52023e03c238e106a79e41a8aeaabcc58e0757c1af66837768e7bf4732f26182915"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/da/firefox-47.0.1.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "48f0c48aa273cec9830bf806330c7a630185262838007628acad904a45b3186450a8973938c36db636bdef9042c78ce94a4a456e1682ef561abaabab6ac20863"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/de/firefox-47.0.1.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "01675b3a8ecfa10da1d101cba36295b226b130e1cdb2c760541cd76c9b21436ae84ca7228e063402b1ca2eb59acadcac7720c9dd47db8b406675fb273af206c6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/de/firefox-47.0.1.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "6a7ef802a8109f58504b2accb9ef0ee38986f6c8980e0831c30b470f2ee768169557cdbde1a58d7c72996b27596e553185ded476cecdd7114b75d82428b7846e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/dsb/firefox-47.0.1.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "55528fca4d276b2b0430949686845e3d7d88975129c9a9846408f758b4f9c8f154425db891e5c1930197e36137d6c15ba29de90dad624bad23090015849d0ab5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/dsb/firefox-47.0.1.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "f21c14a57f6f973be824340fcd417ce03765d5826114462f62adbd933661bccbfbe90b66935083619c62d48401c511830574ccc373ca2110093b06fad59734ff"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/el/firefox-47.0.1.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "ac5a808db1ba68286a7199eef33794f7aeeafa26e97a20738fb21be479462bcaeb1e8a7995720d5c7dcaadd0cebe91bb2a3e019873d0cf74f42838f7d5c1a427"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/el/firefox-47.0.1.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "c02e6587d99fc3ca66debe854c778a8b3dbf9b514e6ed74fa15e3035a54643b2bc324ff59f1705c6bd392c37ad1996f80dbabbb57df10aff954ed0ff3f5b01d5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-GB/firefox-47.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "c458c70db0408d627a904781adc9af18011f243689f4c5a606c8f1508b4e9417a8df499673c4ba56d32ea77d0f79ab85ff88852f7c518e7fd124e5970615b2f9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-GB/firefox-47.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "28ccaebc4f7613d7ea8c3b47504923f2d59bdf4afd6e386a67dcb6b6923a9374c1c783e4f904da0b6e0f716ec87a046fc12f3781b732389d1d680745d6955c58"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-US/firefox-47.0.1.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "e1ea34bd0829656c04c471b66d2013fc07cbd5cf40b47bf3a932326cca71f9a502c52d1d5e6dd902d274d307079475b0e75d7ff552fcb2fadf31b2883efba79e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-US/firefox-47.0.1.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "a56b2ad26df424f008d96968a4e6a10406694b33f42d962f19dff1a0bcdf261bca5dd0e5c6f3af32d892c3268da5ebee8ce182090f04f8480d37d232ccd23b9f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-ZA/firefox-47.0.1.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "d5efc3d4e624f34c81df068f4d6c184cb8a63ad0667695e9ce7099e069b23715eb77cf2004adee41bf355452179959e5ef7450f167f87be70339abb4cf70844a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-ZA/firefox-47.0.1.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "859730132549691b61e936813f0f5fd3e62f3ef6fa9899e3f68bd3178b7438b4c6b49f54f00d4898b568d6abccdd55a0f9fc6c51858e95735fefcc13de460d73"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/eo/firefox-47.0.1.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "8ef290bf1eb3504ace393b32c2da64d14435edc327c4f13a40cd925efaf7e042a03b6877689b3f2290f85625410a4e48dfb2cf676f138fdba87ffc597b25f4b6"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/eo/firefox-47.0.1.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "7d6167749d2a57a9c12180302a825fee14555e9050b6be3c83dd35183678bc36e10391cedcc864ca0dd96d297997a68627dc4fc1a9cd8922e789dcfa814f18eb"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-AR/firefox-47.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "07768e3b3ed903f4327881a132f192a65842a376eeca6d10ec0de69fefb4ddf3d7fee2a704bbc8d229c78556478814d9e53940cca9edee58270d9790d6b76998"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-AR/firefox-47.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cac021af09abd742273dc77291fb1528dd5d6d38cef3a5e36e615fbb9f3908655fdc96ceb93fd131c4879acf24e702a044471136e7575f3b550ebcecd982047e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-CL/firefox-47.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "e92ce6bec5b1ee8cf3db0a604eb4cae6245fb6d04a48eec64b6dd55139f3606cbbcb65511e29a3164d6572929b7216afbaa7f034a2191eba100ecb7403740504"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-CL/firefox-47.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "98e57146481a53061c0b30872290ecabc2d14c73805a9461d82aaaf4cf9f301521fd55b01c8159c09a56f52a1580d83c9527986b1390f496d0fbd11227216e7f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-ES/firefox-47.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "c44df66e140ea9190112f89aedff9519b6bee18f5e2b54aea19acd233e623c299aecf134cdba70d366fcaf6b7795d220052ff75409c7a04394a7aa02d9ea708e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-ES/firefox-47.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "c2d70bc5a304df7b2484c8fb2b374f8e31a69049eb223a53dbd0e4b51e4ccce907efb1674eb637370ce7c3947ba5c09e65f433d10e0f328b80d482f3de9cae12"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-MX/firefox-47.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "96dcb75cffeb85b85f092e295e38ee55c272714c40609ca90cfaac5fa0cfdb3efe8e993319ee690b4a7938c42346bf39f063ab1f3db606e743c1e4720de5a93f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-MX/firefox-47.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "60b50d6726b2e1985564bc02263eb88c9b4c1bb39e6d19812ecc6751d6ad223ba04f65a7755a946fb15dceab90628b057bda89c55fdd4972604586f52c5a4b1c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/et/firefox-47.0.1.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "0a4bef2277f729c93db413b68f8263eb356f7b3278880574b8ebe010e2db9067b803967e1f0d6912f128a9ad5ef204466f52ae277f3addfb8fe9ac377c3b8a3a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/et/firefox-47.0.1.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "ed1bd4fd67262958601f1107edc589bb28e9b7f9faf0edebdcaf0c07ec6007f527a9eab434582a65271a8f68edac8178601da54eab9398f48b31126657a21b0b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/eu/firefox-47.0.1.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "8c5c9406345e2a1fca3544aeb742dc0d254c804d887e3614613280c050a63b69320d4488b017ee16b0a2a07bea862e8b245baf7edc9df65689d509986f3c5958"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/eu/firefox-47.0.1.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "d8f7004e24033f377391b577c549b66f73cf0e899ce5f580eaccd07713ec03b4362db7b222ce6345d113641d3e6a951302939bbb155c47ec0fa46a201a631427"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fa/firefox-47.0.1.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "f4e02737e20b6ffd3bc2b3a5e5fa59fc80a8e37dc8459ad4a6b99e7621a4d3f360884915f7136dc201830efe371de37977ef3e27f34f84e2cb734c1fff8f6e36"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fa/firefox-47.0.1.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "8f624b066faa39341b750dbb702dd60ee6ad75b3850c659dac2e21969ebed1f792423e9fb0a9cae7fc456943020f9a0155af5d7c596433eedaaa9990ce07b7d4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ff/firefox-47.0.1.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "22a2c5376b1e8d770659475085d98ac1f1020cd816ff3ec6ccfcd68f2484b1b0dc25bb84ca52f4ad27144f4da356ce5e7fd54411d12ae7c852064509470d5828"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ff/firefox-47.0.1.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "bcb3dabc250045b8ad444219055fd9d14902296ef3f9c320bec1bef940f84eeb0d4a50249805188ae96ed0288a70f0216350ee79191beba49aeba890ae515b41"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fi/firefox-47.0.1.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "0c505a0e1d3030038b61ea159eece3892bcc7d947b6d7010c0be8791525c9d91ad1170d4cb45260584c93a78a4bc831b7acd9f28e95ae62e5b96b31745dcbe50"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fi/firefox-47.0.1.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "f347cde005c6b61366c633db5a8cbc5260dfa0d68230a938d847e3f80bff2f1bed09dddded7b1728f4ef9525610ecd046743f9e71eefb467943fe6b72ed198ca"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fr/firefox-47.0.1.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "8fb8ea2eab82740657a6b822b330fa0c289c31ad900683b4ad07b1e9b0c6c4e14f50af39d6d0f787642010628800b0a99b5ab0c4cad62e4a579390509b1ddd13"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fr/firefox-47.0.1.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "ae79c5b7f9f8305c3631f4f913baa341a9beaa7a2ee5df1c6c1826030c21bf22b92095ee579affb8911110bf3bcc359793c0beca18d4c32b1fcc1f3d1dbcc4b9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fy-NL/firefox-47.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "1c57d02fdc33ff53de48ed9aa9e89ecd5a56d35b432d5651e71bbfbd5f9dfd18aeaf14d10b881f72df871afd00a12b31ff05cf9d5c5a55cd44a92c7a0156523d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fy-NL/firefox-47.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f30f59d630c5d289b61dc7440f7bbb976eb16732370f827365a477090cdf9f2859f39afb7ff9d9be7e8a022f181f2aeb7a3005c00f4c14e6505a28db7ae48a9a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ga-IE/firefox-47.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "739d5feec4bffee67876227f6783d35675f4c0d168b7abbe5f97b6e8edce7fe4b8f04f8240087f7f208db4180f3417997b661c93ebe046decff3f4f4fecac839"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ga-IE/firefox-47.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "cb4344df6e07db839ce8c9fffd1b7b310c8108b5218cea3602972806c1a40f56bf1355ede4cb3595f54179b16e3470e25bfbddc8e39d726c7d6c1e99d128ca8b"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gd/firefox-47.0.1.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "91004d62bb5f1f6a1d65b35fee9e594d21d9877669e042cb4c9a834b01b35797363e1433a9ce5a8d0a9f64c8b256da6a6d09fa3342b74b7c2af8ce8afb3e4e56"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gd/firefox-47.0.1.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "f04034cafed25c34713ffe4109e53b107b8fe81321c0c0c035f54ff0ce67ac393b42db7598edc658d3f026e447f9ff1c4d1cfdedd31066eefb6019117248e4c0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gl/firefox-47.0.1.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "107bdebb92ce86f39cdc45d6bb24a9c4d104820eca6bb77950693ccbd55e7f8a2f143fc3a5bbb1bfda161e7a33c8f6d8d2686b09da1497215defbca2b4e4e109"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gl/firefox-47.0.1.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "c841af5c73343475150b5404b4b54396bda845aa5b231a742aa17ecb7fdbbc5cd4123efc3ac2ede1c24f485d04bd87e8bf7cb00b7135bef236ce56afa0c27a19"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gn/firefox-47.0.1.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "20954e218967772488bd895ebf069522c3f4c56ebfa09a7c8efb740158cb95b6be76cee8f4d7f2c1c6c505ca9071a0ddc1914784a54f669d337d5196f18b6f4a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gn/firefox-47.0.1.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "aaed68f13e326792671669883b452b65556998ed757ed5b745c6453d6bae8865a06f137709de37ace2688e2e09f1b96ecf2e5b6374b4170d29100c6f83ce22ce"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gu-IN/firefox-47.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "205093ecc0dfcddb2b90e05b1a17f75805a4597bbfad214d67442fd0d952f765b031ba63a3c399ba9c1c46e4d05b3cf786f01c46eb8990240a16431964c93a94"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gu-IN/firefox-47.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a84ec5015f6922a22a284eaca985010586067370d818e77d401b58782f86dcf2f534f1ef021719c170f1f502525ce25c94760d3b75481c15fade3c25b969b563"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/he/firefox-47.0.1.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "5727fc4699316c4b34be1c2596c5cc20d5fc9d2062b1e106087cdb34b788fe3ebbc098acc8c690bc83c9d9be59ac3b3977fd9116d766ce908aa088660fe34771"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/he/firefox-47.0.1.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "c399969bc24b10ca1c1eff17d3414f214cfe3e5b73282942ead5b2ba4d2c58b74d665b13031ccf42956cd45f0fc7b206dd2f9674103c1e3a8861a33577b5caa7"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hi-IN/firefox-47.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "f014c47a143d425aa3452be2bbed199a8b5e75d278c35fa86bb6bcac40bfb32bdee22d030386c881c818b465451b35c81f97bf29f9ccfbea606d52c822057899"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hi-IN/firefox-47.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "0e5dc0970680886dc02448d7118b6864092699fe44f3276ca17cba160aee59418f8e39338247897b118de0e1fb7634cf725ddc6a34a8b6f002b7a78d92deffb0"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hr/firefox-47.0.1.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "a9af43f6cf6f493f728b8942d3a600f3cb3a23eb0818d284ddabb8766f7d274aa0a232f9925b65625bb56d00864946dc6b0567491cbecdd6a7cf626b6964d9b1"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hr/firefox-47.0.1.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "d97951148ca0ba80a67020f323859ea3f508e40906ecfd18f7a8fbe7a2bc85ea4635945b5c6063e1d5d18456471604075e6767da9a4fda6a09dd3e992a7d3a88"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hsb/firefox-47.0.1.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "2f7adccdc894f345e861b29a6d65909b1cde2649c69ec9223f784e659e8e3f4668f815b3683fe691de0749483167d26885a0199bee88e8524377c7eee3afbe99"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hsb/firefox-47.0.1.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "70e39341ede01e18c653a0eb56b48e31c73ee3df54ebc11bcd220e2d8e19c67c3e248095c4d070b12a0eac5c24acf5a8ad83069673dcaa684229f4706103685e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hu/firefox-47.0.1.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "1fc01c6dd873e2194e6196b1bdb0246e95d0b0520f558b21a2052251d2a5202141c09410c4631b3f025479169d8f68411c2a24f32825261fa8d65696fc7cbe0f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hu/firefox-47.0.1.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "b4509d671d7eac055812add85ae571f52c90b4eeb172d21c22ce844c70192ba235f37a732e94a0edd6794ecd5a8caa5e8bb6ce05a26d3705902d3628420af871"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hy-AM/firefox-47.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "a2b7cd1ec95a0b5eb064e816cfcfc6a74a92806772592947267c4b266bf7ce77d1beb17a7c25b905251cf497ca8dfabf16bca367cf6d9e9e635182f306bd71ca"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hy-AM/firefox-47.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "9997ca45051e609e289d7730caf1254adacefbf8e618a165750d5bb7ff7933d014781af76501296c89a4236fd3ac477df6e6be5a5dd45f214983c851a856ce5a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/id/firefox-47.0.1.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "bda5a7c599885bef966daa35a3f34297e38534e32967142ff9cc720a34c7aa9730e3f24623c240637838eca03f78f9b2ee30af3ac3dc8ba48f9664c56b64c789"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/id/firefox-47.0.1.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "97d16c5b4382c7fc6ccee416d671e47d345834a44ab111aa486a41c756b25eb894628d0128e8454fc15f38937bc40436b12e60752ce7b7c1fe35a230abaca337"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/is/firefox-47.0.1.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "576b904fb836ea735f652c6b9c91891dee164edd3523c5f99d68cccb4bd6689c29e4c579b6cc44e699a8900101fb8d223f9e0b0860f71a2814ae0ee2c70609e5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/is/firefox-47.0.1.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "592d65977c34c6133f5745a85722f822efa5956bafc6e880954a0b318fa59712c754e882768755fc08f5e08a1c99493c0b30b4219c46169ba663258e3fd3f3fc"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/it/firefox-47.0.1.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "4d749e1b5d8432df789f29a247ab48a688d4aa16fb25dcf7209783c6036bfccb9ff8ac32dcd09dab1708f71896fa034576d6048eef077d1a6c0a3dc58d3cdb26"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/it/firefox-47.0.1.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "087c456d691225d9aef54b2013af69cc7bf2501f83060179112e9c40c1d6762202f68e6329a936df091a1ae6aa5f20bcc96a4c8b0451b71270426bddfb45d15c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ja/firefox-47.0.1.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "cb4b0bbff7d322f2f04fdaa50b365d4e0a1ff1786206539cd124870ebd69a9305b88d39b9fbed41c64ddbe68098e02c51a0dc665262424f8eff882b1497ea1fd"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ja/firefox-47.0.1.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "b6c9b419a3e746957f93a4bdba9043adc3911b6f76e1eea2e4e31e77e9aa9057ce720205db4af5586a90df4d6b774b90829f1d7689e77c560c50ccae755400b9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/kk/firefox-47.0.1.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "ae7711d86ce8180997f44f9309a63a436bd8b70ed0dccda773c34ba816daae99b3b1ae913ee87f4d1f9a4e8f016aea670e89652823df16b5e8414bb58ac28225"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/kk/firefox-47.0.1.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "49fb6b5ab6aa12535373927519bf36099da6fab7c2e1bcd6f5ce73d91679f58e81eddd3556df65b305fc2d1cd439cf6de081980fa98ff79df16b620ed41290fd"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/km/firefox-47.0.1.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "29dd1808c1430c01dbb395d5e5a833bfbde85453278d4efd32f1afa1eac19a651c0c3a42eb4ba3402f56a8492e80746d753986c0ec0f1a6dc0e5eb6778b5c6ae"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/km/firefox-47.0.1.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "f53966aed30b57a601152f09a26414e11bff4ff31683989eb1e47546eaa32fce8cbb6511043f9753cae076d23d6f2172c2b224313cf5f3262f109b49119175e5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/kn/firefox-47.0.1.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "17dc37df2b3d5a87bbadc4d5c80d4ddff03752b7a80f5c76171ce9f0bc4b8926964b6315cd4f0c6c9dd3142cec56b464503bde34ec3c69e2b8a66ddcae72b0ec"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/kn/firefox-47.0.1.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "2af5ac5c254bd0ed2d08656a6fee7966d73aa89973cfad67fd18d7d88fd1f18a2b882de7854af46a3ebc6acba4cceacc06942db7ae495faa2c6ef21c65e94158"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ko/firefox-47.0.1.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "415fc260f3dcc2ede6c43194501d9522fdfb106f7c86e5d8f5929df6615c73023fffc3efd190deb68bf08bb2a0d4ab34f7605e222301c8350b980f2dbc289c8a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ko/firefox-47.0.1.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "c991c0b9a89b618ac046882b929fd7e3689e19dd96edf4535b25f9172b6baaa801a4490ae4fd35e82ca3c776afab74a0a09b993f8ae8c2a603d210f2cf248f73"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lij/firefox-47.0.1.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "3cd367654397d14b782cea4ef8c96f1f6938f011576a8dba92dd4ca832ca3c8682f3e0e161a4288b112fca550d556080d0ece5a79e4c4f6ec99a9298feb6fa12"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lij/firefox-47.0.1.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "2d7475c544df807a956feb9361f889ba0f5e43dc52a9e1dc9c469d86e97f344b4f2995e3fa149a77662969f3acbcc998f430973b2b9d28b23c82c5058b4a9dfc"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lt/firefox-47.0.1.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "35c8a452ca845576739d5faa9dab6f3c34dcecf9ce95870f68699836f3534b4807c91fbe80007950abbbca662e6d01b406205b3e4cdf4d33e0717ea5d6f57006"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lt/firefox-47.0.1.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "8791df09d841d5ddabd552d0fb0dc7e9446d23092bae1010d92bc3b056a9ad4a6dad01c5d8db531a273945eaaf4c30c922cd03d7b17e1b6be263e0bcb91b8384"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lv/firefox-47.0.1.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "22b865a344a46096c53a72ff6b1402d00808bb3b49ecabe6f4115ea60e40e522d64afc701648772616fcb784a963bc6d5bb3f89517d7f8407f22fa82d81bad98"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lv/firefox-47.0.1.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "3c66af306b1a8d0a684c12511d95353c0bdda0bea981ce4e577c928be03e12b582b19dcaccdccec551b3cb0fb716323b1079180aa7a8f1204f5e4b5a84b72831"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mai/firefox-47.0.1.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "780fe423a3cd56a7452df32679ee07a0e328b21cadc78faa2721cec59185c4a4467aeeb75e9237cc86d38dfa2cd71530f02156c4fb9515582ca564dd53d47543"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mai/firefox-47.0.1.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "d27218b59edf004dc57cfa9ffd70dbeb59b7d3c0871b00388a56b505629fd82ddd6f6e0147f5b4c67a8ad72a674e384b66ba2f9455fa9ff218c9ada4b27d1d7d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mk/firefox-47.0.1.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "da7ae3718f3c69ec9b62aaaea93951375d82d8d02818d6855fa9f085a64b69c155a1336585d786ae2d33d657110b787f62909dc9e4d54c62d2ea94d2fa8fee3e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mk/firefox-47.0.1.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "95136f8bf86014a63bcbf4a5cfbd778c4c7e6a84618aa0f6a6948bb597638569b3702e0569b50c5dc9b46339e723377faea8964b921ae9802043fb7983a2c4e4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ml/firefox-47.0.1.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "56743acb54283715fb2a910caa85dda61f7e2c1c5e012aa222dc07e3b522572500056fddf990b7ef03a175ff8901fb11b113bcad5c2adf4a6e6e032644ccca2f"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ml/firefox-47.0.1.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "134f35f5f6616c2a7eec48f637277fc02e23b57bf38eccff9777bb08c70a41fe79967b69567f75f9c8bcbad4b22d2ddaf16bec98e399c4b8ca9db9b70e99ef58"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mr/firefox-47.0.1.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "f29de7ae7dba03465baf86f93d778c9faf3055d50295977c0207c7e4daae6f7ad733ed38e1323263cebe4f737d9a1616024333a97139156470de1a9fe3c16276"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mr/firefox-47.0.1.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "731b4f143fd1303ab54ea3f1b6aca6c4f78ce935caae32fed0b8cdcd46c0ade8c8977131a3be786ea929a7d284c3d45d34851a0d81242761f722f0bceb126957"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ms/firefox-47.0.1.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "d372bac105f2012b189efedc449c7c183d0daf64cd7a40822ef9d685ce4a1550ca9699620440dd198b13f95513a577766e9f1a8e88b212492831bf7ffcac7e0a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ms/firefox-47.0.1.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "1287f36a742fa834d5f31e6bc2f6d3651e54f2bc8845a1f0f647e9a9e38ba66c58138961185897c8832107cffff06167a35dc3ee1f0ff830f997f65fb0854a63"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nb-NO/firefox-47.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "ac3e46080e188e56a6b67ff77aeffdba7982d7c3aa4156a6f2781ef6b8fe63cac50d678e5afc91aca4ad16c4384d2b2727f74ddc4083da91a1e3590ac98ec9d2"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nb-NO/firefox-47.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dca52381e45b5c2d89f590971d830010a9ec1a2a513fe655ee93c3fbd980adcea78787701595a95402bdb660c2f3e0a489e001deba13798337493655798c713a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nl/firefox-47.0.1.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "6ec01f8eb18384aadb5715a996c8410ffa94b801ee1f1b1ab43bdeb492e179e781e8b85acbeff4a25cb4fef847ce3e2335968458d9f6e47d046083264e91f6f7"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nl/firefox-47.0.1.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "7d5840518312dd167d914a8f7fa5670fe17f9a6fc39ccd128e30f689005b35bd352d0602993713c3d05288f2b036829be8e08398d536e4aebf2341ae2290e633"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nn-NO/firefox-47.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "a185f7592649a91214363cf2a0474b5895f33342c98cd4bdc48fafb0cc76310b2ba4f46575970d723c76b2ecfeba8e2b39d9671e6059a15bcb2565258096156c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nn-NO/firefox-47.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "7f8e7277bcbfbe5f40c161f1ebbeed86159c2b6205a5ea55cd8b6253fa6742bcfede11d4de6c1aba36e2b1e98f9c9a7b8e26f9aa35e1eaadc1d011636d429be3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/or/firefox-47.0.1.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "a543a7d3f4e24364be7e4df65a81da82d955d1268a4cbce741ad7ddd5f4e9916573e271f02af1e92b123a4da2c7f312c17f6ce714e3057a1b204484ef12133d8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/or/firefox-47.0.1.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "7672596470cd8f49f9c4558b05bd637af1650da729bc518681a8cde3ec785358121fa7ef209e123fca4b59df1a63878832bc32d2ff404b5d2a818b60ba10c15e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pa-IN/firefox-47.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "a99b60ae1eb479e31f838fd41d5de325c418762fdcfa5e0f3bc3d5da8df108d3b64ce5bfac0af09663007becf5327164db8dea0ea7a3876586cc43030a780199"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pa-IN/firefox-47.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "f0110b74842f924808f74979061151fec711d10a6005d2da2fbb8d46fa2a25ecd5a2c804e58c10a918efe570d4d67d05578b0245f526e1aede4bbc786e9f304e"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pl/firefox-47.0.1.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "7eaa2bad351429d76b476819a1529ed1609388968327382cc13df235a294f2e9fb14295341ff15fe3b2815ffd1c6c8978e2aa104a847fd2cb4adcf2ae3b0b974"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pl/firefox-47.0.1.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "a40e2c15cff0e7f7bff8a5c0bc4cf39df948a21bd37b34ffc93dd87e1f5256526a25526e457fcfd8d081bc872dc1bec13e67da3cf671b6a16dfa17850be4743c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pt-BR/firefox-47.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "c9cd96e68fa2e1f73a49e71c287a25be8d45a8ebb56262e02c40ba5869fc58c7fc43a1f6958592bb377e7dd4064d64f5ebcbcb5cd3a9fe0a007c2da665f50a66"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pt-BR/firefox-47.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "1184751c1d1a0a9044f8df2d20aee7dfe332dc5f851802ebaf2c5c83fa2bcccfd913cb6e16d2baa449cff1b02aa18f828489914c0741a2ef2a46d54fefecc268"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pt-PT/firefox-47.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "86538057ae91b1297acc11c9bf3f7d24ba1950edead89d4733f7c898cf53e3848054bf391a975f19766b69f4c56f576ca54e4b8da806db7416f3e3d91777c3c3"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pt-PT/firefox-47.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "0a480c26e5dfe2bb9b536e122ae32e18a6dac999004493839cb506c1ad615e095c554d296f1a77bfccbbb86b58bcf549db83f7de51d02b68d1eb752b421f23cc"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/rm/firefox-47.0.1.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "751ffe931cd60296490c7164f49f61f4a51bac5210328a18d02261a07eb607e181b2bab4fa0b59d2df15334152386bf816a984840d2331b7e801171be9c90594"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/rm/firefox-47.0.1.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "3e526c9a1a876e5d2c548c9a68803dd11c04c8214e18eb09c0b1c3fb3833f64c8a3362db8083ac5de81c59268439b53effa3bf1c64807fafc874eb8ed9baf188"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ro/firefox-47.0.1.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "73cf6a18deafb7ba93fd60cba3ba0bb0191471f977c41bac11bf2fd6cc6f7fd7cf2ad125ac5cf168ef577d71dfb0e893e182f39be6ad186ddc642d87c40041a5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ro/firefox-47.0.1.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "b62c54b8694b4a662c1d336056d404a8d432ba0a3d4f2964b5c5acc0e39b668fd228105e1c4e307bfab1acfa5c3ce223db4229df01866cdbbc7c1ac95e70fe2c"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ru/firefox-47.0.1.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "6ebd3b3a1f3613905313129cde7cf113bdd777fd0f600496231ba813a95b04309b25016dd69891d31189a93ccad3f87b9c69d54d6219ad39dd38d1181b1f3102"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ru/firefox-47.0.1.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "539a22d13587cdcc21b6f76ff24ccfd1df98cbaaacac802aed46ba8f2bfed27cb2f3e5c146cbd2c3559aaff22297e692030b9612041a05a6bfca08f49bf0d2fb"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/si/firefox-47.0.1.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "bb0d1621f5b9af886fca0ea7cf7fd851d7c22d2d8f279a7b88e9bce98be33ad7b75d6a51ab47ea859802ed39b467815db60409285afaa0bbf4bb1ce6d590eabc"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/si/firefox-47.0.1.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "90337d193df7db41a1384856938bb62212952a80144dcc319a725a9b567ffd4deb7bb7af89b57891d3c17499ff466990e656edf7d0b017b8f4e0370aab445477"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sk/firefox-47.0.1.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "23a15e6ad5ce9b03c218be4e26e603a412de4d870d5f64b599ae511bfc66bf2cf04613cc06fc1a054d06b80435e284456c0b08e33f34d8c9482f5ca23da6ae62"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sk/firefox-47.0.1.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "a86cbed60f65e4ebb36c614d846fbb2515945112fd4f2482c3a63b49a62c3acb310f050dcbd57cc76a808c049eefd8f779d6aeea53362dd81798bb8d7177c86a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sl/firefox-47.0.1.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "8ae008f0077081ef40de3bf08c2de294231f41439a83d8a41a485f53e95ba3f4fc6ef03d6ac98e8848c3f3dad290978f1607d8c847f1622bd86b7d38cd0be730"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sl/firefox-47.0.1.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "34efb560c65329c7f3f6b341cc49ac4952f24e6e9b34e7f5bd45d98618a4d03ac89c6f62580223efd2d37db24a03f76a54381d4162f5430b887122bb56eb49d9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/son/firefox-47.0.1.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "d3e5a25fbc4a786239a7ae543fefb7b7e3ecc34192c8326af915f18b9b08436656bf68faa4953a34bdc464e32305baecce800f91ef0152bb4b4a8323ab448f33"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/son/firefox-47.0.1.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "ffee5d1a23e91911fd1dedb5ecf24bfc6b1733fb582e64a5e07d4df4b7afd9a6c502a70ab3af6624b4594f5ddcd81bc8962ede5b693cc035a96a561389f6bfca"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sq/firefox-47.0.1.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "1cbaf8c32d1d3205cd85127839eed11b416903960c9e411b9adc71c42ba4add47acddd32a9217bb68f27b90d6765892edf2d356e21235c5bfd5cf69d1ee719f9"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sq/firefox-47.0.1.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "16d93961a53ecc3e1ae3480be9e34f2a22dec2bdab55dbd35d1ea79ecf2ee48f195380bd52efc7d39529601610793b75daadeeb54dd76c9a3702c786af25acdd"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sr/firefox-47.0.1.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "0b2c5234f1787cd972fad398dc270766fbc3015dc1bba29755e5316f207af9f5787d4aa41e96cffd2c9d31c57a5d1896e63fcd04e6235a4a6798469e738fa10d"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sr/firefox-47.0.1.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "e7c7e7ff7fd81ca86f45997faed7244e4d807c3e5ad7ed66d6feb38c3e9173eaf136bd34af690ce28534f0c531c7f1d11595ec6502dfa42778cc19dee4334c49"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sv-SE/firefox-47.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "dffb94b0ddb4b9d2effba3894b408c9f191f2079dc4b47e214347a235c9bf1adf77e520465691d14a274c3f3344c7f8b7d41965051d506728347e0af1117ad27"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sv-SE/firefox-47.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b601906d28f071c6beb3dbd6b37fa68f50809c9c47c9db69d631127ccc7b784e7d3b278aea6de060b34d83b6c78137da32b77f8e17ed199c3213b89dd9391264"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ta/firefox-47.0.1.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "1a496470ef8e0899bfce66b41490f54d4d32776eaf60aca8725c4732512f1d3befb2e1fc3b942ebea95fe2359509c43d41649e5f90498264b8e02a3352244260"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ta/firefox-47.0.1.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "00e6dbc43ad3c77693903fe534722094826637698df691b266eb801b27cd5e63502c21ca3e34ff939a7645a1f75d36fce6154626019eb96bc73cc39ab845c952"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/te/firefox-47.0.1.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "70ed539571cadf241f819b68ff24829db32f56287aadab31656fdf66c0ed94ccc6cc11b6cef6e2e963203cda47af2c6032db6e5689c37aaaf495b1e4fa970207"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/te/firefox-47.0.1.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "d491acd4635ab9b22f76531740c7ee7a85832678aef9ed646e75f56755c02538440adeea71e9ca5a7a5e11f3f2f6941c3c4c1e47380547179f63baaf6c20ad07"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/th/firefox-47.0.1.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "0414f74c6266fc204f2741b6860f7919c957364bd56ccc2cec5ef4b9c4be812c554ab584e6ce53387e6b7a18ad02991a44d9507a16da59a4aabfd44e7fb5b754"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/th/firefox-47.0.1.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "2952cceaecdd4013882150e8158607639e4ab2cffdef563d4fd1a015c41f1eff6c5ac22c0b9301a05ab6f9fef9659d54916275d5a50d97ad43bf69f10da7b3c8"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/tr/firefox-47.0.1.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "c5c6273bae2b9a46108a433af3a85b5cbbba4cd3154ee124ccc49f46c4a76264836a76d1b2da4b1064e9a913cc9fe461911c53e44f40343c5f780be04da932e5"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/tr/firefox-47.0.1.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "f0b5bef1ea4b948d699a79d902055d5b31afbe5c4f1814d98cadef1ca820ce39212ec009f68d875860a48942e9d797bda88eec4f6ed591dd8b3b260e04170974"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/uk/firefox-47.0.1.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "3a069ba914716ce122c4a89612988708d811b9350d333aab203dde212527c0e0cc86ec4781e6aa23f40b77f2266f76eca366cf355651870f43e180b97aa25c43"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/uk/firefox-47.0.1.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "db7931aa3f1d150e4b5b8c87b9d069df4a515fb2aa5e250b8f8a1bae0d8fd9a210ae949df056c47e3c88e8faf28f2571311ce2d6f179e3365720b42f1335b546"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/uz/firefox-47.0.1.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "110a82749e187f39d77f63b16ad515218e5512e5974916e4145e625a40d797e23fdbb5d110a23f061448cfc3d3c597858636c9304e941a34c68368f749c3c900"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/uz/firefox-47.0.1.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "1dbf94cef034449e8d1342822384bf1761dc61748e2d876aec1ac628dd161f92b62da832fe397b2fe4f8a1b82f9adf1c3690f26e07ee3e48c6299f95969533cf"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/vi/firefox-47.0.1.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "af97e1dcfc9bfbdce95a5cd35025b2540ad928d3238863471116e071a51b354b7818577bc3e7427c513e7b335bc1510605ba3ad1a37221389de7c7fedf6e2103"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/vi/firefox-47.0.1.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "cc938935395e66ef721fdbb8c8b781ef648b5419393ed1687a116a4d9ae12dd18f2edbc8287235504aa6782bbd6a41f9f5dd89c9c712ed4980fb9fa44f46ef38"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/xh/firefox-47.0.1.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "a76dbac054cdb7f5c194766dc54f215de4cb4cca4aacd7c883e0e3632b9dfc18cc25d7a54788e213bc65c894dd26ca9b863199b55b649133f93da9fed9a58fe4"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/xh/firefox-47.0.1.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "cfd8bbb81637c19464ec34788254740e999c13bc8a64b4289b0e1c64f76d711a5a5a8380995271f309444032739066f06334da2f81b6ca2b2be33ff55d3ff402"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/zh-CN/firefox-47.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "d11637b0c28aa1c45b315322ff12392e133aebe21f435564da278b9e301f0c8515ccb721df2bd55c175c48c3e24934837abbba4b84c9fa659b7a58db1da68f04"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/zh-CN/firefox-47.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "27a06d87f23eaeec170d1ea7f3df636198bfd4787001e178948fe9b8a3f1aafff3be59b9d01ed5b5851902b550601f061e923a4cda3a972f0ac68928cab28577"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/zh-TW/firefox-47.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "7c6ef5592b273749ccbf7b37c09984b11722beb7f49d4ed25555b84f0521e0dbac5197c7642ac508a21a1a40c5578dcfb49310858819875cc9407c85426d599a"; } + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/zh-TW/firefox-47.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "9ccce84a292144f3758190ff2858c077d1e7ec6d49ff5e1efb404b8dfb3bcfebf96eab15d0ec32325e4d96d94f4c6bcc67f4e43dd22af418b822d82a2afaf6f1"; } ]; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 944a1efca5f..059b867279e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12936,7 +12936,7 @@ in }; firefox-beta-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { - channel = "beta"; + generated = import ../applications/networking/browsers/firefox-bin/beta_sources.nix; gconf = pkgs.gnome.GConf; inherit (pkgs.gnome) libgnome libgnomeui; inherit (pkgs.gnome3) defaultIconTheme; @@ -12949,20 +12949,6 @@ in desktopName = "Firefox Beta"; }; - firefox-developer-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { - channel = "developer"; - gconf = pkgs.gnome.GConf; - inherit (pkgs.gnome) libgnome libgnomeui; - inherit (pkgs.gnome3) defaultIconTheme; - }; - - firefox-developer-bin = self.wrapFirefox firefox-developer-bin-unwrapped { - browserName = "firefox"; - name = "firefox-developer-bin-" + - (builtins.parseDrvName firefox-developer-bin-unwrapped.name).version; - desktopName = "Firefox Developer Edition"; - }; - firestr = qt5.callPackage ../applications/networking/p2p/firestr { boost = boost155; }; From f7c43d4dc275560b300fd1e6ead86335dc916bd7 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 16 Jul 2016 13:12:54 +0200 Subject: [PATCH 273/508] octave: use OpenBLAS with correct bit-width. Previously this didn't work, now it is the only way that works. --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 059b867279e..059a9d5dc58 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5767,7 +5767,7 @@ in glpk = null; suitesparse = null; jdk = null; - openblas = openblasCompat; + openblas = openblas; }; octaveFull = (lowPrio (callPackage ../development/interpreters/octave { qt = qt4; From 3bfe30a0426ad79ca00be6e43cef14aae9d93f1d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 16 Jul 2016 13:34:06 +0200 Subject: [PATCH 274/508] haskell: update our Hackage database to the latest version --- pkgs/development/haskell-modules/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/default.nix b/pkgs/development/haskell-modules/default.nix index b03293ecfc5..4bc9a2af550 100644 --- a/pkgs/development/haskell-modules/default.nix +++ b/pkgs/development/haskell-modules/default.nix @@ -9,8 +9,8 @@ let allCabalFiles = pkgs.fetchFromGitHub { owner = "commercialhaskell"; repo = "all-cabal-hashes"; - rev = "461610ab6f0cf581e186643c037f1981755792d9"; - sha256 = "0x2577lfd5cbbaivl72273kw93gcmxvbjybk7w4h2ic3zvs1fnvm"; + rev = "72f1318540eff69544eb8c14a16f630d0c5448b8"; + sha256 = "1czi1rajk2726mqrw3qp7a43h26acbjw54ll3ns063yzg9hg469m"; }; inherit (stdenv.lib) fix' extends; From a317a15b30d6dd2ce25f81474dfba744002ae7a8 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 16 Jul 2016 13:58:27 +0200 Subject: [PATCH 275/508] mutt: fetch {sidebar,trash}.patch from AUR --- .../networking/mailreaders/mutt/default.nix | 14 +- .../networking/mailreaders/mutt/sidebar.patch | 4450 ----------------- .../networking/mailreaders/mutt/trash.patch | 797 --- 3 files changed, 11 insertions(+), 5250 deletions(-) delete mode 100644 pkgs/applications/networking/mailreaders/mutt/sidebar.patch delete mode 100644 pkgs/applications/networking/mailreaders/mutt/trash.patch diff --git a/pkgs/applications/networking/mailreaders/mutt/default.nix b/pkgs/applications/networking/mailreaders/mutt/default.nix index 31ead22e1fd..0be5e0bd57e 100644 --- a/pkgs/applications/networking/mailreaders/mutt/default.nix +++ b/pkgs/applications/networking/mailreaders/mutt/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ncurses, which, perl, autoreconfHook +{ stdenv, fetchurl, fetchpatch, ncurses, which, perl, autoreconfHook , gdbm ? null , openssl ? null , cyrus_sasl ? null @@ -61,8 +61,16 @@ stdenv.mkDerivation rec { ++ optional saslSupport "--with-sasl"; patches = - optional withTrash ./trash.patch ++ - optional withSidebar ./sidebar.patch; + optional withTrash (fetchpatch { + name = "trash.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/trash.patch?h=mutt-sidebar"; + sha256 = "1hrib9jk28mqd02nzv0sx01jfdabzvnwcc5qjc3810zfglzc1nql"; + }) ++ + optional withSidebar (fetchpatch { + name = "sidebar.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/sidebar.patch?h=mutt-sidebar"; + sha256 = "1l63wj7kw41jrh00mcxdw4p4vrbc9wld42s99liw8kz2aclymq5m"; + }); meta = { description = "A small but very powerful text-based mail client"; diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch deleted file mode 100644 index 218de7a0c46..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch +++ /dev/null @@ -1,4450 +0,0 @@ -diff -urN mutt-1.6.1/buffy.c mutt-1.6.1-sidebar/buffy.c ---- mutt-1.6.1/buffy.c 2016-06-12 18:43:00.397447512 +0100 -+++ mutt-1.6.1-sidebar/buffy.c 2016-06-12 18:43:03.951502935 +0100 -@@ -27,6 +27,10 @@ - - #include "mutt_curses.h" - -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif -+ - #ifdef USE_IMAP - #include "imap.h" - #endif -@@ -196,9 +200,17 @@ - static BUFFY *buffy_new (const char *path) - { - BUFFY* buffy; -+#ifdef USE_SIDEBAR -+ char rp[PATH_MAX] = ""; -+ char *r = NULL; -+#endif - - buffy = (BUFFY *) safe_calloc (1, sizeof (BUFFY)); - strfcpy (buffy->path, path, sizeof (buffy->path)); -+#ifdef USE_SIDEBAR -+ r = realpath (path, rp); -+ strfcpy (buffy->realpath, r ? rp : path, sizeof (buffy->realpath)); -+#endif - buffy->next = NULL; - buffy->magic = 0; - -@@ -215,7 +227,10 @@ - BUFFY **tmp,*tmp1; - char buf[_POSIX_PATH_MAX]; - struct stat sb; -- char f1[PATH_MAX], f2[PATH_MAX]; -+ char f1[PATH_MAX]; -+#ifndef USE_SIDEBAR -+ char f2[PATH_MAX]; -+#endif - char *p, *q; - - while (MoreArgs (s)) -@@ -228,6 +243,9 @@ - for (tmp = &Incoming; *tmp;) - { - tmp1=(*tmp)->next; -+#ifdef USE_SIDEBAR -+ mutt_sb_notify_mailbox (*tmp, 0); -+#endif - buffy_free (tmp); - *tmp=tmp1; - } -@@ -243,8 +261,13 @@ - p = realpath (buf, f1); - for (tmp = &Incoming; *tmp; tmp = &((*tmp)->next)) - { -+#ifdef USE_SIDEBAR -+ q = (*tmp)->realpath; -+ if (mutt_strcmp (p ? p : buf, q) == 0) -+#else - q = realpath ((*tmp)->path, f2); - if (mutt_strcmp (p ? p : buf, q ? q : (*tmp)->path) == 0) -+#endif - { - dprint(3,(debugfile,"mailbox '%s' already registered as '%s'\n", buf, (*tmp)->path)); - break; -@@ -256,14 +279,21 @@ - if(*tmp) - { - tmp1=(*tmp)->next; -+#ifdef USE_SIDEBAR -+ mutt_sb_notify_mailbox (*tmp, 0); -+#endif - buffy_free (tmp); - *tmp=tmp1; - } - continue; - } - -- if (!*tmp) -+ if (!*tmp) { - *tmp = buffy_new (buf); -+#ifdef USE_SIDEBAR -+ mutt_sb_notify_mailbox (*tmp, 1); -+#endif -+ } - - (*tmp)->new = 0; - (*tmp)->notified = 1; -@@ -306,6 +336,13 @@ - return 0; - } - -+#ifdef USE_SIDEBAR -+ if (option (OPTSIDEBAR) && mailbox->msg_unread > 0) { -+ mailbox->new = 1; -+ return 1; -+ } -+#endif -+ - if ((dirp = opendir (path)) == NULL) - { - mailbox->magic = 0; -@@ -357,6 +394,93 @@ - - return 0; - } -+ -+#ifdef USE_SIDEBAR -+/** -+ * buffy_maildir_update_dir - Update counts for one directory -+ * @mailbox: BUFFY representing a maildir mailbox -+ * @dir: Which directory to search -+ * -+ * Look through one directory of a maildir mailbox. The directory could -+ * be either "new" or "cur". -+ * -+ * Count how many new, or flagged, messages there are. -+ */ -+static void -+buffy_maildir_update_dir (BUFFY *mailbox, const char *dir) -+{ -+ char path[_POSIX_PATH_MAX] = ""; -+ DIR *dirp = NULL; -+ struct dirent *de = NULL; -+ char *p = NULL; -+ int read; -+ -+ snprintf (path, sizeof (path), "%s/%s", mailbox->path, dir); -+ -+ dirp = opendir (path); -+ if (!dirp) -+ { -+ mailbox->magic = 0; -+ return; -+ } -+ -+ while ((de = readdir (dirp)) != NULL) -+ { -+ if (*de->d_name == '.') -+ continue; -+ -+ /* Matches maildir_parse_flags logic */ -+ read = 0; -+ mailbox->msg_count++; -+ p = strstr (de->d_name, ":2,"); -+ if (p) -+ { -+ p += 3; -+ if (strchr (p, 'S')) -+ read = 1; -+ if (strchr (p, 'F')) -+ mailbox->msg_flagged++; -+ } -+ if (!read) { -+ mailbox->msg_unread++; -+ } -+ } -+ -+ closedir (dirp); -+} -+ -+/** -+ * buffy_maildir_update - Update messages counts for a maildir mailbox -+ * @mailbox: BUFFY representing a maildir mailbox -+ * -+ * Open a mailbox directories and update our record of how many new, or -+ * flagged, messages there are. -+ */ -+void -+buffy_maildir_update (BUFFY *mailbox) -+{ -+ if (!option (OPTSIDEBAR)) -+ return; -+ -+ mailbox->msg_count = 0; -+ mailbox->msg_unread = 0; -+ mailbox->msg_flagged = 0; -+ -+ buffy_maildir_update_dir (mailbox, "new"); -+ if (mailbox->msg_count) { -+ mailbox->new = 1; -+ } -+ buffy_maildir_update_dir (mailbox, "cur"); -+ -+ mailbox->sb_last_checked = time (NULL); -+ -+ /* make sure the updates are actually put on screen */ -+ if (SidebarWidth) -+ mutt_sb_draw(); -+} -+ -+#endif -+ - /* returns 1 if mailbox has new mail */ - static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb) - { -@@ -368,7 +491,11 @@ - else - statcheck = sb->st_mtime > sb->st_atime - || (mailbox->newly_created && sb->st_ctime == sb->st_mtime && sb->st_ctime == sb->st_atime); -+#ifdef USE_SIDEBAR -+ if ((!option (OPTSIDEBAR) && statcheck) || (option (OPTSIDEBAR) && mailbox->msg_unread > 0)) -+#else - if (statcheck) -+#endif - { - if (!option(OPTMAILCHECKRECENT) || sb->st_mtime > mailbox->last_visited) - { -@@ -388,6 +515,42 @@ - return rc; - } - -+#ifdef USE_SIDEBAR -+/** -+ * buffy_mbox_update - Update messages counts for an mbox mailbox -+ * @mailbox: BUFFY representing an mbox mailbox -+ * @sb: stat(2) infomation about the mailbox file -+ * -+ * Open a mbox file and update our record of how many new, or flagged, -+ * messages there are. If the mailbox hasn't changed since the last call, -+ * the function does nothing. -+ */ -+void -+buffy_mbox_update (BUFFY *mailbox, struct stat *sb) -+{ -+ CONTEXT *ctx = NULL; -+ -+ if (!option (OPTSIDEBAR)) -+ return; -+ if ((mailbox->sb_last_checked > sb->st_mtime) && (mailbox->msg_count != 0)) -+ return; /* no check necessary */ -+ -+ ctx = mx_open_mailbox (mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL); -+ if (ctx) -+ { -+ mailbox->msg_count = ctx->msgcount; -+ mailbox->msg_unread = ctx->unread; -+ mailbox->msg_flagged = ctx->flagged; -+ mailbox->sb_last_checked = time (NULL); -+ mx_close_mailbox (ctx, 0); -+ } -+ -+ /* make sure the updates are actually put on screen */ -+ if (SidebarWidth) -+ mutt_sb_draw(); -+} -+#endif -+ - int mutt_buffy_check (int force) - { - BUFFY *tmp; -@@ -461,16 +623,25 @@ - { - case M_MBOX: - case M_MMDF: -+#ifdef USE_SIDEBAR -+ buffy_mbox_update (tmp, &sb); -+#endif - if (buffy_mbox_hasnew (tmp, &sb) > 0) - BuffyCount++; - break; - - case M_MAILDIR: -+#ifdef USE_SIDEBAR -+ buffy_maildir_update (tmp); -+#endif - if (buffy_maildir_hasnew (tmp) > 0) - BuffyCount++; - break; - - case M_MH: -+#ifdef USE_SIDEBAR -+ mh_buffy_update (tmp); -+#endif - mh_buffy(tmp); - if (tmp->new) - BuffyCount++; -diff -urN mutt-1.6.1/buffy.h mutt-1.6.1-sidebar/buffy.h ---- mutt-1.6.1/buffy.h 2016-06-12 18:43:00.397447512 +0100 -+++ mutt-1.6.1-sidebar/buffy.h 2016-06-12 18:43:03.951502935 +0100 -@@ -16,6 +16,9 @@ - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -+#ifndef _BUFFY_H -+#define _BUFFY_H -+ - /*parameter to mutt_parse_mailboxes*/ - #define M_MAILBOXES 1 - #define M_UNMAILBOXES 2 -@@ -23,13 +26,28 @@ - typedef struct buffy_t - { - char path[_POSIX_PATH_MAX]; -+#ifdef USE_SIDEBAR -+ char realpath[_POSIX_PATH_MAX]; -+#endif - off_t size; - struct buffy_t *next; -+#ifdef USE_SIDEBAR -+ struct buffy_t *prev; -+#endif - short new; /* mailbox has new mail */ -+#ifdef USE_SIDEBAR -+ int msg_count; /* total number of messages */ -+ int msg_unread; /* number of unread messages */ -+ int msg_flagged; /* number of flagged messages */ -+ short is_hidden; /* is hidden from the sidebar */ -+#endif - short notified; /* user has been notified */ - short magic; /* mailbox type */ - short newly_created; /* mbox or mmdf just popped into existence */ - time_t last_visited; /* time of last exit from this mailbox */ -+#ifdef USE_SIDEBAR -+ time_t sb_last_checked; /* time of last buffy check from sidebar */ -+#endif - } - BUFFY; - -@@ -49,3 +67,5 @@ - void mutt_buffy_setnotified (const char *path); - - void mh_buffy (BUFFY *); -+ -+#endif /* _BUFFY_H */ -diff -urN mutt-1.6.1/color.c mutt-1.6.1-sidebar/color.c ---- mutt-1.6.1/color.c 2016-06-12 18:43:00.397447512 +0100 -+++ mutt-1.6.1-sidebar/color.c 2016-06-12 18:43:03.951502935 +0100 -@@ -94,6 +94,14 @@ - { "underline", MT_COLOR_UNDERLINE }, - { "index", MT_COLOR_INDEX }, - { "prompt", MT_COLOR_PROMPT }, -+#ifdef USE_SIDEBAR -+ { "sidebar_divider", MT_COLOR_DIVIDER }, -+ { "sidebar_flagged", MT_COLOR_FLAGGED }, -+ { "sidebar_highlight",MT_COLOR_HIGHLIGHT }, -+ { "sidebar_indicator",MT_COLOR_SB_INDICATOR }, -+ { "sidebar_new", MT_COLOR_NEW }, -+ { "sidebar_spoolfile",MT_COLOR_SB_SPOOLFILE }, -+#endif - { NULL, 0 } - }; - -@@ -146,6 +154,9 @@ - ColorDefs[MT_COLOR_INDICATOR] = A_REVERSE; - ColorDefs[MT_COLOR_SEARCH] = A_REVERSE; - ColorDefs[MT_COLOR_MARKERS] = A_REVERSE; -+#ifdef USE_SIDEBAR -+ ColorDefs[MT_COLOR_HIGHLIGHT] = A_UNDERLINE; -+#endif - /* special meaning: toggle the relevant attribute */ - ColorDefs[MT_COLOR_BOLD] = 0; - ColorDefs[MT_COLOR_UNDERLINE] = 0; -diff -urN mutt-1.6.1/compose.c mutt-1.6.1-sidebar/compose.c ---- mutt-1.6.1/compose.c 2016-06-12 18:43:00.398447528 +0100 -+++ mutt-1.6.1-sidebar/compose.c 2016-06-12 18:43:03.952502951 +0100 -@@ -32,6 +32,9 @@ - #include "mailbox.h" - #include "sort.h" - #include "charset.h" -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif - - #ifdef MIXMASTER - #include "remailer.h" -@@ -72,7 +75,7 @@ - - #define HDR_XOFFSET 10 - #define TITLE_FMT "%10s" /* Used for Prompts, which are ASCII */ --#define W (COLS - HDR_XOFFSET) -+#define W (COLS - HDR_XOFFSET - SidebarWidth) - - static const char * const Prompts[] = - { -@@ -110,7 +113,7 @@ - - static void redraw_crypt_lines (HEADER *msg) - { -- mvaddstr (HDR_CRYPT, 0, "Security: "); -+ mvprintw (HDR_CRYPT, SidebarWidth, TITLE_FMT, "Security: "); - - if ((WithCrypto & (APPLICATION_PGP | APPLICATION_SMIME)) == 0) - { -@@ -145,16 +148,16 @@ - addstr (_(" (OppEnc mode)")); - - clrtoeol (); -- move (HDR_CRYPTINFO, 0); -+ move (HDR_CRYPTINFO, SidebarWidth); - clrtoeol (); - - if ((WithCrypto & APPLICATION_PGP) - && (msg->security & APPLICATION_PGP) && (msg->security & SIGN)) -- printw ("%s%s", _(" sign as: "), PgpSignAs ? PgpSignAs : _("")); -+ printw (TITLE_FMT "%s", _("sign as: "), PgpSignAs ? PgpSignAs : _("")); - - if ((WithCrypto & APPLICATION_SMIME) - && (msg->security & APPLICATION_SMIME) && (msg->security & SIGN)) { -- printw ("%s%s", _(" sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); -+ printw (TITLE_FMT "%s", _("sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); - } - - if ((WithCrypto & APPLICATION_SMIME) -@@ -162,7 +165,7 @@ - && (msg->security & ENCRYPT) - && SmimeCryptAlg - && *SmimeCryptAlg) { -- mvprintw (HDR_CRYPTINFO, 40, "%s%s", _("Encrypt with: "), -+ mvprintw (HDR_CRYPTINFO, SidebarWidth + 40, "%s%s", _("Encrypt with: "), - NONULL(SmimeCryptAlg)); - } - } -@@ -175,7 +178,8 @@ - int c; - char *t; - -- mvaddstr (HDR_MIX, 0, " Mix: "); -+ /* L10N: "Mix" refers to the MixMaster chain for anonymous email */ -+ mvprintw (HDR_MIX, SidebarWidth, TITLE_FMT, _("Mix: ")); - - if (!chain) - { -@@ -190,7 +194,7 @@ - if (t && t[0] == '0' && t[1] == '\0') - t = ""; - -- if (c + mutt_strlen (t) + 2 >= COLS) -+ if (c + mutt_strlen (t) + 2 >= COLS - SidebarWidth) - break; - - addstr (NONULL(t)); -@@ -242,20 +246,23 @@ - - buf[0] = 0; - rfc822_write_address (buf, sizeof (buf), addr, 1); -- mvprintw (line, 0, TITLE_FMT, Prompts[line - 1]); -+ mvprintw (line, SidebarWidth, TITLE_FMT, Prompts[line - 1]); - mutt_paddstr (W, buf); - } - - static void draw_envelope (HEADER *msg, char *fcc) - { -+#ifdef USE_SIDEBAR -+ mutt_sb_draw(); -+#endif - draw_envelope_addr (HDR_FROM, msg->env->from); - draw_envelope_addr (HDR_TO, msg->env->to); - draw_envelope_addr (HDR_CC, msg->env->cc); - draw_envelope_addr (HDR_BCC, msg->env->bcc); -- mvprintw (HDR_SUBJECT, 0, TITLE_FMT, Prompts[HDR_SUBJECT - 1]); -+ mvprintw (HDR_SUBJECT, SidebarWidth, TITLE_FMT, Prompts[HDR_SUBJECT - 1]); - mutt_paddstr (W, NONULL (msg->env->subject)); - draw_envelope_addr (HDR_REPLYTO, msg->env->reply_to); -- mvprintw (HDR_FCC, 0, TITLE_FMT, Prompts[HDR_FCC - 1]); -+ mvprintw (HDR_FCC, SidebarWidth, TITLE_FMT, Prompts[HDR_FCC - 1]); - mutt_paddstr (W, fcc); - - if (WithCrypto) -@@ -266,7 +273,7 @@ - #endif - - SETCOLOR (MT_COLOR_STATUS); -- mvaddstr (HDR_ATTACH - 1, 0, _("-- Attachments")); -+ mvaddstr (HDR_ATTACH - 1, SidebarWidth, _("-- Attachments")); - clrtoeol (); - - NORMAL_COLOR; -@@ -302,7 +309,7 @@ - /* redraw the expanded list so the user can see the result */ - buf[0] = 0; - rfc822_write_address (buf, sizeof (buf), *addr, 1); -- move (line, HDR_XOFFSET); -+ move (line, HDR_XOFFSET + SidebarWidth); - mutt_paddstr (W, buf); - - return 0; -@@ -515,7 +522,7 @@ - menu->tag = mutt_tag_attach; - menu->data = idx; - menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_COMPOSE, ComposeHelp); -- -+ - while (loop) - { - switch (op = mutt_menuLoop (menu)) -@@ -564,7 +571,7 @@ - if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) == 0) - { - mutt_str_replace (&msg->env->subject, buf); -- move (HDR_SUBJECT, HDR_XOFFSET); -+ move (HDR_SUBJECT, HDR_XOFFSET + SidebarWidth); - if (msg->env->subject) - mutt_paddstr (W, msg->env->subject); - else -@@ -582,7 +589,7 @@ - { - strfcpy (fcc, buf, fcclen); - mutt_pretty_mailbox (fcc, fcclen); -- move (HDR_FCC, HDR_XOFFSET); -+ move (HDR_FCC, HDR_XOFFSET + SidebarWidth); - mutt_paddstr (W, fcc); - fccSet = 1; - } -diff -urN mutt-1.6.1/configure.ac mutt-1.6.1-sidebar/configure.ac ---- mutt-1.6.1/configure.ac 2016-06-12 18:43:00.398447528 +0100 -+++ mutt-1.6.1-sidebar/configure.ac 2016-06-12 18:43:03.952502951 +0100 -@@ -175,6 +175,14 @@ - SMIMEAUX_TARGET="smime_keys" - fi - -+AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar support]), -+[ if test x$enableval = xyes ; then -+ AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.]) -+ OPS="$OPS \$(srcdir)/OPS.SIDEBAR" -+ MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS sidebar.o" -+ fi -+]) -+ - AC_ARG_WITH(mixmaster, AS_HELP_STRING([--with-mixmaster@<:@=PATH@:>@],[Include Mixmaster support]), - [if test "$withval" != no - then -diff -urN mutt-1.6.1/copy.c mutt-1.6.1-sidebar/copy.c ---- mutt-1.6.1/copy.c 2016-06-12 18:43:00.398447528 +0100 -+++ mutt-1.6.1-sidebar/copy.c 2016-06-12 18:43:03.952502951 +0100 -@@ -288,7 +288,8 @@ - if (flags & (CH_DECODE|CH_PREFIX)) - { - if (mutt_write_one_header (out, 0, headers[x], -- flags & CH_PREFIX ? prefix : 0, mutt_term_width (Wrap), flags) == -1) -+ flags & CH_PREFIX ? prefix : 0, -+ mutt_term_width (Wrap), flags) == -1) - { - error = TRUE; - break; -diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-sidebar/curs_main.c ---- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100 -+++ mutt-1.6.1-sidebar/curs_main.c 2016-06-12 18:43:03.953502966 +0100 -@@ -26,8 +26,13 @@ - #include "mailbox.h" - #include "mapping.h" - #include "sort.h" -+#include "buffy.h" - #include "mx.h" - -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif -+ - #ifdef USE_POP - #include "pop.h" - #endif -@@ -595,21 +600,39 @@ - menu->redraw |= REDRAW_STATUS; - if (do_buffy_notify) - { -- if (mutt_buffy_notify () && option (OPTBEEPNEW)) -- beep (); -+ if (mutt_buffy_notify()) -+ { -+ menu->redraw |= REDRAW_STATUS; -+ if (option (OPTBEEPNEW)) -+ beep(); -+ } - } - else - do_buffy_notify = 1; - } - -+#ifdef USE_SIDEBAR -+ if (option (OPTSIDEBAR)) -+ menu->redraw |= REDRAW_SIDEBAR; -+#endif -+ - if (op != -1) - mutt_curs_set (0); - - if (menu->redraw & REDRAW_FULL) - { - menu_redraw_full (menu); -+#ifdef USE_SIDEBAR -+ mutt_sb_draw(); -+#endif - mutt_show_error (); - } -+#ifdef USE_SIDEBAR -+ else if (menu->redraw & REDRAW_SIDEBAR) { -+ mutt_sb_draw(); -+ menu->redraw &= ~REDRAW_SIDEBAR; -+ } -+#endif - - if (menu->menu == MENU_MAIN) - { -@@ -630,9 +653,20 @@ - - if (menu->redraw & REDRAW_STATUS) - { -+#ifdef USE_SIDEBAR -+ /* Temporarily lie about the sidebar width */ -+ short sw = SidebarWidth; -+ SidebarWidth = 0; -+#endif - menu_status_line (buf, sizeof (buf), menu, NONULL (Status)); -+#ifdef USE_SIDEBAR -+ SidebarWidth = sw; /* Restore the sidebar width */ -+#endif - move (option (OPTSTATUSONTOP) ? 0 : LINES-2, 0); - SETCOLOR (MT_COLOR_STATUS); -+#ifdef USE_SIDEBAR -+ mutt_sb_set_buffystats (Context); -+#endif - mutt_paddstr (COLS, buf); - NORMAL_COLOR; - menu->redraw &= ~REDRAW_STATUS; -@@ -652,7 +686,7 @@ - menu->oldcurrent = -1; - - if (option (OPTARROWCURSOR)) -- move (menu->current - menu->top + menu->offset, 2); -+ move (menu->current - menu->top + menu->offset, SidebarWidth + 2); - else if (option (OPTBRAILLEFRIENDLY)) - move (menu->current - menu->top + menu->offset, 0); - else -@@ -1091,6 +1125,9 @@ - break; - - CHECK_MSGCOUNT; -+#ifdef USE_SIDEBAR -+ CHECK_VISIBLE; -+#endif - CHECK_READONLY; - { - int oldvcount = Context->vcount; -@@ -1150,6 +1187,9 @@ - menu->redraw = REDRAW_FULL; - break; - -+#ifdef USE_SIDEBAR -+ case OP_SIDEBAR_OPEN: -+#endif - case OP_MAIN_CHANGE_FOLDER: - case OP_MAIN_NEXT_UNREAD_MAILBOX: - -@@ -1181,6 +1221,14 @@ - { - mutt_buffy (buf, sizeof (buf)); - -+#ifdef USE_SIDEBAR -+ if (op == OP_SIDEBAR_OPEN) { -+ const char *path = mutt_sb_get_highlight(); -+ if (!path) -+ break; -+ strncpy (buf, path, sizeof (buf)); -+ } else -+#endif - if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) - { - if (menu->menu == MENU_PAGER) -@@ -1199,6 +1247,9 @@ - } - - mutt_expand_path (buf, sizeof (buf)); -+#ifdef USE_SIDEBAR -+ mutt_sb_set_open_buffy (buf); -+#endif - if (mx_get_magic (buf) <= 0) - { - mutt_error (_("%s is not a mailbox."), buf); -@@ -2310,6 +2361,21 @@ - mutt_what_key(); - break; - -+#ifdef USE_SIDEBAR -+ case OP_SIDEBAR_NEXT: -+ case OP_SIDEBAR_NEXT_NEW: -+ case OP_SIDEBAR_PAGE_DOWN: -+ case OP_SIDEBAR_PAGE_UP: -+ case OP_SIDEBAR_PREV: -+ case OP_SIDEBAR_PREV_NEW: -+ mutt_sb_change_mailbox (op); -+ break; -+ -+ case OP_SIDEBAR_TOGGLE_VISIBLE: -+ toggle_option (OPTSIDEBAR); -+ menu->redraw = REDRAW_FULL; -+ break; -+#endif - default: - if (menu->menu == MENU_MAIN) - km_error_key (MENU_MAIN); -diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-sidebar/doc/manual.xml.head ---- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100 -+++ mutt-1.6.1-sidebar/doc/manual.xml.head 2016-06-12 18:43:03.955502998 +0100 -@@ -405,6 +405,623 @@ - - - -+ -+ Sidebar -+ -+ The Sidebar shows a list of all your mailboxes. The list can be -+ turned on and off, it can be themed and the list style can be -+ configured. -+ -+ -+ This part of the manual is suitable for beginners. -+ If you already know Mutt you could skip ahead to the main -+ Sidebar guide. -+ If you just want to get started, you could use the sample -+ Sidebar muttrc. -+ -+ -+ This version of Sidebar is based on Terry Chan's -+ 2015-11-11 release. -+ It contains many -+ new features, -+ lots of -+ bugfixes -+ and a generous helping of -+ new documentation which you are already reading. -+ -+ -+ To check if Mutt supports Sidebar, look for the string -+ +USE_SIDEBAR in the mutt version. -+ -+ -+mutt -v -+ -+ -+ Let's turn on the Sidebar: -+ -+ set sidebar_visible -+ -+ You will see something like this. -+ A list of mailboxes on the left. -+ A list of emails, from the selected mailbox, on the right. -+ -+ -+Fruit [1] 3/8| 1 + Jan 24 Rhys Lee (192) Yew -+Animals [1] 2/6| 2 + Feb 11 Grace Hall (167) Ilama -+Cars 4| 3 Feb 23 Aimee Scott (450) Nectarine -+Seas 1/7| 4 ! Feb 28 Summer Jackson (264) Lemon -+ | 5 Mar 07 Callum Harrison (464) Raspberry -+ | 6 N + Mar 24 Samuel Harris (353) Tangerine -+ | 7 N + Sep 05 Sofia Graham (335) Cherry -+ | 8 N Sep 16 Ewan Brown (105) Ugli -+ | -+ | -+ -+ -+ This user has four mailboxes: Fruit, -+ Cars, Animals and -+ Seas. -+ -+ -+ The current, open, mailbox is Fruit. We can -+ also see information about the other mailboxes. For example: -+ The Animals mailbox contains, 1 flagged email, 2 -+ new emails out of a total of 6 emails. -+ -+ -+ Navigation -+ -+ The Sidebar adds some new functions -+ to Mutt. -+ -+ -+ The user pressed the c key to -+ <change-folder> to the -+ Animals mailbox. The Sidebar automatically -+ updated the indicator to match. -+ -+ -+Fruit [1] 3/8| 1 Jan 03 Tia Gibson (362) Caiman -+Animals [1] 2/6| 2 + Jan 22 Rhys Lee ( 48) Dolphin -+Cars 4| 3 ! Aug 16 Ewan Brown (333) Hummingbird -+Seas 1/7| 4 Sep 25 Grace Hall ( 27) Capybara -+ | 5 N + Nov 12 Evelyn Rogers (453) Tapir -+ | 6 N + Nov 16 Callum Harrison (498) Hedgehog -+ | -+ | -+ | -+ | -+ -+ -+ Let's map some functions: -+ -+ -+bind index,pager \CP sidebar-prev # Ctrl-Shift-P - Previous Mailbox -+bind index,pager \CN sidebar-next # Ctrl-Shift-N - Next Mailbox -+bind index,pager \CO sidebar-open # Ctrl-Shift-O - Open Highlighted Mailbox -+ -+ -+ Press Ctrl-Shift-N (Next mailbox) twice will -+ move the Sidebar highlight to -+ down to the Seas mailbox. -+ -+ -+Fruit [1] 3/8| 1 Jan 03 Tia Gibson (362) Caiman -+Animals [1] 2/6| 2 + Jan 22 Rhys Lee ( 48) Dolphin -+Cars 4| 3 ! Aug 16 Ewan Brown (333) Hummingbird -+Seas 1/7| 4 Sep 25 Grace Hall ( 27) Capybara -+ | 5 N + Nov 12 Evelyn Rogers (453) Tapir -+ | 6 N + Nov 16 Callum Harrison (498) Hedgehog -+ | -+ | -+ | -+ | -+ -+ -+ Functions <sidebar-next> and -+ <sidebar-prev> move the Sidebar -+ highlight. -+ They do not change the open -+ mailbox. -+ -+ -+ Press Ctrl-Shift-O -+ (<sidebar-open>) -+ to open the highlighted mailbox. -+ -+ -+Fruit [1] 3/8| 1 ! Mar 07 Finley Jones (139) Molucca Sea -+Animals [1] 2/6| 2 + Mar 24 Summer Jackson ( 25) Arafura Sea -+Cars 4| 3 + Feb 28 Imogen Baker (193) Pechora Sea -+Seas 1/7| 4 N + Feb 23 Isla Hussain (348) Balearic Sea -+ | -+ | -+ | -+ | -+ | -+ | -+ -+ -+ -+ Features -+ -+ The Sidebar shows a list of mailboxes in a panel. -+ -+ -+ Everything about the Sidebar can be configured. -+ -+ -+ <link linkend="intro-sidebar-basics">State of the Sidebar</link> -+ Visibility -+ Width -+ -+ -+ <link linkend="intro-sidebar-limit">Which mailboxes are displayed</link> -+ Display all -+ Limit to mailboxes with new mail -+ Whitelist mailboxes to display always -+ -+ -+ <link linkend="sidebar-sort">The order in which mailboxes are displayed</link> -+ -+ Unsorted (order of mailboxes commands) -+ Sorted alphabetically -+ Sorted by number of new mails -+ -+ -+ <link linkend="intro-sidebar-colors">Color</link> -+ Sidebar indicators and divider -+ Mailboxes depending on their type -+ Mailboxes depending on their contents -+ -+ -+ <link linkend="sidebar-functions">Key bindings</link> -+ Hide/Unhide the Sidebar -+ Select previous/next mailbox -+ Select previous/next mailbox with new mail -+ Page up/down through a list of mailboxes -+ -+ -+ Misc -+ Formatting string for mailbox -+ Wraparound searching -+ Flexible mailbox abbreviations -+ Support for Unicode mailbox names (utf-8) -+ -+ -+ -+ Display -+ -+ Everything about the Sidebar can be configured. -+ -+ -+ For a quick reference: -+ Sidebar variables to set -+ Sidebar colors to apply -+ Sidebar sort methods -+ -+ -+ Sidebar Basics -+ -+ The most important variable is $sidebar_visible. -+ You can set this in your muttrc, or bind a key to the -+ function <sidebar-toggle-visible>. -+ -+ -+set sidebar_visible # Make the Sidebar visible by default -+bind index,pager B sidebar-toggle-visible # Use 'B' to switch the Sidebar on and off -+ -+ -+ Next, decide how wide you want the Sidebar to be. 25 -+ characters might be enough for the mailbox name and some numbers. -+ Remember, you can hide/show the Sidebar at the press of button. -+ -+ -+ Finally, you might want to change the divider character. -+ By default, Sidebar draws an ASCII line between it and the Index panel -+ If your terminal supports it, you can use a Unicode line-drawing character. -+ -+ -+set sidebar_width = 25 # Plenty of space -+set sidebar_divider_char = '│' # Pretty line-drawing character -+ -+ -+ -+ Sidebar Format String -+ -+ $sidebar_format allows you to customize the Sidebar display. -+ For an introduction, read format strings -+ including the section about conditionals. -+ -+ -+ The default value is %B%?F? [%F]?%* %?N?%N/?%S -+ -+ -+ Which breaks down as: -+ %B - Mailbox name -+ %?F? [%F]? - If flagged emails [%F], otherwise nothing -+ %* - Pad with spaces -+ %?N?%N/? - If new emails %N/, otherwise nothing -+ %S - Total number of emails -+ -+ -+ sidebar_format -+ -+ -+ -+ Format -+ Notes -+ Description -+ -+ -+ -+ -+ %B -+ -+ Name of the mailbox -+ -+ -+ %S -+ * -+ Size of mailbox (total number of messages) -+ -+ -+ %N -+ * -+ Number of New messages in the mailbox -+ -+ -+ %F -+ * -+ Number of Flagged messages in the mailbox -+ -+ -+ %! -+ -+ -+ !: one flagged message; -+ !!: two flagged messages; -+ n!: n flagged messages (for n > 2). -+ Otherwise prints nothing. -+ -+ -+ -+ %d -+ * ‡ -+ Number of deleted messages -+ -+ -+ %L -+ * ‡ -+ Number of messages after limiting -+ -+ -+ %t -+ * ‡ -+ Number of tagged messages -+ -+ -+ %>X -+ -+ Right justify the rest of the string and pad with X -+ -+ -+ %|X -+ -+ Pad to the end of the line with -+ X -+ -+ -+ %*X -+ -+ Soft-fill with character Xas pad -+ -+ -+ -+
-+ -+ * = Can be optionally printed if nonzero -+ -+ -+ ‡ = Only applicable to the current folder -+ -+ -+ Here are some examples. -+ They show the number of (F)lagged, (N)ew and (S)ize. -+ -+ -+ sidebar_format -+ -+ -+ -+ Format -+ Example -+ -+ -+ -+ -+ %B%?F? [%F]?%* %?N?%N/?%S -+ mailbox [F] N/S -+ -+ -+ %B%* %F:%N:%S -+ mailbox F:N:S -+ -+ -+ %B %?N?(%N)?%* %S -+ mailbox (N) S -+ -+ -+ %B%* ?F?%F/?%N -+ mailbox F/S -+ -+ -+ -+
-+
-+ -+ Abbreviating Mailbox Names -+ -+ $sidebar_delim_chars tells Sidebar -+ how to split up mailbox paths. For local directories -+ use /; for IMAP folders use . -+ -+ -+ Example 1 -+ -+ This example works well if your mailboxes have unique names -+ after the last separator. -+ -+ -+ Add some mailboxes of diffent depths. -+ -+ -+set folder="~/mail" -+mailboxes =fruit/apple =fruit/banana =fruit/cherry -+mailboxes =water/sea/sicily =water/sea/archipelago =water/sea/sibuyan -+mailboxes =water/ocean/atlantic =water/ocean/pacific =water/ocean/arctic -+ -+ -+ Shorten the names: -+ -+ -+set sidebar_short_path # Shorten mailbox names -+set sidebar_delim_chars="/" # Delete everything up to the last / character -+ -+ -+ The screenshot below shows what the Sidebar would look like -+ before and after shortening. -+ -+ -+|fruit/apple |apple -+|fruit/banana |banana -+|fruit/cherry |cherry -+|water/sea/sicily |sicily -+|water/sea/archipelago |archipelago -+|water/sea/sibuyan |sibuyan -+|water/ocean/atlantic |atlantic -+|water/ocean/pacific |pacific -+|water/ocean/arctic |arctic -+ -+ -+ -+ Example 2 -+ -+ This example works well if you have lots of mailboxes which are arranged -+ in a tree. -+ -+ -+ Add some mailboxes of diffent depths. -+ -+ -+set folder="~/mail" -+mailboxes =fruit -+mailboxes =fruit/apple =fruit/banana =fruit/cherry -+mailboxes =water -+mailboxes =water/sea -+mailboxes =water/sea/sicily =water/sea/archipelago =water/sea/sibuyan -+mailboxes =water/ocean -+mailboxes =water/ocean/atlantic =water/ocean/pacific =water/ocean/arctic -+ -+ -+ Shorten the names: -+ -+ -+set sidebar_short_path # Shorten mailbox names -+set sidebar_delim_chars="/" # Delete everything up to the last / character -+set sidebar_folder_indent # Indent folders whose names we've shortened -+set sidebar_indent_string=" " # Indent with two spaces -+ -+ -+ The screenshot below shows what the Sidebar would look like -+ before and after shortening. -+ -+ -+|fruit |fruit -+|fruit/apple | apple -+|fruit/banana | banana -+|fruit/cherry | cherry -+|water |water -+|water/sea | sea -+|water/sea/sicily | sicily -+|water/sea/archipelago | archipelago -+|water/sea/sibuyan | sibuyan -+|water/ocean | ocean -+|water/ocean/atlantic | atlantic -+|water/ocean/pacific | pacific -+|water/ocean/arctic | arctic -+ -+ -+ Sometimes, it will be necessary to add mailboxes, that you -+ don't use, to fill in part of the tree. This will trade -+ vertical space for horizonal space (but it looks good). -+ -+ -+ -+ -+ Limiting the Number of Mailboxes -+ -+ If you have a lot of mailboxes, sometimes it can be useful to hide -+ the ones you aren't using. $sidebar_new_mail_only -+ tells Sidebar to only show mailboxes that contain new, or flagged, email. -+ -+ -+ If you want some mailboxes to be always visible, then use the -+ sidebar_whitelist command. It takes a list of -+ mailboxes as parameters. -+ -+ -+set sidebar_new_mail_only # Only mailboxes with new/flagged email -+sidebar_whitelist fruit fruit/apple # Always display these two mailboxes -+ -+ -+
-+ -+ Colors -+ -+ Here is a sample color scheme: -+ -+ -+color sidebar_indicator default color17 # Dark blue background -+color sidebar_highlight white color238 # Grey background -+color sidebar_spoolfile yellow default # Yellow -+color sidebar_new green default # Green -+color sidebar_flagged red default # Red -+color sidebar_divider color8 default # Dark grey -+ -+ -+ There is a priority order when coloring Sidebar mailboxes. -+ e.g. If a mailbox has new mail it will have the -+ sidebar_new color, even if it also contains -+ flagged mails. -+ -+ -+ Sidebar Color Priority -+ -+ -+ -+ Priority -+ Color -+ Description -+ -+ -+ -+ -+ Highest -+ sidebar_indicator -+ Mailbox is open -+ -+ -+ -+ sidebar_highlight -+ Mailbox is highlighed -+ -+ -+ -+ sidebar_spoolfile -+ Mailbox is the spoolfile (receives incoming mail) -+ -+ -+ -+ sidebar_new -+ Mailbox contains new mail -+ -+ -+ -+ sidebar_flagged -+ Mailbox contains flagged mail -+ -+ -+ Lowest -+ (None) -+ Mailbox does not match above -+ -+ -+ -+
-+
-+ -+ Bug-fixes -+ -+ If you haven't used Sidebar before, you can ignore this section. -+ -+ -+ These bugs have been fixed since the previous Sidebar release: 2015-11-11. -+ -+ -+ Fix bug when starting in compose mode -+ Fix bug with empty sidebar_divider_char string -+ Fix bug with header wrapping -+ Correctly handle utf8 character sequences -+ Fix a bug in mh_buffy_update -+ Fix refresh -- time overflowed short -+ Protect against empty format strings -+ Limit Sidebar width to COLS -+ Handle unmailboxes * safely -+ Refresh Sidebar after timeout -+ -+ -+ -+ Config Changes -+ -+ If you haven't used Sidebar before, you can ignore this section. -+ -+ -+ Some of the Sidebar config has been changed to make its meaning clearer. -+ These changes have been made since the previous Sidebar release: 2015-11-11. -+ -+ -+ Config Changes -+ -+ -+ -+ Old Name -+ New Name -+ -+ -+ -+ -+ $sidebar_delim -+ $sidebar_divider_char -+ -+ -+ $sidebar_folderindent -+ $sidebar_folder_indent -+ -+ -+ $sidebar_indentstr -+ $sidebar_indent_string -+ -+ -+ $sidebar_newmail_only -+ $sidebar_new_mail_only -+ -+ -+ $sidebar_refresh -+ $sidebar_refresh_time -+ -+ -+ $sidebar_shortpath -+ $sidebar_short_path -+ -+ -+ $sidebar_sort -+ $sidebar_sort_method -+ -+ -+ <sidebar-scroll-down> -+ <sidebar-page-down> -+ -+ -+ <sidebar-scroll-up> -+ <sidebar-page-up> -+ -+ -+ -+
-+
-+
-+ - - Help - -@@ -6773,6 +7390,17 @@ -
- - -+Mutt will set the COLUMNS environment variable to -+the width of the pager. Some programs make use of this environment -+variable automatically. Others provide a command line argument that -+can use this to set the output width: -+ -+ -+ -+text/html; lynx -dump -width ${COLUMNS:-80} %s; copiousoutput -+ -+ -+ - Note that when using the built-in pager, only - entries with this flag will be considered a handler for a MIME type - — all other entries will be ignored. -@@ -7467,6 +8095,16 @@ - - - -+ -+Mutt Patches -+ -+Mutt may also be patched to support smaller features. -+These patches should add a free-form string to the end Mutt's version string. -+Running mutt -v might show: -+patch-1.6.1.sidebar.20160502 -+ -+ -+ - - URL Syntax - -@@ -8081,6 +8719,469 @@ - - - -+ -+ Sidebar Patch -+ Overview of mailboxes -+ -+ -+ Patch -+ -+ -+ To check if Mutt supports Sidebar, look for -+ +USE_SIDEBAR in the mutt version. -+ See: . -+ -+ -+ -+ Dependencies: -+ mutt-1.6.1 -+ -+ -+ This patch is part of the NeoMutt Project. -+ -+ -+ -+ Introduction -+ -+ -+ The Sidebar shows a list of all your mailboxes. The list can be -+ turned on and off, it can be themed and the list style can be -+ configured. -+ -+ -+ -+ This part of the manual is a reference guide. -+ If you want a simple introduction with examples see the -+ Sidebar Howto. -+ If you just want to get started, you could use the sample -+ Sidebar muttrc. -+ -+ -+ -+ This version of Sidebar is based on Terry Chan's -+ 2015-11-11 release. -+ It contains many -+ new features, -+ lots of -+ bugfixes. -+ -+ -+ -+ -+ Variables -+ -+ -+ Sidebar Variables -+ -+ -+ -+ Name -+ Type -+ Default -+ -+ -+ -+ -+ sidebar_delim_chars -+ string -+ /. -+ -+ -+ sidebar_divider_char -+ string -+ | -+ -+ -+ sidebar_folder_indent -+ boolean -+ no -+ -+ -+ sidebar_format -+ string -+ %B%?F? [%F]?%* %?N?%N/?%S -+ -+ -+ sidebar_indent_string -+ string -+    (two spaces) -+ -+ -+ sidebar_new_mail_only -+ boolean -+ no -+ -+ -+ sidebar_next_new_wrap -+ boolean -+ no -+ -+ -+ sidebar_refresh_time -+ number -+ 60 -+ -+ -+ sidebar_short_path -+ boolean -+ no -+ -+ -+ sidebar_sort_method -+ enum -+ SORT_ORDER -+ -+ -+ sidebar_visible -+ boolean -+ no -+ -+ -+ sidebar_whitelist -+ list -+ (empty) -+ -+ -+ sidebar_width -+ number -+ 20 -+ -+ -+ -+
-+
-+ -+ -+ Functions -+ -+ -+ Sidebar adds the following functions to Mutt. -+ By default, none of them are bound to keys. -+ -+ -+ -+ Sidebar Functions -+ -+ -+ -+ Menus -+ Function -+ Description -+ -+ -+ -+ -+ index,pager -+ <sidebar-next> -+ Move the highlight to next mailbox -+ -+ -+ index,pager -+ <sidebar-next-new> -+ Move the highlight to next mailbox with new mail -+ -+ -+ index,pager -+ <sidebar-open> -+ Open highlighted mailbox -+ -+ -+ index,pager -+ <sidebar-page-down> -+ Scroll the Sidebar down 1 page -+ -+ -+ index,pager -+ <sidebar-page-up> -+ Scroll the Sidebar up 1 page -+ -+ -+ index,pager -+ <sidebar-prev> -+ Move the highlight to previous mailbox -+ -+ -+ index,pager -+ <sidebar-prev-new> -+ Move the highlight to previous mailbox with new mail -+ -+ -+ index,pager -+ <sidebar-toggle-visible> -+ Make the Sidebar (in)visible -+ -+ -+ -+
-+
-+ -+ -+ Commands -+ -+ sidebar_whitelist -+ -+ mailbox -+ -+ -+ mailbox -+ -+ -+ -+ -+ -+ Colors -+ -+ -+ Sidebar Colors -+ -+ -+ -+ Name -+ Default Color -+ Description -+ -+ -+ -+ -+ sidebar_divider -+ default -+ The dividing line between the Sidebar and the Index/Pager panels -+ -+ -+ sidebar_flagged -+ default -+ Mailboxes containing flagged mail -+ -+ -+ sidebar_highlight -+ underline -+ Cursor to select a mailbox -+ -+ -+ sidebar_indicator -+ mutt indicator -+ The mailbox open in the Index panel -+ -+ -+ sidebar_new -+ default -+ Mailboxes containing new mail -+ -+ -+ sidebar_spoolfile -+ default -+ Mailbox that receives incoming mail -+ -+ -+ -+
-+ -+ If the sidebar_indicator color isn't set, then the default Mutt -+ indicator color will be used (the color used in the index panel). -+
-+ -+ -+ Sort -+ -+ -+ Sidebar Sort -+ -+ -+ -+ Sort -+ Description -+ -+ -+ -+ -+ alpha -+ Alphabetically by path -+ -+ -+ count -+ Total number of messages -+ -+ -+ flagged -+ Number of flagged messages -+ -+ -+ name -+ Alphabetically by path -+ -+ -+ new -+ Number of new messages -+ -+ -+ path -+ Alphabetically by path -+ -+ -+ unsorted -+ Do not resort the paths -+ -+ -+ -+
-+
-+ -+ -+ Muttrc -+ -+# This is a complete list of sidebar-related configuration. -+ -+# -------------------------------------------------------------------------- -+# VARIABLES - shown with their default values -+# -------------------------------------------------------------------------- -+ -+# Should the Sidebar be shown? -+set sidebar_visible = no -+ -+# How wide should the Sidebar be in screen columns? -+# Note: Some characters, e.g. Chinese, take up two columns each. -+set sidebar_width = 20 -+ -+# Should the mailbox paths be abbreviated? -+set sidebar_short_path = no -+ -+# When abbreviating mailbox path names, use any of these characters as path -+# separators. Only the part after the last separators will be shown. -+# For file folders '/' is good. For IMAP folders, often '.' is useful. -+set sidebar_delim_chars = '/.' -+ -+# If the mailbox path is abbreviated, should it be indented? -+set sidebar_folder_indent = no -+ -+# Indent mailbox paths with this string. -+set sidebar_indent_string = ' ' -+ -+# Make the Sidebar only display mailboxes that contain new, or flagged, -+# mail. -+set sidebar_new_mail_only = no -+ -+# Any mailboxes that are whitelisted will always be visible, even if the -+# sidebar_new_mail_only option is enabled. -+sidebar_whitelist '/home/user/mailbox1' -+sidebar_whitelist '/home/user/mailbox2' -+ -+# When searching for mailboxes containing new mail, should the search wrap -+# around when it reaches the end of the list? -+set sidebar_next_new_wrap = no -+ -+# The character to use as the divider between the Sidebar and the other Mutt -+# panels. -+# Note: Only the first character of this string is used. -+set sidebar_divider_char = '|' -+ -+# Display the Sidebar mailboxes using this format string. -+set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S' -+ -+# Sidebar will not refresh its list of mailboxes any more frequently than -+# this number of seconds. This will help reduce disk/network traffic. -+set sidebar_refresh_time = 60 -+ -+# Sort the mailboxes in the Sidebar using this method: -+# count - total number of messages -+# flagged - number of flagged messages -+# new - number of new messages -+# path - mailbox path -+# unsorted - do not sort the mailboxes -+set sidebar_sort_method = 'unsorted' -+ -+# -------------------------------------------------------------------------- -+# FUNCTIONS - shown with an example mapping -+# -------------------------------------------------------------------------- -+ -+# Move the highlight to the previous mailbox -+bind index,pager \Cp sidebar-prev -+ -+# Move the highlight to the next mailbox -+bind index,pager \Cn sidebar-next -+ -+# Open the highlighted mailbox -+bind index,pager \Co sidebar-open -+ -+# Move the highlight to the previous page -+# This is useful if you have a LOT of mailboxes. -+bind index,pager <F3> sidebar-page-up -+ -+# Move the highlight to the next page -+# This is useful if you have a LOT of mailboxes. -+bind index,pager <F4> sidebar-page-down -+ -+# Move the highlight to the previous mailbox containing new, or flagged, -+# mail. -+bind index,pager <F5> sidebar-prev-new -+ -+# Move the highlight to the next mailbox containing new, or flagged, mail. -+bind index,pager <F6> sidebar-next-new -+ -+# Toggle the visibility of the Sidebar. -+bind index,pager B sidebar-toggle-visible -+ -+# -------------------------------------------------------------------------- -+# COLORS - some unpleasant examples are given -+# -------------------------------------------------------------------------- -+# Note: All color operations are of the form: -+# color OBJECT FOREGROUND BACKGROUND -+ -+# Color of the current, open, mailbox -+# Note: This is a general Mutt option which colors all selected items. -+color indicator cyan black -+ -+# Color of the highlighted, but not open, mailbox. -+color sidebar_highlight black color8 -+ -+# Color of the divider separating the Sidebar from Mutt panels -+color sidebar_divider color8 black -+ -+# Color to give mailboxes containing flagged mail -+color sidebar_flagged red black -+ -+# Color to give mailboxes containing new mail -+color sidebar_new green black -+ -+# -------------------------------------------------------------------------- -+ -+# vim: syntax=muttrc -+ -+ -+ -+ -+ See Also -+ -+ -+ Regular Expressions -+ Patterns -+ Color command -+ notmuch patch -+ -+ -+ -+ -+ Known Bugs -+ Unsorted isn't -+ -+ -+ -+ Credits -+ -+ Justin Hibbits jrh29@po.cwru.edu -+ Thomer M. Gil mutt@thomer.com -+ David Sterba dsterba@suse.cz -+ Evgeni Golov evgeni@debian.org -+ Fabian Groffen grobian@gentoo.org -+ Jason DeTiberus jdetiber@redhat.com -+ Stefan Assmann sassmann@kpanic.de -+ Steve Kemp steve@steve.org.uk -+ Terry Chan tchan@lunar-linux.org -+ Tyler Earnest tylere@rne.st -+ Richard Russon rich@flatcap.org -+ -+ -+
-+ - - - -@@ -9237,6 +10338,17 @@ - - - -+sidebar_whitelist -+ -+item -+ -+ -+command -+ -+ -+ -+ -+ - source - - filename -diff -urN mutt-1.6.1/doc/mutt.css mutt-1.6.1-sidebar/doc/mutt.css ---- mutt-1.6.1/doc/mutt.css 2016-06-12 18:43:00.402447590 +0100 -+++ mutt-1.6.1-sidebar/doc/mutt.css 2016-06-12 18:43:03.811500752 +0100 -@@ -9,17 +9,24 @@ - div.table-contents table th, div.informaltable table th { - font-family:sans-serif; - background:#d0d0d0; -- font-weight:normal; -+ font-weight:bold; - vertical-align:top; - } --div.cmdsynopsis { border-left:1px solid #707070; padding-left:5px; } -+div.cmdsynopsis { border-left:1px solid #707070; padding-left: 1em; } - li div.cmdsynopsis { border-left:none; padding-left:0px; } --pre.screen, div.note { background:#f0f0f0; border:1px solid #c0c0c0; padding:5px; margin-left:2%; margin-right:2%; } -+li p { margin: 0; } -+pre.screen, div.note { border:1px solid #c0c0c0; margin-left:2%; margin-right:2%; } -+pre.screen { color: #ffffff; background:#000000; padding: 0.5em; } -+div.note { background:#ffff80; padding: 0.5em; } - div.example p.title { margin-left:2%; } - div.note h3 { font-size:small; font-style:italic; font-variant: small-caps; } - div.note h3:after { content: ":" } - div.note { margin-bottom: 5px; } --.command { font-family: monospace; font-weight: normal; } -+div.literallayout, .command { font-family: monospace; font-weight: normal; } - .command strong { font-weight: normal; } - tr { vertical-align: top; } --.comment { color:#707070; } -+.comment { color:#00c000; } -+code.literal { background: #f0f0f0; color: #000000; } -+span.indicator { background: #000060; color: #ffffff; } -+span.highlight { background: #404040; color: #ffffff; } -+span.reverse { background: #ffffff; color: #000000; } -diff -urN mutt-1.6.1/doc/muttrc.sidebar mutt-1.6.1-sidebar/doc/muttrc.sidebar ---- mutt-1.6.1/doc/muttrc.sidebar 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-sidebar/doc/muttrc.sidebar 2016-06-12 18:43:03.812500768 +0100 -@@ -0,0 +1,116 @@ -+# This is a complete list of sidebar-related configuration. -+ -+# -------------------------------------------------------------------------- -+# VARIABLES - shown with their default values -+# -------------------------------------------------------------------------- -+ -+# Should the Sidebar be shown? -+set sidebar_visible = no -+ -+# How wide should the Sidebar be in screen columns? -+# Note: Some characters, e.g. Chinese, take up two columns each. -+set sidebar_width = 20 -+ -+# Should the mailbox paths be abbreviated? -+set sidebar_short_path = no -+ -+# When abbreviating mailbox path names, use any of these characters as path -+# separators. Only the part after the last separators will be shown. -+# For file folders '/' is good. For IMAP folders, often '.' is useful. -+set sidebar_delim_chars = '/.' -+ -+# If the mailbox path is abbreviated, should it be indented? -+set sidebar_folder_indent = no -+ -+# Indent mailbox paths with this string. -+set sidebar_indent_string = ' ' -+ -+# Make the Sidebar only display mailboxes that contain new, or flagged, -+# mail. -+set sidebar_new_mail_only = no -+ -+# Any mailboxes that are whitelisted will always be visible, even if the -+# sidebar_new_mail_only option is enabled. -+sidebar_whitelist '/home/user/mailbox1' -+sidebar_whitelist '/home/user/mailbox2' -+ -+# When searching for mailboxes containing new mail, should the search wrap -+# around when it reaches the end of the list? -+set sidebar_next_new_wrap = no -+ -+# The character to use as the divider between the Sidebar and the other Mutt -+# panels. -+# Note: Only the first character of this string is used. -+set sidebar_divider_char = '|' -+ -+# Display the Sidebar mailboxes using this format string. -+set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S' -+ -+# Sidebar will not refresh its list of mailboxes any more frequently than -+# this number of seconds. This will help reduce disk/network traffic. -+set sidebar_refresh_time = 60 -+ -+# Sort the mailboxes in the Sidebar using this method: -+# count - total number of messages -+# flagged - number of flagged messages -+# new - number of new messages -+# path - mailbox path -+# unsorted - do not sort the mailboxes -+set sidebar_sort_method = 'unsorted' -+ -+# -------------------------------------------------------------------------- -+# FUNCTIONS - shown with an example mapping -+# -------------------------------------------------------------------------- -+ -+# Move the highlight to the previous mailbox -+bind index,pager \Cp sidebar-prev -+ -+# Move the highlight to the next mailbox -+bind index,pager \Cn sidebar-next -+ -+# Open the highlighted mailbox -+bind index,pager \Co sidebar-open -+ -+# Move the highlight to the previous page -+# This is useful if you have a LOT of mailboxes. -+bind index,pager sidebar-page-up -+ -+# Move the highlight to the next page -+# This is useful if you have a LOT of mailboxes. -+bind index,pager sidebar-page-down -+ -+# Move the highlight to the previous mailbox containing new, or flagged, -+# mail. -+bind index,pager sidebar-prev-new -+ -+# Move the highlight to the next mailbox containing new, or flagged, mail. -+bind index,pager sidebar-next-new -+ -+# Toggle the visibility of the Sidebar. -+bind index,pager B sidebar-toggle-visible -+ -+# -------------------------------------------------------------------------- -+# COLORS - some unpleasant examples are given -+# -------------------------------------------------------------------------- -+# Note: All color operations are of the form: -+# color OBJECT FOREGROUND BACKGROUND -+ -+# Color of the current, open, mailbox -+# Note: This is a general Mutt option which colors all selected items. -+color indicator cyan black -+ -+# Color of the highlighted, but not open, mailbox. -+color sidebar_highlight black color8 -+ -+# Color of the divider separating the Sidebar from Mutt panels -+color sidebar_divider color8 black -+ -+# Color to give mailboxes containing flagged mail -+color sidebar_flagged red black -+ -+# Color to give mailboxes containing new mail -+color sidebar_new green black -+ -+# -------------------------------------------------------------------------- -+ -+# vim: syntax=muttrc -diff -urN mutt-1.6.1/doc/vimrc.sidebar mutt-1.6.1-sidebar/doc/vimrc.sidebar ---- mutt-1.6.1/doc/vimrc.sidebar 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-sidebar/doc/vimrc.sidebar 2016-06-12 18:43:03.813500783 +0100 -@@ -0,0 +1,35 @@ -+" Vim syntax file for the mutt sidebar patch -+ -+syntax keyword muttrcVarBool skipwhite contained sidebar_folder_indent nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr -+syntax keyword muttrcVarBool skipwhite contained sidebar_new_mail_only nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr -+syntax keyword muttrcVarBool skipwhite contained sidebar_next_new_wrap nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr -+syntax keyword muttrcVarBool skipwhite contained sidebar_short_path nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr -+syntax keyword muttrcVarBool skipwhite contained sidebar_visible nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr -+ -+syntax keyword muttrcVarNum skipwhite contained sidebar_refresh_time nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr -+syntax keyword muttrcVarNum skipwhite contained sidebar_width nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr -+ -+syntax keyword muttrcVarStr contained skipwhite sidebar_divider_char nextgroup=muttrcVarEqualsIdxFmt -+syntax keyword muttrcVarStr contained skipwhite sidebar_delim_chars nextgroup=muttrcVarEqualsIdxFmt -+syntax keyword muttrcVarStr contained skipwhite sidebar_format nextgroup=muttrcVarEqualsIdxFmt -+syntax keyword muttrcVarStr contained skipwhite sidebar_indent_string nextgroup=muttrcVarEqualsIdxFmt -+syntax keyword muttrcVarStr contained skipwhite sidebar_sort_method nextgroup=muttrcVarEqualsIdxFmt -+ -+syntax keyword muttrcCommand sidebar_whitelist -+ -+syntax match muttrcFunction contained "\" -+syntax match muttrcFunction contained "\" -+syntax match muttrcFunction contained "\" -+syntax match muttrcFunction contained "\" -+syntax match muttrcFunction contained "\" -+syntax match muttrcFunction contained "\" -+syntax match muttrcFunction contained "\" -+syntax match muttrcFunction contained "\" -+ -+syntax keyword muttrcColorField contained sidebar_divider -+syntax keyword muttrcColorField contained sidebar_flagged -+syntax keyword muttrcColorField contained sidebar_highlight -+syntax keyword muttrcColorField contained sidebar_indicator -+syntax keyword muttrcColorField contained sidebar_new -+ -+" vim: syntax=vim -diff -urN mutt-1.6.1/filter.c mutt-1.6.1-sidebar/filter.c ---- mutt-1.6.1/filter.c 2016-06-12 18:43:00.403447606 +0100 -+++ mutt-1.6.1-sidebar/filter.c 2016-06-12 18:43:03.835501127 +0100 -@@ -21,6 +21,7 @@ - #endif - - #include "mutt.h" -+#include "mutt_curses.h" - - #include - #include -@@ -34,6 +35,7 @@ - int fdin, int fdout, int fderr) - { - int pin[2], pout[2], perr[2], thepid; -+ char columns[11]; - - if (in) - { -@@ -117,6 +119,9 @@ - close (fderr); - } - -+ snprintf (columns, sizeof (columns), "%d", COLS - SidebarWidth); -+ setenv ("COLUMNS", columns, 1); -+ - execl (EXECSHELL, "sh", "-c", cmd, NULL); - _exit (127); - } -diff -urN mutt-1.6.1/flags.c mutt-1.6.1-sidebar/flags.c ---- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100 -+++ mutt-1.6.1-sidebar/flags.c 2016-06-12 18:43:03.956503013 +0100 -@@ -25,6 +25,10 @@ - #include "sort.h" - #include "mx.h" - -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif -+ - void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx) - { - int changed = h->changed; -@@ -263,6 +267,9 @@ - */ - if (h->searched && (changed != h->changed || deleted != ctx->deleted || tagged != ctx->tagged || flagged != ctx->flagged)) - h->searched = 0; -+#ifdef USE_SIDEBAR -+ mutt_sb_draw(); -+#endif - } - - void mutt_tag_set_flag (int flag, int bf) -diff -urN mutt-1.6.1/functions.h mutt-1.6.1-sidebar/functions.h ---- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100 -+++ mutt-1.6.1-sidebar/functions.h 2016-06-12 18:43:03.956503013 +0100 -@@ -168,6 +168,16 @@ - { "decrypt-copy", OP_DECRYPT_COPY, NULL }, - { "decrypt-save", OP_DECRYPT_SAVE, NULL }, - -+#ifdef USE_SIDEBAR -+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, -+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL }, -+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, -+ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL }, -+ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL }, -+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL }, -+ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL }, -+#endif - - { NULL, 0, NULL } - }; -@@ -272,6 +282,17 @@ - - { "what-key", OP_WHAT_KEY, NULL }, - -+#ifdef USE_SIDEBAR -+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL }, -+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL }, -+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL }, -+ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL }, -+ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL }, -+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL }, -+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL }, -+ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL }, -+#endif -+ - { NULL, 0, NULL } - }; - -diff -urN mutt-1.6.1/globals.h mutt-1.6.1-sidebar/globals.h ---- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100 -+++ mutt-1.6.1-sidebar/globals.h 2016-06-12 18:43:03.956503013 +0100 -@@ -118,6 +118,12 @@ - WHERE char *SendCharset; - WHERE char *Sendmail; - WHERE char *Shell; -+#ifdef USE_SIDEBAR -+WHERE char *SidebarDelimChars; -+WHERE char *SidebarDividerChar; -+WHERE char *SidebarFormat; -+WHERE char *SidebarIndentString; -+#endif - WHERE char *Signature; - WHERE char *SimpleSearch; - #if USE_SMTP -@@ -214,6 +220,14 @@ - WHERE short ScoreThresholdRead; - WHERE short ScoreThresholdFlag; - -+/* This isn't excluded from the build because it's too entwined in the code. -+ * For now. */ -+WHERE short SidebarWidth; -+#ifdef USE_SIDEBAR -+WHERE short SidebarRefreshTime; -+WHERE LIST *SidebarWhitelist INITVAL(0); -+#endif -+ - #ifdef USE_IMAP - WHERE short ImapKeepalive; - WHERE short ImapPipelineDepth; -diff -urN mutt-1.6.1/imap/command.c mutt-1.6.1-sidebar/imap/command.c ---- mutt-1.6.1/imap/command.c 2016-06-12 18:43:00.405447637 +0100 -+++ mutt-1.6.1-sidebar/imap/command.c 2016-06-12 18:43:03.839501189 +0100 -@@ -1016,6 +1016,14 @@ - opened */ - status->uidnext = oldun; - -+#ifdef USE_SIDEBAR -+ /* Make the sidebar show the correct numbers */ -+ if (status->messages) { -+ inc->msg_count = status->messages; -+ inc->msg_unread = status->unseen; -+ } -+#endif -+ - FREE (&value); - return; - } -diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-sidebar/imap/imap.c ---- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100 -+++ mutt-1.6.1-sidebar/imap/imap.c 2016-06-12 18:43:03.958503044 +0100 -@@ -1535,7 +1535,11 @@ - - imap_munge_mbox_name (idata, munged, sizeof (munged), name); - snprintf (command, sizeof (command), -+#ifdef USE_SIDEBAR -+ "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT MESSAGES)", munged); -+#else - "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged); -+#endif - - if (imap_exec (idata, command, IMAP_CMD_QUEUE) < 0) - { -diff -urN mutt-1.6.1/init.c mutt-1.6.1-sidebar/init.c ---- mutt-1.6.1/init.c 2016-06-12 18:43:00.406447652 +0100 -+++ mutt-1.6.1-sidebar/init.c 2016-06-12 18:43:03.959503060 +0100 -@@ -2173,6 +2173,9 @@ - case DT_SORT_AUX: - map = SortAuxMethods; - break; -+ case DT_SORT_SIDEBAR: -+ map = SortSidebarMethods; -+ break; - default: - map = SortMethods; - break; -diff -urN mutt-1.6.1/init.h mutt-1.6.1-sidebar/init.h ---- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100 -+++ mutt-1.6.1-sidebar/init.h 2016-06-12 18:43:03.960503075 +0100 -@@ -42,11 +42,12 @@ - #define DTYPE(x) ((x) & DT_MASK) - - /* subtypes */ --#define DT_SUBTYPE_MASK 0xf0 -+#define DT_SUBTYPE_MASK 0xff0 - #define DT_SORT_ALIAS 0x10 - #define DT_SORT_BROWSER 0x20 - #define DT_SORT_KEYS 0x40 - #define DT_SORT_AUX 0x80 -+#define DT_SORT_SIDEBAR 0x100 - - /* flags to parse_set() */ - #define M_SET_INV (1<<0) /* default is to invert all vars */ -@@ -2665,6 +2666,147 @@ - ** Command to use when spawning a subshell. By default, the user's login - ** shell from \fC/etc/passwd\fP is used. - */ -+#ifdef USE_SIDEBAR -+ { "sidebar_divider_char", DT_STR, R_BOTH, UL &SidebarDividerChar, UL "|" }, -+ /* -+ ** .pp -+ ** This specifies the characters to be drawn between the sidebar (when -+ ** visible) and the other Mutt panels. ASCII and Unicode line-drawing -+ ** characters are supported. -+ */ -+ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." }, -+ /* -+ ** .pp -+ ** This contains the list of characters which you would like to treat -+ ** as folder separators for displaying paths in the sidebar. -+ ** .pp -+ ** Local mail is often arranged in directories: `dir1/dir2/mailbox'. -+ ** .ts -+ ** set sidebar_delim_chars='/' -+ ** .te -+ ** .pp -+ ** IMAP mailboxes are often named: `folder1.folder2.mailbox'. -+ ** .ts -+ ** set sidebar_delim_chars='.' -+ ** .te -+ ** .pp -+ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_indent_string. -+ */ -+ { "sidebar_folder_indent", DT_BOOL, R_BOTH, OPTSIDEBARFOLDERINDENT, 0 }, -+ /* -+ ** .pp -+ ** Set this to indent mailboxes in the sidebar. -+ ** .pp -+ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_indent_string, $$sidebar_delim_chars. -+ */ -+ { "sidebar_format", DT_STR, R_NONE, UL &SidebarFormat, UL "%B%?F? [%F]?%* %?N?%N/?%S" }, -+ /* -+ ** .pp -+ ** This variable allows you to customize the sidebar display. This string is -+ ** similar to $$index_format, but has its own set of \fCprintf(3)\fP-like -+ ** sequences: -+ ** .dl -+ ** .dt %B .dd Name of the mailbox -+ ** .dt %S .dd * Size of mailbox (total number of messages) -+ ** .dt %N .dd * Number of New messages in the mailbox -+ ** .dt %F .dd * Number of Flagged messages in the mailbox -+ ** .dt %! .dd ``!'' : one flagged message; -+ ** ``!!'' : two flagged messages; -+ ** ``n!'' : n flagged messages (for n > 2). -+ ** Otherwise prints nothing. -+ ** .dt %d .dd * @ Number of deleted messages -+ ** .dt %L .dd * @ Number of messages after limiting -+ ** .dt %t .dd * @ Number of tagged messages -+ ** .dt %>X .dd right justify the rest of the string and pad with ``X'' -+ ** .dt %|X .dd pad to the end of the line with ``X'' -+ ** .dt %*X .dd soft-fill with character ``X'' as pad -+ ** .de -+ ** .pp -+ ** * = Can be optionally printed if nonzero -+ ** @ = Only applicable to the current folder -+ */ -+ { "sidebar_indent_string", DT_STR, R_BOTH, UL &SidebarIndentString, UL " " }, -+ /* -+ ** .pp -+ ** This specifies the string that is used to indent mailboxes in the sidebar. -+ ** It defaults to two spaces. -+ ** .pp -+ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_delim_chars. -+ */ -+ { "sidebar_new_mail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 }, -+ /* -+ ** .pp -+ ** When set, the sidebar will only display mailboxes containing new, or -+ ** flagged, mail. -+ ** .pp -+ ** \fBSee also:\fP $sidebar_whitelist. -+ */ -+ { "sidebar_next_new_wrap", DT_BOOL, R_BOTH, UL OPTSIDEBARNEXTNEWWRAP, 0 }, -+ /* -+ ** .pp -+ ** When set, the \fC\fP command will not stop and the end of -+ ** the list of mailboxes, but wrap around to the beginning. The -+ ** \fC\fP command is similarly affected, wrapping around to -+ ** the end of the list. -+ */ -+ { "sidebar_refresh_time", DT_NUM, R_BOTH, UL &SidebarRefreshTime, 60 }, -+ /* -+ ** .pp -+ ** Set sidebar_refresh_time to the minimum number of seconds between refreshes. -+ ** This will reduce network traffic. -+ ** .pp -+ ** \fBNote:\fP Set to 0 to disable refreshing. -+ */ -+ { "sidebar_short_path", DT_BOOL, R_BOTH, OPTSIDEBARSHORTPATH, 0 }, -+ /* -+ ** .pp -+ ** By default the sidebar will show the mailbox's path, relative to the -+ ** $$folder variable. Setting \fCsidebar_shortpath=yes\fP will shorten the -+ ** names relative to the previous name. Here's an example: -+ ** .dl -+ ** .dt \fBshortpath=no\fP .dd \fBshortpath=yes\fP .dd \fBshortpath=yes, folderindent=yes, indentstr=".."\fP -+ ** .dt \fCfruit\fP .dd \fCfruit\fP .dd \fCfruit\fP -+ ** .dt \fCfruit.apple\fP .dd \fCapple\fP .dd \fC..apple\fP -+ ** .dt \fCfruit.banana\fP .dd \fCbanana\fP .dd \fC..banana\fP -+ ** .dt \fCfruit.cherry\fP .dd \fCcherry\fP .dd \fC..cherry\fP -+ ** .de -+ ** .pp -+ ** \fBSee also:\fP $$sidebar_delim_chars, $$sidebar_folder_indent, $$sidebar_indent_string. -+ */ -+ { "sidebar_sort_method", DT_SORT|DT_SORT_SIDEBAR, R_NONE, UL &SidebarSortMethod, SORT_ORDER }, -+ /* -+ ** .pp -+ ** Specifies how to sort entries in the file browser. By default, the -+ ** entries are sorted alphabetically. Valid values: -+ ** .il -+ ** .dd alpha (alphabetically) -+ ** .dd count (all message count) -+ ** .dd date -+ ** .dd desc (description) -+ ** .dd new (new message count) -+ ** .dd size -+ ** .dd unsorted -+ ** .ie -+ ** .pp -+ ** You may optionally use the ``reverse-'' prefix to specify reverse sorting -+ ** order (example: ``\fCset sort_browser=reverse-date\fP''). -+ */ -+ { "sidebar_visible", DT_BOOL, R_BOTH, OPTSIDEBAR, 0 }, -+ /* -+ ** .pp -+ ** This specifies whether or not to show sidebar. The sidebar shows a list of -+ ** all your mailboxes. -+ ** .pp -+ ** \fBSee also:\fP $$sidebar_format, $$sidebar_width -+ */ -+ { "sidebar_width", DT_NUM, R_BOTH, UL &SidebarWidth, 0 }, -+ /* -+ ** .pp -+ ** This controls the width of the sidebar. It is measured in screen columns. -+ ** For example: sidebar_width=20 could display 20 ASCII characters, or 10 -+ ** Chinese characters. -+ */ -+#endif - { "sig_dashes", DT_BOOL, R_NONE, OPTSIGDASHES, 1 }, - /* - ** .pp -@@ -3652,6 +3794,19 @@ - { NULL, 0 } - }; - -+const struct mapping_t SortSidebarMethods[] = { -+ { "alpha", SORT_PATH }, -+ { "count", SORT_COUNT }, -+ { "desc", SORT_DESC }, -+ { "flagged", SORT_FLAGGED }, -+ { "mailbox-order", SORT_ORDER }, -+ { "name", SORT_PATH }, -+ { "new", SORT_COUNT_NEW }, -+ { "path", SORT_PATH }, -+ { "unsorted", SORT_ORDER }, -+ { NULL, 0 } -+}; -+ - - /* functions used to parse commands in a rc file */ - -@@ -3741,6 +3896,9 @@ - { "send-hook", mutt_parse_hook, M_SENDHOOK }, - { "send2-hook", mutt_parse_hook, M_SEND2HOOK }, - { "set", parse_set, 0 }, -+#ifdef USE_SIDEBAR -+ { "sidebar_whitelist",parse_list, UL &SidebarWhitelist }, -+#endif - { "source", parse_source, 0 }, - { "spam", parse_spam_list, M_SPAM }, - { "nospam", parse_spam_list, M_NOSPAM }, -diff -urN mutt-1.6.1/keymap.c mutt-1.6.1-sidebar/keymap.c ---- mutt-1.6.1/keymap.c 2016-06-12 18:43:00.408447684 +0100 -+++ mutt-1.6.1-sidebar/keymap.c 2016-06-12 18:43:03.960503075 +0100 -@@ -453,6 +453,9 @@ - } - #endif - -+ /* update sidebar stats */ -+ mutt_buffy_check(0); -+ - timeout (i * 1000); - tmp = mutt_getch(); - timeout (-1); -diff -urN mutt-1.6.1/mailbox.h mutt-1.6.1-sidebar/mailbox.h ---- mutt-1.6.1/mailbox.h 2016-06-12 18:43:00.408447684 +0100 -+++ mutt-1.6.1-sidebar/mailbox.h 2016-06-12 18:43:03.960503075 +0100 -@@ -27,6 +27,9 @@ - #define M_NEWFOLDER (1<<4) /* create a new folder - same as M_APPEND, but uses - * safe_fopen() for mbox-style folders. - */ -+#ifdef USE_SIDEBAR -+#define M_PEEK (1<<5) /* revert atime back after taking a look (if applicable) */ -+#endif - - /* mx_open_new_message() */ - #define M_ADD_FROM (1<<0) /* add a From_ line */ -diff -urN mutt-1.6.1/main.c mutt-1.6.1-sidebar/main.c ---- mutt-1.6.1/main.c 2016-06-12 18:43:00.409447699 +0100 -+++ mutt-1.6.1-sidebar/main.c 2016-06-12 18:43:03.961503091 +0100 -@@ -31,6 +31,9 @@ - #include "url.h" - #include "mutt_crypt.h" - #include "mutt_idna.h" -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif - - #ifdef USE_SASL - #include "mutt_sasl.h" -@@ -485,6 +488,12 @@ - "-USE_HCACHE " - #endif - -+#ifdef USE_SIDEBAR -+ "+USE_SIDEBAR " -+#else -+ "-USE_SIDEBAR " -+#endif -+ - ); - - #ifdef ISPELL -@@ -557,7 +566,11 @@ - - int main (int argc, char **argv) - { -+#ifdef USE_SIDEBAR -+ char folder[PATH_MAX] = ""; -+#else - char folder[_POSIX_PATH_MAX] = ""; -+#endif - char *subject = NULL; - char *includeFile = NULL; - char *draftFile = NULL; -@@ -828,6 +841,9 @@ - clear (); - mutt_error = mutt_curses_error; - mutt_message = mutt_curses_message; -+#ifdef USE_SIDEBAR -+ mutt_sb_init(); -+#endif - } - - /* Create the Maildir directory if it doesn't exist. */ -@@ -1184,6 +1200,15 @@ - strfcpy (folder, NONULL(Spoolfile), sizeof (folder)); - mutt_expand_path (folder, sizeof (folder)); - -+#ifdef USE_SIDEBAR -+ { -+ char tmpfolder[PATH_MAX] = ""; -+ strfcpy (tmpfolder, folder, sizeof (tmpfolder)); -+ if (!realpath (tmpfolder, folder)) -+ strfcpy (folder, tmpfolder, sizeof (tmpfolder)); -+ } -+#endif -+ - mutt_str_replace (&CurrentFolder, folder); - mutt_str_replace (&LastFolder, folder); - -@@ -1206,6 +1231,9 @@ - if((Context = mx_open_mailbox (folder, ((flags & M_RO) || option (OPTREADONLY)) ? M_READONLY : 0, NULL)) - || !explicit_folder) - { -+#ifdef USE_SIDEBAR -+ mutt_sb_set_open_buffy (folder); -+#endif - mutt_index_menu (); - if (Context) - FREE (&Context); -diff -urN mutt-1.6.1/Makefile.am mutt-1.6.1-sidebar/Makefile.am ---- mutt-1.6.1/Makefile.am 2016-06-12 18:43:00.389447388 +0100 -+++ mutt-1.6.1-sidebar/Makefile.am 2016-06-12 18:43:03.944502826 +0100 -@@ -56,7 +56,7 @@ - mutt_idna.c mutt_sasl.c mutt_socket.c mutt_ssl.c mutt_ssl_gnutls.c \ - mutt_tunnel.c pgp.c pgpinvoke.c pgpkey.c pgplib.c pgpmicalg.c \ - pgppacket.c pop.c pop_auth.c pop_lib.c remailer.c resize.c sha1.c \ -- smime.c smtp.c utf8.c wcwidth.c \ -+ sidebar.c smime.c smtp.c utf8.c wcwidth.c \ - bcache.h browser.h hcache.h mbyte.h mutt_idna.h remailer.h url.h - - EXTRA_DIST = COPYRIGHT GPL OPS OPS.PGP OPS.CRYPT OPS.SMIME TODO UPDATING \ -@@ -71,7 +71,7 @@ - mbyte.h lib.h extlib.c pgpewrap.c smime_keys.pl pgplib.h \ - README.SSL smime.h group.h \ - muttbug pgppacket.h depcomp ascii.h BEWARE PATCHES patchlist.sh \ -- ChangeLog mkchangelog.sh mutt_idna.h \ -+ ChangeLog mkchangelog.sh mutt_idna.h sidebar.h OPS.sidebar \ - snprintf.c regex.c crypt-gpgme.h hcachever.sh.in sys_socket.h \ - txt2c.c txt2c.sh version.sh check_sec.sh - -@@ -129,9 +129,9 @@ - keymap_defs.h: $(OPS) $(srcdir)/gen_defs - $(srcdir)/gen_defs $(OPS) > keymap_defs.h - --keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs -+keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs - rm -f $@ -- $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.PGP \ -+ $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP \ - $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME \ - > keymap_alldefs.h - -diff -urN mutt-1.6.1/mbox.c mutt-1.6.1-sidebar/mbox.c ---- mutt-1.6.1/mbox.c 2016-06-12 18:43:00.409447699 +0100 -+++ mutt-1.6.1-sidebar/mbox.c 2016-06-12 18:43:03.961503091 +0100 -@@ -100,6 +100,9 @@ - mutt_perror (ctx->path); - return (-1); - } -+#ifdef USE_SIDEBAR -+ ctx->atime = sb.st_atime; -+#endif - ctx->mtime = sb.st_mtime; - ctx->size = sb.st_size; - -@@ -251,6 +254,9 @@ - - ctx->size = sb.st_size; - ctx->mtime = sb.st_mtime; -+#ifdef USE_SIDEBAR -+ ctx->atime = sb.st_atime; -+#endif - - #ifdef NFS_ATTRIBUTE_HACK - if (sb.st_mtime > sb.st_atime) -diff -urN mutt-1.6.1/menu.c mutt-1.6.1-sidebar/menu.c ---- mutt-1.6.1/menu.c 2016-06-12 18:43:00.409447699 +0100 -+++ mutt-1.6.1-sidebar/menu.c 2016-06-12 18:43:03.961503091 +0100 -@@ -24,6 +24,9 @@ - #include "mutt_curses.h" - #include "mutt_menu.h" - #include "mbyte.h" -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif - - char* SearchBuffers[MENU_MAX]; - -@@ -184,7 +187,7 @@ - { - char *scratch = safe_strdup (s); - int shift = option (OPTARROWCURSOR) ? 3 : 0; -- int cols = COLS - shift; -+ int cols = COLS - shift - SidebarWidth; - - mutt_format_string (s, n, cols, cols, FMT_LEFT, ' ', scratch, mutt_strlen (scratch), 1); - s[n - 1] = 0; -@@ -237,6 +240,9 @@ - int do_color; - int attr; - -+#ifdef USE_SIDEBAR -+ mutt_sb_draw(); -+#endif - for (i = menu->top; i < menu->top + menu->pagelen; i++) - { - if (i < menu->max) -@@ -247,7 +253,7 @@ - menu_pad_string (buf, sizeof (buf)); - - ATTRSET(attr); -- move(i - menu->top + menu->offset, 0); -+ move(i - menu->top + menu->offset, SidebarWidth); - do_color = 1; - - if (i == menu->current) -@@ -270,7 +276,11 @@ - else - { - NORMAL_COLOR; -+#ifdef USE_SIDEBAR -+ CLEARLINE_WIN(i - menu->top + menu->offset); -+#else - CLEARLINE(i - menu->top + menu->offset); -+#endif - } - } - NORMAL_COLOR; -@@ -287,7 +297,7 @@ - return; - } - -- move (menu->oldcurrent + menu->offset - menu->top, 0); -+ move (menu->oldcurrent + menu->offset - menu->top, SidebarWidth); - ATTRSET(menu->color (menu->oldcurrent)); - - if (option (OPTARROWCURSOR)) -@@ -299,13 +309,13 @@ - { - menu_make_entry (buf, sizeof (buf), menu, menu->oldcurrent); - menu_pad_string (buf, sizeof (buf)); -- move (menu->oldcurrent + menu->offset - menu->top, 3); -+ move (menu->oldcurrent + menu->offset - menu->top, SidebarWidth + 3); - print_enriched_string (menu->color(menu->oldcurrent), (unsigned char *) buf, 1); - } - - /* now draw it in the new location */ - SETCOLOR(MT_COLOR_INDICATOR); -- mvaddstr(menu->current + menu->offset - menu->top, 0, "->"); -+ mvaddstr(menu->current + menu->offset - menu->top, SidebarWidth, "->"); - } - else - { -@@ -318,7 +328,7 @@ - menu_make_entry (buf, sizeof (buf), menu, menu->current); - menu_pad_string (buf, sizeof (buf)); - SETCOLOR(MT_COLOR_INDICATOR); -- move(menu->current - menu->top + menu->offset, 0); -+ move(menu->current - menu->top + menu->offset, SidebarWidth); - print_enriched_string (menu->color(menu->current), (unsigned char *) buf, 0); - } - menu->redraw &= REDRAW_STATUS; -@@ -330,7 +340,7 @@ - char buf[LONG_STRING]; - int attr = menu->color (menu->current); - -- move (menu->current + menu->offset - menu->top, 0); -+ move (menu->current + menu->offset - menu->top, SidebarWidth); - menu_make_entry (buf, sizeof (buf), menu, menu->current); - menu_pad_string (buf, sizeof (buf)); - -@@ -873,7 +883,7 @@ - - - if (option (OPTARROWCURSOR)) -- move (menu->current - menu->top + menu->offset, 2); -+ move (menu->current - menu->top + menu->offset, SidebarWidth + 2); - else if (option (OPTBRAILLEFRIENDLY)) - move (menu->current - menu->top + menu->offset, 0); - else -diff -urN mutt-1.6.1/mh.c mutt-1.6.1-sidebar/mh.c ---- mutt-1.6.1/mh.c 2016-06-12 18:43:00.410447715 +0100 -+++ mutt-1.6.1-sidebar/mh.c 2016-06-12 18:43:03.962503107 +0100 -@@ -295,6 +295,48 @@ - mhs_free_sequences (&mhs); - } - -+#ifdef USE_SIDEBAR -+/** -+ * mh_buffy_update - Update messages counts for an mh mailbox -+ * @mailbox: BUFFY representing a maildir mailbox -+ * -+ * Read through an mh mailbox and count messages. Save the number of new, -+ * flagged messages and a timestamp for now. -+ */ -+void -+mh_buffy_update (BUFFY *mailbox) -+{ -+ int i; -+ struct mh_sequences mhs; -+ -+ if (!mailbox) -+ return; -+ -+ if (!option (OPTSIDEBAR)) -+ return; -+ -+ memset (&mhs, 0, sizeof (mhs)); -+ -+ if (mh_read_sequences (&mhs, mailbox->path) < 0) -+ return; -+ -+ mailbox->msg_count = 0; -+ mailbox->msg_unread = 0; -+ mailbox->msg_flagged = 0; -+ -+ for (i = 0; i <= mhs.max; i++) -+ { -+ mailbox->msg_count++; -+ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN) -+ mailbox->msg_unread++; -+ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED) -+ mailbox->msg_flagged++; -+ } -+ mhs_free_sequences (&mhs); -+ mailbox->sb_last_checked = time (NULL); -+} -+#endif -+ - static int mh_mkstemp (CONTEXT * dest, FILE ** fp, char **tgt) - { - int fd; -diff -urN mutt-1.6.1/mutt_curses.h mutt-1.6.1-sidebar/mutt_curses.h ---- mutt-1.6.1/mutt_curses.h 2016-06-12 18:43:00.410447715 +0100 -+++ mutt-1.6.1-sidebar/mutt_curses.h 2016-06-12 18:43:03.962503107 +0100 -@@ -64,6 +64,9 @@ - #undef lines - #endif /* lines */ - -+#ifdef USE_SIDEBAR -+#define CLEARLINE_WIN(x) move (x,SidebarWidth), clrtoeol() -+#endif - #define CLEARLINE(x) move(x,0), clrtoeol() - #define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x) - #define BEEP() do { if (option (OPTBEEP)) beep(); } while (0) -@@ -124,6 +127,14 @@ - MT_COLOR_UNDERLINE, - MT_COLOR_INDEX, - MT_COLOR_PROMPT, -+#ifdef USE_SIDEBAR -+ MT_COLOR_DIVIDER, -+ MT_COLOR_FLAGGED, -+ MT_COLOR_HIGHLIGHT, -+ MT_COLOR_NEW, -+ MT_COLOR_SB_INDICATOR, -+ MT_COLOR_SB_SPOOLFILE, -+#endif - MT_COLOR_MAX - }; - -@@ -163,12 +174,16 @@ - - static inline int mutt_term_width(short wrap) - { -+ int cols = COLS; -+#ifdef USE_SIDEBAR -+ cols -= SidebarWidth; -+#endif - if (wrap < 0) -- return COLS > -wrap ? COLS + wrap : COLS; -+ return cols > -wrap ? cols + wrap : cols; - else if (wrap) -- return wrap < COLS ? wrap : COLS; -+ return wrap < cols ? wrap : cols; - else -- return COLS; -+ return cols; - } - - extern int *ColorQuote; -diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-sidebar/mutt.h ---- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100 -+++ mutt-1.6.1-sidebar/mutt.h 2016-06-12 18:43:03.962503107 +0100 -@@ -428,6 +428,13 @@ - OPTSAVEEMPTY, - OPTSAVENAME, - OPTSCORE, -+#ifdef USE_SIDEBAR -+ OPTSIDEBAR, -+ OPTSIDEBARFOLDERINDENT, -+ OPTSIDEBARNEWMAILONLY, -+ OPTSIDEBARNEXTNEWWRAP, -+ OPTSIDEBARSHORTPATH, -+#endif - OPTSIGDASHES, - OPTSIGONTOP, - OPTSORTRE, -@@ -872,6 +879,9 @@ - { - char *path; - FILE *fp; -+#ifdef USE_SIDEBAR -+ time_t atime; -+#endif - time_t mtime; - off_t size; - off_t vsize; -@@ -906,6 +916,9 @@ - unsigned int quiet : 1; /* inhibit status messages? */ - unsigned int collapsed : 1; /* are all threads collapsed? */ - unsigned int closing : 1; /* mailbox is being closed */ -+#ifdef USE_SIDEBAR -+ unsigned int peekonly : 1; /* just taking a glance, revert atime */ -+#endif - - /* driver hooks */ - void *data; /* driver specific data */ -diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-sidebar/muttlib.c ---- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100 -+++ mutt-1.6.1-sidebar/muttlib.c 2016-06-12 18:43:03.963503122 +0100 -@@ -1282,7 +1282,7 @@ - pl = pw = 1; - - /* see if there's room to add content, else ignore */ -- if ((col < COLS && wlen < destlen) || soft) -+ if ((col < (COLS - SidebarWidth) && (wlen < destlen)) || soft) - { - int pad; - -@@ -1293,7 +1293,7 @@ - - /* try to consume as many columns as we can, if we don't have - * memory for that, use as much memory as possible */ -- pad = (COLS - col - wid) / pw; -+ pad = (COLS - SidebarWidth - col - wid) / pw; - if (pad > 0 && wlen + (pad * pl) + len > destlen) - pad = ((signed)(destlen - wlen - len)) / pl; - if (pad > 0) -@@ -1312,13 +1312,13 @@ - /* \0-terminate dest for length computation in mutt_wstr_trunc() */ - *wptr = 0; - /* make sure right part is at most as wide as display */ -- len = mutt_wstr_trunc (buf, destlen, COLS-offset, &wid); -+ len = mutt_wstr_trunc (buf, destlen, COLS - offset - SidebarWidth, &wid); - /* truncate left so that right part fits completely in */ - wlen = mutt_wstr_trunc (dest, destlen - len, col + pad*pw -offset, &col); - wptr = dest + wlen; - } - if (len + wlen > destlen) -- len = mutt_wstr_trunc (buf, destlen - wlen, COLS - col, NULL); -+ len = mutt_wstr_trunc (buf, destlen - wlen, COLS - SidebarWidth - col, NULL); - memcpy (wptr, buf, len); - wptr += len; - wlen += len; -diff -urN mutt-1.6.1/mutt_menu.h mutt-1.6.1-sidebar/mutt_menu.h ---- mutt-1.6.1/mutt_menu.h 2016-06-12 18:43:00.410447715 +0100 -+++ mutt-1.6.1-sidebar/mutt_menu.h 2016-06-12 18:43:03.962503107 +0100 -@@ -34,6 +34,9 @@ - #define REDRAW_FULL (1<<5) - #define REDRAW_BODY (1<<6) - #define REDRAW_SIGWINCH (1<<7) -+#ifdef USE_SIDEBAR -+#define REDRAW_SIDEBAR (1<<8) -+#endif - - #define M_MODEFMT "-- Mutt: %s" - -diff -urN mutt-1.6.1/mx.c mutt-1.6.1-sidebar/mx.c ---- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100 -+++ mutt-1.6.1-sidebar/mx.c 2016-06-12 18:43:03.963503122 +0100 -@@ -29,6 +29,9 @@ - #include "copy.h" - #include "keymap.h" - #include "url.h" -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif - - #ifdef USE_IMAP - #include "imap.h" -@@ -580,6 +583,7 @@ - * M_APPEND open mailbox for appending - * M_READONLY open mailbox in read-only mode - * M_QUIET only print error messages -+ * M_PEEK revert atime where applicable - * ctx if non-null, context struct to use - */ - CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx) -@@ -602,6 +606,10 @@ - ctx->quiet = 1; - if (flags & M_READONLY) - ctx->readonly = 1; -+#ifdef USE_SIDEBAR -+ if (flags & M_PEEK) -+ ctx->peekonly = 1; -+#endif - - if (flags & (M_APPEND|M_NEWFOLDER)) - { -@@ -705,8 +713,21 @@ - if(!ctx) - return; - -+#ifdef USE_SIDEBAR -+ /* fix up the times so buffy won't get confused */ -+ struct utimbuf ut; -+ if (ctx->peekonly && ctx->path && (ctx->mtime > ctx->atime)) { -+ ut.actime = ctx->atime; -+ ut.modtime = ctx->mtime; -+ utime (ctx->path, &ut); -+ } -+#endif -+ - /* never announce that a mailbox we've just left has new mail. #3290 - * XXX: really belongs in mx_close_mailbox, but this is a nice hook point */ -+#ifdef USE_SIDEBAR -+ if (!ctx->peekonly) -+#endif - mutt_buffy_setnotified(ctx->path); - - if (ctx->mx_close) -@@ -812,6 +833,12 @@ - if (!ctx->hdrs[i]->deleted && ctx->hdrs[i]->read - && !(ctx->hdrs[i]->flagged && option (OPTKEEPFLAGGED))) - read_msgs++; -+#ifdef USE_SIDEBAR -+ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->read) -+ ctx->unread--; -+ if (ctx->hdrs[i]->deleted && ctx->hdrs[i]->flagged) -+ ctx->flagged--; -+#endif - } - - if (read_msgs && quadoption (OPT_MOVE) != M_NO) -@@ -981,6 +1008,11 @@ - !mutt_is_spool(ctx->path) && !option (OPTSAVEEMPTY)) - mx_unlink_empty (ctx->path); - -+#ifdef USE_SIDEBAR -+ ctx->msgcount -= ctx->deleted; -+ mutt_sb_set_buffystats (ctx); -+#endif -+ - mx_fastclose_mailbox (ctx); - - return 0; -diff -urN mutt-1.6.1/mx.h mutt-1.6.1-sidebar/mx.h ---- mutt-1.6.1/mx.h 2016-06-12 18:43:00.411447731 +0100 -+++ mutt-1.6.1-sidebar/mx.h 2016-06-12 18:43:03.963503122 +0100 -@@ -26,6 +26,7 @@ - #define _MX_H - - #include "mailbox.h" -+#include "buffy.h" - - /* supported mailbox formats */ - enum -@@ -57,6 +58,9 @@ - int mh_read_dir (CONTEXT *, const char *); - int mh_sync_mailbox (CONTEXT *, int *); - int mh_check_mailbox (CONTEXT *, int *); -+#ifdef USE_SIDEBAR -+void mh_buffy_update (BUFFY *mailbox); -+#endif - int mh_check_empty (const char *); - - int maildir_read_dir (CONTEXT *); -diff -urN mutt-1.6.1/OPS.SIDEBAR mutt-1.6.1-sidebar/OPS.SIDEBAR ---- mutt-1.6.1/OPS.SIDEBAR 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-sidebar/OPS.SIDEBAR 2016-06-12 18:43:03.944502826 +0100 -@@ -0,0 +1,8 @@ -+OP_SIDEBAR_NEXT "Move the highlight to next mailbox" -+OP_SIDEBAR_NEXT_NEW "Move the highlight to next mailbox with new mail" -+OP_SIDEBAR_OPEN "Open highlighted mailbox" -+OP_SIDEBAR_PAGE_DOWN "Scroll the Sidebar down 1 page" -+OP_SIDEBAR_PAGE_UP "Scroll the Sidebar up 1 page" -+OP_SIDEBAR_PREV "Move the highlight to previous mailbox" -+OP_SIDEBAR_PREV_NEW "Move the highlight to previous mailbox with new mail" -+OP_SIDEBAR_TOGGLE_VISIBLE "Make the Sidebar (in)visible" -diff -urN mutt-1.6.1/pager.c mutt-1.6.1-sidebar/pager.c ---- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100 -+++ mutt-1.6.1-sidebar/pager.c 2016-06-12 18:43:03.964503138 +0100 -@@ -29,6 +29,9 @@ - #include "pager.h" - #include "attach.h" - #include "mbyte.h" -+#ifdef USE_SIDEBAR -+#include "sidebar.h" -+#endif - - #include "mutt_crypt.h" - -@@ -1491,7 +1494,7 @@ - * a newline (grr!). - */ - #ifndef USE_SLANG_CURSES -- if (col < COLS) -+ if (col < (COLS - SidebarWidth)) - #endif - addch ('\n'); - -@@ -1573,6 +1576,7 @@ - - int bodyoffset = 1; /* offset of first line of real text */ - int statusoffset = 0; /* offset for the status bar */ -+ int statuswidth = COLS; - int helpoffset = LINES - 2; /* offset for the help bar. */ - int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */ - -@@ -1747,7 +1751,7 @@ - if ((redraw & REDRAW_BODY) || topline != oldtopline) - { - do { -- move (bodyoffset, 0); -+ move (bodyoffset, SidebarWidth); - curline = oldtopline = topline; - lines = 0; - force_redraw = 0; -@@ -1760,6 +1764,9 @@ - &QuoteList, &q_level, &force_redraw, &SearchRE) > 0) - lines++; - curline++; -+#ifdef USE_SIDEBAR -+ move (lines + bodyoffset, SidebarWidth); -+#endif - } - last_offset = lineInfo[curline].offset; - } while (force_redraw); -@@ -1772,6 +1779,9 @@ - addch ('~'); - addch ('\n'); - lines++; -+#ifdef USE_SIDEBAR -+ move (lines + bodyoffset, SidebarWidth); -+#endif - } - NORMAL_COLOR; - -@@ -1789,29 +1799,49 @@ - hfi.ctx = Context; - hfi.pager_progress = pager_progress_str; - -+#ifdef USE_SIDEBAR -+ statuswidth = COLS; -+ if (option (OPTSTATUSONTOP) && (PagerIndexLines > 0)) -+ statuswidth -= SidebarWidth; -+#endif -+ - if (last_pos < sb.st_size - 1) - snprintf(pager_progress_str, sizeof(pager_progress_str), OFF_T_FMT "%%", (100 * last_offset / sb.st_size)); - else - strfcpy(pager_progress_str, (topline == 0) ? "all" : "end", sizeof(pager_progress_str)); - - /* print out the pager status bar */ -- move (statusoffset, 0); -+ move (statusoffset, SidebarWidth); - SETCOLOR (MT_COLOR_STATUS); -+#ifdef USE_SIDEBAR -+ short sw = SidebarWidth; -+ if (option (OPTSTATUSONTOP) && PagerIndexLines > 0) { -+ CLEARLINE_WIN (statusoffset); -+ } else { -+ CLEARLINE (statusoffset); -+ /* Temporarily lie about the sidebar width */ -+ SidebarWidth = 0; -+ } -+#endif - - if (IsHeader (extra) || IsMsgAttach (extra)) - { -- size_t l1 = COLS * MB_LEN_MAX; -+ size_t l1 = statuswidth * MB_LEN_MAX; - size_t l2 = sizeof (buffer); - hfi.hdr = (IsHeader (extra)) ? extra->hdr : extra->bdy->hdr; - mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT); -- mutt_paddstr (COLS, buffer); -+ mutt_paddstr (statuswidth, buffer); - } - else - { - char bn[STRING]; - snprintf (bn, sizeof (bn), "%s (%s)", banner, pager_progress_str); -- mutt_paddstr (COLS, bn); -+ mutt_paddstr (statuswidth, bn); - } -+#ifdef USE_SIDEBAR -+ if (!option (OPTSTATUSONTOP) || PagerIndexLines == 0) -+ SidebarWidth = sw; /* Restore the sidebar width */ -+#endif - NORMAL_COLOR; - if (option(OPTTSENABLED) && TSSupported) - { -@@ -1827,16 +1857,26 @@ - /* redraw the pager_index indicator, because the - * flags for this message might have changed. */ - menu_redraw_current (index); -+#ifdef USE_SIDEBAR -+ mutt_sb_draw(); -+#endif - - /* print out the index status bar */ - menu_status_line (buffer, sizeof (buffer), index, NONULL(Status)); - -- move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), 0); -+ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), -+ (option(OPTSTATUSONTOP) ? 0: SidebarWidth)); - SETCOLOR (MT_COLOR_STATUS); -- mutt_paddstr (COLS, buffer); -+ mutt_paddstr (COLS - (option(OPTSTATUSONTOP) ? 0 : SidebarWidth), buffer); - NORMAL_COLOR; - } - -+#ifdef USE_SIDEBAR -+ /* if we're not using the index, update every time */ -+ if (index == 0) -+ mutt_sb_draw(); -+#endif -+ - redraw = 0; - - if (option(OPTBRAILLEFRIENDLY)) { -@@ -2498,8 +2538,12 @@ - ch = 0; - } - -- if (option (OPTFORCEREDRAWPAGER)) -+ if (option (OPTFORCEREDRAWPAGER)) { - redraw = REDRAW_FULL; -+#ifdef USE_SIDEBAR -+ mutt_sb_draw(); -+#endif -+ } - unset_option (OPTFORCEREDRAWINDEX); - unset_option (OPTFORCEREDRAWPAGER); - break; -@@ -2777,6 +2821,22 @@ - mutt_what_key (); - break; - -+#ifdef USE_SIDEBAR -+ case OP_SIDEBAR_NEXT: -+ case OP_SIDEBAR_NEXT_NEW: -+ case OP_SIDEBAR_PAGE_DOWN: -+ case OP_SIDEBAR_PAGE_UP: -+ case OP_SIDEBAR_PREV: -+ case OP_SIDEBAR_PREV_NEW: -+ mutt_sb_change_mailbox (ch); -+ break; -+ -+ case OP_SIDEBAR_TOGGLE_VISIBLE: -+ toggle_option (OPTSIDEBAR); -+ redraw = REDRAW_FULL; -+ break; -+#endif -+ - default: - ch = -1; - break; -diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-sidebar/PATCHES ---- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100 -+++ mutt-1.6.1-sidebar/PATCHES 2016-06-12 18:43:03.949502904 +0100 -@@ -0,0 +1 @@ -+patch-sidebar-neo-20160612 -diff -urN mutt-1.6.1/README.sidebar mutt-1.6.1-sidebar/README.sidebar ---- mutt-1.6.1/README.sidebar 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-sidebar/README.sidebar 2016-06-12 18:43:03.792500456 +0100 -@@ -0,0 +1,145 @@ -+Sidebar Patch -+============= -+ -+ Overview of mailboxes -+ -+ NOTES: -+ -+ If you haven't used the sidebar before, you might like to read the -+ Sidebar Introduction: -+ -+ http://www.neomutt.org/sidebar-intro.html -+ -+ If you have used an older version of the Sidebar, please note that some -+ of the configuration has changed. -+ -+ http://www.neomutt.org/sidebar-intro.html#intro-sidebar-config-changes -+ -+Patch -+----- -+ -+ To check if Mutt supports "Sidebar", look for "+USE_SIDEBAR" in the mutt -+ version. -+ -+ Dependencies -+ * mutt-1.6.1 -+ -+Introduction -+------------ -+ -+ The Sidebar shows a list of all your mailboxes. The list can be turned on -+ and off, it can be themed and the list style can be configured. -+ -+ This part of the manual is a reference guide. If you want a simple -+ introduction with examples see the Sidebar Howto. If you just want to get -+ started, you could use the sample Sidebar muttrc. -+ -+ This version of Sidebar is based on Terry Chan's [2015-11-11 -+ release](http://www.lunar-linux.org/mutt-sidebar/). It contains many new -+ features, lots of bugfixes. -+ -+Variables -+--------- -+ -+ Sidebar Variables -+ -+ | Name | Type | Default | -+ |-------------------------|---------|-----------------------------| -+ | 'sidebar_delim_chars' | string | '/.' | -+ | 'sidebar_divider_char' | string | '|' | -+ | 'sidebar_folder_indent' | boolean | 'no' | -+ | 'sidebar_format' | string | '%B%?F? [%F]?%* %?N?%N/?%S' | -+ | 'sidebar_indent_string' | string | '  ' (two spaces) | -+ | 'sidebar_new_mail_only' | boolean | 'no' | -+ | 'sidebar_next_new_wrap' | boolean | 'no' | -+ | 'sidebar_refresh_time' | number | '60' | -+ | 'sidebar_short_path' | boolean | 'no' | -+ | 'sidebar_sort_method' | enum | 'SORT_ORDER' | -+ | 'sidebar_visible' | boolean | 'no' | -+ | 'sidebar_whitelist' | list | (empty) | -+ | 'sidebar_width' | number | '20' | -+ -+Functions -+--------- -+ -+ Sidebar Functions -+ -+ Sidebar adds the following functions to Mutt. By default, none of them are -+ bound to keys. -+ -+ | Menus | Function | Description | -+ |-------------|----------------------------|------------------------------------------------------| -+ | index,pager | '' | Move the highlight to next mailbox | -+ | index,pager | '' | Move the highlight to next mailbox with new mail | -+ | index,pager | '' | Open highlighted mailbox | -+ | index,pager | '' | Scroll the Sidebar down 1 page | -+ | index,pager | '' | Scroll the Sidebar up 1 page | -+ | index,pager | '' | Move the highlight to previous mailbox | -+ | index,pager | '' | Move the highlight to previous mailbox with new mail | -+ | index,pager | '' | Make the Sidebar (in)visible | -+ -+Commands -+-------- -+ -+ sidebar_whitelist mailbox [ mailbox... ] -+ -+Colors -+------ -+ -+ Sidebar Colors -+ -+ | Name | Default Color | Description | -+ |---------------------|------------------|------------------------------------------------------------------| -+ | 'sidebar_divider' | default | The dividing line between the Sidebar and the Index/Pager panels | -+ | 'sidebar_flagged' | default | Mailboxes containing flagged mail | -+ | 'sidebar_highlight' | underline | Cursor to select a mailbox | -+ | 'sidebar_indicator' | mutt 'indicator' | The mailbox open in the Index panel | -+ | 'sidebar_new' | default | Mailboxes containing new mail | -+ | 'sidebar_spoolfile' | default | Mailbox that receives incoming mail | -+ -+ If the sidebar_indicator color isn't set, then the default Mutt indicator -+ color will be used (the color used in the index panel). -+ -+Sort -+---- -+ -+ Sidebar Sort -+ -+ | Sort | Description | -+ |------------|----------------------------| -+ | 'alpha' | Alphabetically by path | -+ | 'count' | Total number of messages | -+ | 'flagged' | Number of flagged messages | -+ | 'name' | Alphabetically by path | -+ | 'new' | Number of new messages | -+ | 'path' | Alphabetically by path | -+ | 'unsorted' | Do not resort the paths | -+ -+See Also -+-------- -+ -+ * Regular Expressions -+ * Patterns -+ * Color command -+ * notmuch patch -+ -+Known Bugs -+---------- -+ -+ Unsorted isn't -+ -+Credits -+------- -+ -+ * Justin Hibbits -+ * Thomer M. Gil -+ * David Sterba -+ * Evgeni Golov -+ * Fabian Groffen -+ * Jason DeTiberus -+ * Stefan Assmann -+ * Steve Kemp -+ * Terry Chan -+ * Tyler Earnest -+ * Richard Russon -+ -diff -urN mutt-1.6.1/sidebar.c mutt-1.6.1-sidebar/sidebar.c ---- mutt-1.6.1/sidebar.c 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-sidebar/sidebar.c 2016-06-14 18:46:00.000000000 +0100 -@@ -0,0 +1,1090 @@ -+/* Copyright (C) 2004 Justin Hibbits -+ * Copyright (C) 2004 Thomer M. Gil -+ * Copyright (C) 2015-2016 Richard Russon -+ * -+ * This program is free software; you can redistribute it and/or modify -+ * it under the terms of the GNU General Public License as published by -+ * the Free Software Foundation; either version 2 of the License, or -+ * (at your option) any later version. -+ * -+ * This program is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ * GNU General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public License -+ * along with this program; if not, write to the Free Software -+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. -+ */ -+ -+#if HAVE_CONFIG_H -+# include "config.h" -+#endif -+ -+#include "mutt.h" -+#include "buffy.h" -+#include "keymap.h" -+#include "mutt_curses.h" -+#include "mutt_menu.h" -+#include "sort.h" -+ -+/* Previous values for some sidebar config */ -+static short OldVisible; /* sidebar_visible */ -+static short OldWidth; /* sidebar_width */ -+static short PreviousSort; /* sidebar_sort_method */ -+static time_t LastRefresh; /* Time of last refresh */ -+ -+/* Keep track of various BUFFYs */ -+static BUFFY *TopBuffy; /* First mailbox visible in sidebar */ -+static BUFFY *OpnBuffy; /* Current (open) mailbox */ -+static BUFFY *HilBuffy; /* Highlighted mailbox */ -+static BUFFY *BotBuffy; /* Last mailbox visible in sidebar */ -+static BUFFY *Outgoing; /* Last mailbox in the linked list */ -+ -+/** -+ * struct sidebar_entry - Info about folders in the sidebar -+ * -+ * Used in the mutt_FormatString callback -+ */ -+struct sidebar_entry -+{ -+ char box[STRING]; -+ BUFFY *buffy; -+}; -+ -+ -+/** -+ * find_next_new - Find the next folder that contains new mail -+ * @wrap: Wrap around to the beginning if the end is reached -+ * -+ * Search down the list of mail folders for one containing new mail. -+ * -+ * Returns: -+ * BUFFY*: Success -+ * NULL: Failure -+ */ -+static BUFFY *find_next_new (int wrap) -+{ -+ BUFFY *b = HilBuffy; -+ if (!b) -+ return NULL; -+ -+ do -+ { -+ b = b->next; -+ if (!b && wrap) -+ b = Incoming; -+ if (!b || (b == HilBuffy)) -+ break; -+ if (b->msg_unread > 0) -+ return b; -+ } while (b); -+ -+ return NULL; -+} -+ -+/** -+ * find_prev_new - Find the previous folder that contains new mail -+ * @wrap: Wrap around to the beginning if the end is reached -+ * -+ * Search up the list of mail folders for one containing new mail. -+ * -+ * Returns: -+ * BUFFY*: Success -+ * NULL: Failure -+ */ -+static BUFFY *find_prev_new (int wrap) -+{ -+ BUFFY *b = HilBuffy; -+ if (!b) -+ return NULL; -+ -+ do -+ { -+ b = b->prev; -+ if (!b && wrap) -+ b = Outgoing; -+ if (!b || (b == HilBuffy)) -+ break; -+ if (b->msg_unread > 0) -+ return b; -+ } while (b); -+ -+ return NULL; -+} -+ -+/** -+ * cb_format_str - Create the string to show in the sidebar -+ * @dest: Buffer in which to save string -+ * @destlen: Buffer length -+ * @col: Starting column, UNUSED -+ * @op: printf-like operator, e.g. 'B' -+ * @src: printf-like format string -+ * @prefix: Field formatting string, UNUSED -+ * @ifstring: If condition is met, display this string -+ * @elsestring: Otherwise, display this string -+ * @data: Pointer to our sidebar_entry -+ * @flags: Format flags, e.g. M_FORMAT_OPTIONAL -+ * -+ * cb_format_str is a callback function for mutt_FormatString. It understands -+ * five operators. '%B' : Mailbox name, '%F' : Number of flagged messages, -+ * '%N' : Number of new messages, '%S' : Size (total number of messages), -+ * '%!' : Icon denoting number of flagged messages. -+ * -+ * Returns: src (unchanged) -+ */ -+static const char *cb_format_str(char *dest, size_t destlen, size_t col, char op, -+ const char *src, const char *prefix, const char *ifstring, -+ const char *elsestring, unsigned long data, format_flag flags) -+{ -+ struct sidebar_entry *sbe = (struct sidebar_entry *) data; -+ unsigned int optional; -+ char fmt[STRING]; -+ -+ if (!sbe || !dest) -+ return src; -+ -+ dest[0] = 0; /* Just in case there's nothing to do */ -+ -+ BUFFY *b = sbe->buffy; -+ if (!b) -+ return src; -+ -+ int c = Context && (mutt_strcmp (Context->path, b->path) == 0); -+ -+ optional = flags & M_FORMAT_OPTIONAL; -+ -+ switch (op) -+ { -+ case 'B': -+ mutt_format_s (dest, destlen, prefix, sbe->box); -+ break; -+ -+ case 'd': -+ if (!optional) -+ { -+ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); -+ snprintf (dest, destlen, fmt, c ? Context->deleted : 0); -+ } -+ else if ((c && Context->deleted == 0) || !c) -+ optional = 0; -+ break; -+ -+ case 'F': -+ if (!optional) -+ { -+ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); -+ snprintf (dest, destlen, fmt, b->msg_flagged); -+ } -+ else if (b->msg_flagged == 0) -+ optional = 0; -+ break; -+ -+ case 'L': -+ if (!optional) -+ { -+ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); -+ snprintf (dest, destlen, fmt, c ? Context->vcount : b->msg_count); -+ } -+ else if ((c && Context->vcount == b->msg_count) || !c) -+ optional = 0; -+ break; -+ -+ case 'N': -+ if (!optional) -+ { -+ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); -+ snprintf (dest, destlen, fmt, b->msg_unread); -+ } -+ else if (b->msg_unread == 0) -+ optional = 0; -+ break; -+ -+ case 'S': -+ if (!optional) -+ { -+ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); -+ snprintf (dest, destlen, fmt, b->msg_count); -+ } -+ else if (b->msg_count == 0) -+ optional = 0; -+ break; -+ -+ case 't': -+ if (!optional) -+ { -+ snprintf (fmt, sizeof (fmt), "%%%sd", prefix); -+ snprintf (dest, destlen, fmt, c ? Context->tagged : 0); -+ } -+ else if ((c && Context->tagged == 0) || !c) -+ optional = 0; -+ break; -+ -+ case '!': -+ if (b->msg_flagged == 0) -+ mutt_format_s (dest, destlen, prefix, ""); -+ else if (b->msg_flagged == 1) -+ mutt_format_s (dest, destlen, prefix, "!"); -+ else if (b->msg_flagged == 2) -+ mutt_format_s (dest, destlen, prefix, "!!"); -+ else -+ { -+ snprintf (fmt, sizeof (fmt), "%d!", b->msg_flagged); -+ mutt_format_s (dest, destlen, prefix, fmt); -+ } -+ break; -+ } -+ -+ if (optional) -+ mutt_FormatString (dest, destlen, col, ifstring, cb_format_str, (unsigned long) sbe, flags); -+ else if (flags & M_FORMAT_OPTIONAL) -+ mutt_FormatString (dest, destlen, col, elsestring, cb_format_str, (unsigned long) sbe, flags); -+ -+ /* We return the format string, unchanged */ -+ return src; -+} -+ -+/** -+ * make_sidebar_entry - Turn mailbox data into a sidebar string -+ * @buf: Buffer in which to save string -+ * @buflen: Buffer length -+ * @width: Desired width in screen cells -+ * @box: Mailbox name -+ * @size: Size (total number of messages) -+ * @new: Number of new messages -+ * @flagged: Number of flagged messages -+ * -+ * Take all the relevant mailbox data and the desired screen width and then get -+ * mutt_FormatString to do the actual work. mutt_FormatString will callback to -+ * us using cb_format_str() for the sidebar specific formatting characters. -+ */ -+static void make_sidebar_entry (char *buf, unsigned int buflen, int width, char *box, -+ BUFFY *b) -+{ -+ struct sidebar_entry sbe; -+ -+ if (!buf || !box || !b) -+ return; -+ -+ sbe.buffy = b; -+ strfcpy (sbe.box, box, sizeof (sbe.box)); -+ -+ /* Temporarily lie about the screen width */ -+ int oc = COLS; -+ COLS = width + SidebarWidth; -+ mutt_FormatString (buf, buflen, 0, NONULL(SidebarFormat), cb_format_str, (unsigned long) &sbe, 0); -+ COLS = oc; -+ -+ /* Force string to be exactly the right width */ -+ int w = mutt_strwidth (buf); -+ int s = strlen (buf); -+ width = MIN(buflen, width); -+ if (w < width) -+ { -+ /* Pad with spaces */ -+ memset (buf + s, ' ', width - w); -+ buf[s + width - w] = 0; -+ } -+ else if (w > width) -+ { -+ /* Truncate to fit */ -+ int len = mutt_wstr_trunc (buf, buflen, width, NULL); -+ buf[len] = 0; -+ } -+} -+ -+/** -+ * cb_qsort_buffy - qsort callback to sort BUFFYs -+ * @a: First BUFFY to compare -+ * @b: Second BUFFY to compare -+ * -+ * Compare the paths of two BUFFYs taking the locale into account. -+ * -+ * Returns: -+ * -1: a precedes b -+ * 0: a and b are identical -+ * 1: b precedes a -+ */ -+static int cb_qsort_buffy (const void *a, const void *b) -+{ -+ const BUFFY *b1 = *(const BUFFY **) a; -+ const BUFFY *b2 = *(const BUFFY **) b; -+ -+ /* Special case -- move hidden BUFFYs to the end */ -+ if (b1->is_hidden != b2->is_hidden) -+ { -+ if (b1->is_hidden) -+ return 1; -+ else -+ return -1; -+ } -+ -+ int result = 0; -+ -+ switch ((SidebarSortMethod & SORT_MASK)) -+ { -+ case SORT_COUNT: -+ result = (b2->msg_count - b1->msg_count); -+ break; -+ case SORT_COUNT_NEW: -+ result = (b2->msg_unread - b1->msg_unread); -+ break; -+ case SORT_FLAGGED: -+ result = (b2->msg_flagged - b1->msg_flagged); -+ break; -+ case SORT_PATH: -+ result = mutt_strcasecmp (b1->path, b2->path); -+ break; -+ } -+ -+ if (SidebarSortMethod & SORT_REVERSE) -+ result = -result; -+ -+ return result; -+} -+ -+/** -+ * buffy_going - Prevent our pointers becoming invalid -+ * @b: BUFFY about to be deleted -+ * -+ * If we receive a delete-notification for a BUFFY, we need to change any -+ * pointers we have to reference a different BUFFY, or set them to NULL. -+ * -+ * We don't update the prev/next pointers, they'll be fixed on the next -+ * call to prepare_sidebar(). -+ * -+ * Returns: -+ * A valid alternative BUFFY, or NULL -+ */ -+static BUFFY *buffy_going (const BUFFY *b) -+{ -+ if (!b) -+ return NULL; -+ -+ if (b->prev) -+ { -+ b->prev->next = NULL; -+ } -+ -+ if (b->next) -+ { -+ b->next->prev = NULL; -+ return b->next; -+ } -+ -+ return b->prev; -+} -+ -+/** -+ * update_buffy_visibility - Should a BUFFY be displayed in the sidebar -+ * @arr: array of BUFFYs -+ * @arr_len: number of BUFFYs in array -+ * -+ * For each BUFFY in the array, check whether we should display it. -+ * This is determined by several criteria. If the BUFFY: -+ * is the currently open mailbox -+ * is the currently highlighted mailbox -+ * has unread messages -+ * has flagged messages -+ * is whitelisted -+ */ -+static void update_buffy_visibility (BUFFY **arr, int arr_len) -+{ -+ if (!arr) -+ return; -+ -+ short new_only = option (OPTSIDEBARNEWMAILONLY); -+ -+ BUFFY *b; -+ int i; -+ for (i = 0; i < arr_len; i++) -+ { -+ b = arr[i]; -+ -+ b->is_hidden = 0; -+ -+ if (!new_only) -+ continue; -+ -+ if ((b == OpnBuffy) || (b->msg_unread > 0) || -+ (b == HilBuffy) || (b->msg_flagged > 0)) -+ continue; -+ -+ if (Context && (strcmp (b->path, Context->path) == 0)) -+ /* Spool directory */ -+ continue; -+ -+ if (mutt_find_list (SidebarWhitelist, b->path)) -+ /* Explicitly asked to be visible */ -+ continue; -+ -+ b->is_hidden = 1; -+ } -+} -+ -+/** -+ * sort_buffy_array - Sort an array of BUFFY pointers -+ * @arr: array of BUFFYs -+ * @arr_len: number of BUFFYs in array -+ * -+ * Sort an array of BUFFY pointers according to the current sort config -+ * option "sidebar_sort_method". This calls qsort to do the work which calls our -+ * callback function "cb_qsort_buffy". -+ * -+ * Once sorted, the prev/next links will be reconstructed. -+ */ -+static void sort_buffy_array (BUFFY **arr, int arr_len) -+{ -+ if (!arr) -+ return; -+ -+ /* These are the only sort methods we understand */ -+ short ssm = (SidebarSortMethod & SORT_MASK); -+ if ((ssm == SORT_COUNT) || -+ (ssm == SORT_COUNT_NEW) || -+ (ssm == SORT_DESC) || -+ (ssm == SORT_FLAGGED) || -+ (ssm == SORT_PATH)) -+ qsort (arr, arr_len, sizeof (*arr), cb_qsort_buffy); -+ -+ int i; -+ for (i = 0; i < (arr_len - 1); i++) -+ arr[i]->next = arr[i + 1]; -+ arr[arr_len - 1]->next = NULL; -+ -+ for (i = 1; i < arr_len; i++) -+ arr[i]->prev = arr[i - 1]; -+ arr[0]->prev = NULL; -+} -+ -+/** -+ * prepare_sidebar - Prepare the list of BUFFYs for the sidebar display -+ * @page_size: The number of lines on a page -+ * -+ * Before painting the sidebar, we count the BUFFYs, determine which are -+ * visible, sort them and set up our page pointers. -+ * -+ * This is a lot of work to do each refresh, but there are many things that -+ * can change outside of the sidebar that we don't hear about. -+ * -+ * Returns: -+ * 0: No, don't draw the sidebar -+ * 1: Yes, draw the sidebar -+ */ -+static int prepare_sidebar (int page_size) -+{ -+ BUFFY *b = Incoming; -+ if (!b) -+ return 0; -+ -+ int count = 0; -+ for (; b; b = b->next) -+ count++; -+ -+ BUFFY **arr = safe_malloc (count * sizeof (*arr)); -+ -+ int i = 0; -+ for (b = Incoming; b; b = b->next, i++) -+ arr[i] = b; -+ -+ update_buffy_visibility (arr, count); -+ sort_buffy_array (arr, count); -+ -+ Incoming = arr[0]; -+ -+ int top_index = 0; -+ int opn_index = -1; -+ int hil_index = -1; -+ int bot_index = -1; -+ -+ for (i = 0; i < count; i++) -+ { -+ if (OpnBuffy == arr[i]) -+ opn_index = i; -+ if (HilBuffy == arr[i]) -+ hil_index = i; -+ } -+ -+ if (!HilBuffy || (SidebarSortMethod != PreviousSort)) -+ { -+ if (OpnBuffy) -+ { -+ HilBuffy = OpnBuffy; -+ hil_index = opn_index; -+ } -+ else -+ { -+ HilBuffy = arr[0]; -+ hil_index = 0; -+ } -+ } -+ if (TopBuffy) -+ top_index = (hil_index / page_size) * page_size; -+ else -+ top_index = hil_index; -+ TopBuffy = arr[top_index]; -+ -+ bot_index = top_index + page_size - 1; -+ if (bot_index > (count - 1)) -+ bot_index = count - 1; -+ BotBuffy = arr[bot_index]; -+ -+ Outgoing = arr[count - 1]; -+ -+ PreviousSort = SidebarSortMethod; -+ FREE (&arr); -+ return 1; -+} -+ -+/** -+ * visible - Should we display the sidebar? -+ * -+ * After validating the config options "sidebar_visible" and "sidebar_width", -+ * determine whether we should should display the sidebar. -+ * -+ * When not visible, set the global SidebarWidth to 0. -+ * -+ * Returns: -+ * Boolean -+ */ -+static short -+visible (void) -+{ -+ short new_visible = option (OPTSIDEBAR); -+ short new_width = SidebarWidth; -+ -+ if (OldWidth != new_width) -+ { -+ if (new_width > 0) -+ { -+ OldWidth = new_width; -+ } -+ } -+ -+ if (OldVisible != new_visible) -+ { -+ if (new_visible) -+ { -+ set_option (OPTSIDEBAR); -+ } -+ else -+ { -+ unset_option (OPTSIDEBAR); -+ } -+ OldVisible = new_visible; -+ } -+ else if (new_width == 0) -+ { -+ unset_option (OPTSIDEBAR); -+ OldVisible = 0; -+ } -+ -+ if (!option (OPTSIDEBAR)) -+ { -+ SidebarWidth = 0; -+ } -+ else if (new_width == 0) -+ { -+ SidebarWidth = OldWidth; -+ } -+ else -+ { -+ SidebarWidth = new_width; -+ } -+ -+ return new_visible; -+} -+ -+/** -+ * draw_divider - Draw a line between the sidebar and the rest of mutt -+ * @first_row: Screen line to start (0-based) -+ * @num_rows: Number of rows to fill -+ * -+ * Draw a divider using characters from the config option "sidebar_divider_char". -+ * This can be an ASCII or Unicode character. First we calculate this -+ * characters' width in screen columns, then subtract that from the config -+ * option "sidebar_width". -+ * -+ * Returns: -+ * -1: Error: bad character, etc -+ * 0: Error: 0 width character -+ * n: Success: character occupies n screen columns -+ */ -+static int draw_divider (int first_row, int num_rows) -+{ -+ /* Calculate the width of the delimiter in screen cells */ -+ int delim_len = mutt_strwidth (SidebarDividerChar); -+ -+ if (delim_len < 1) -+ return delim_len; -+ -+ if ((SidebarWidth + delim_len) > (COLS + 1)) -+ return 0; -+ -+ if (delim_len > SidebarWidth) -+ return -1; -+ -+ SETCOLOR(MT_COLOR_DIVIDER); -+ -+ int i; -+ for (i = 0; i < num_rows; i++) -+ { -+ move (first_row + i, SidebarWidth - delim_len); -+ addstr (NONULL(SidebarDividerChar)); -+ } -+ -+ return delim_len; -+} -+ -+/** -+ * fill_empty_space - Wipe the remaining Sidebar space -+ * @first_row: Screen line to start (0-based) -+ * @num_rows: Number of rows to fill -+ * @width: Width of the Sidebar (minus the divider) -+ * -+ * Write spaces over the area the sidebar isn't using. -+ */ -+static void fill_empty_space (int first_row, int num_rows, int width) -+{ -+ /* Fill the remaining rows with blank space */ -+ SETCOLOR(MT_COLOR_NORMAL); -+ -+ int r; -+ for (r = 0; r < num_rows; r++) -+ { -+ int i = 0; -+ move (first_row + r, 0); -+ for (; i < width; i++) -+ addch (' '); -+ } -+} -+ -+/** -+ * draw_sidebar - Write out a list of mailboxes, on the left -+ * @first_row: Screen line to start (0-based) -+ * @num_rows: Number of rows to fill -+ * @div_width: Width in screen characters taken by the divider -+ * -+ * Display a list of mailboxes in a panel on the left. What's displayed will -+ * depend on our index markers: TopBuffy, OpnBuffy, HilBuffy, BotBuffy. -+ * On the first run they'll be NULL, so we display the top of Mutt's list -+ * (Incoming). -+ * -+ * TopBuffy - first visible mailbox -+ * BotBuffy - last visible mailbox -+ * OpnBuffy - mailbox shown in Mutt's Index Panel -+ * HilBuffy - Unselected mailbox (the paging follows this) -+ * -+ * The entries are formatted using "sidebar_format" and may be abbreviated: -+ * "sidebar_short_path", indented: "sidebar_folder_indent", -+ * "sidebar_indent_string" and sorted: "sidebar_sort_method". Finally, they're -+ * trimmed to fit the available space. -+ */ -+static void draw_sidebar (int first_row, int num_rows, int div_width) -+{ -+ BUFFY *b = TopBuffy; -+ if (!b) -+ return; -+ -+ int w = MIN(COLS, (SidebarWidth - div_width)); -+ int row = 0; -+ for (b = TopBuffy; b && (row < num_rows); b = b->next) -+ { -+ if (b->is_hidden) -+ continue; -+ -+ if (b == OpnBuffy) -+ { -+ if ((ColorDefs[MT_COLOR_SB_INDICATOR] != 0)) -+ SETCOLOR(MT_COLOR_SB_INDICATOR); -+ else -+ SETCOLOR(MT_COLOR_INDICATOR); -+ } -+ else if (b == HilBuffy) -+ SETCOLOR(MT_COLOR_HIGHLIGHT); -+ else if ((ColorDefs[MT_COLOR_SB_SPOOLFILE] != 0) && -+ (mutt_strcmp (b->path, Spoolfile) == 0)) -+ SETCOLOR(MT_COLOR_SB_SPOOLFILE); -+ else if (b->msg_unread > 0) -+ SETCOLOR(MT_COLOR_NEW); -+ else if (b->msg_flagged > 0) -+ SETCOLOR(MT_COLOR_FLAGGED); -+ else -+ SETCOLOR(MT_COLOR_NORMAL); -+ -+ move (first_row + row, 0); -+ if (Context && Context->path && -+ (!strcmp (b->path, Context->path)|| -+ !strcmp (b->realpath, Context->path))) -+ { -+ b->msg_unread = Context->unread; -+ b->msg_count = Context->msgcount; -+ b->msg_flagged = Context->flagged; -+ } -+ -+ /* compute length of Maildir without trailing separator */ -+ size_t maildirlen = strlen (Maildir); -+ if (SidebarDelimChars && strchr (SidebarDelimChars, Maildir[maildirlen - 1])) -+ maildirlen--; -+ -+ /* check whether Maildir is a prefix of the current folder's path */ -+ short maildir_is_prefix = 0; -+ if ((strlen (b->path) > maildirlen) && (strncmp (Maildir, b->path, maildirlen) == 0)) -+ maildir_is_prefix = 1; -+ -+ /* calculate depth of current folder and generate its display name with indented spaces */ -+ int sidebar_folder_depth = 0; -+ char *sidebar_folder_name; -+ int i; -+ if (option (OPTSIDEBARSHORTPATH)) -+ { -+ /* disregard a trailing separator, so strlen() - 2 */ -+ sidebar_folder_name = b->path; -+ for (i = strlen (sidebar_folder_name) - 2; i >= 0; i--) -+ { -+ if (SidebarDelimChars && -+ strchr (SidebarDelimChars, sidebar_folder_name[i])) -+ { -+ sidebar_folder_name += (i + 1); -+ break; -+ } -+ } -+ } -+ else -+ sidebar_folder_name = b->path + maildir_is_prefix * (maildirlen + 1); -+ -+ if (maildir_is_prefix && option (OPTSIDEBARFOLDERINDENT)) -+ { -+ const char *tmp_folder_name; -+ int lastsep = 0; -+ tmp_folder_name = b->path + maildirlen + 1; -+ int tmplen = (int) strlen (tmp_folder_name) - 1; -+ for (i = 0; i < tmplen; i++) -+ { -+ if (SidebarDelimChars && strchr (SidebarDelimChars, tmp_folder_name[i])) -+ { -+ sidebar_folder_depth++; -+ lastsep = i + 1; -+ } -+ } -+ if (sidebar_folder_depth > 0) -+ { -+ if (option (OPTSIDEBARSHORTPATH)) -+ tmp_folder_name += lastsep; /* basename */ -+ sidebar_folder_name = malloc (strlen (tmp_folder_name) + sidebar_folder_depth*strlen (NONULL(SidebarIndentString)) + 1); -+ sidebar_folder_name[0]=0; -+ for (i=0; i < sidebar_folder_depth; i++) -+ strncat (sidebar_folder_name, NONULL(SidebarIndentString), strlen (NONULL(SidebarIndentString))); -+ strncat (sidebar_folder_name, tmp_folder_name, strlen (tmp_folder_name)); -+ } -+ } -+ char str[STRING]; -+ make_sidebar_entry (str, sizeof (str), w, sidebar_folder_name, b); -+ printw ("%s", str); -+ if (sidebar_folder_depth > 0) -+ FREE (&sidebar_folder_name); -+ row++; -+ } -+ -+ fill_empty_space (first_row + row, num_rows - row, w); -+} -+ -+ -+/** -+ * mutt_sb_init - Set some default values for the sidebar. -+ */ -+void -+mutt_sb_init (void) -+{ -+ OldVisible = option (OPTSIDEBAR); -+ if (SidebarWidth > 0) -+ { -+ OldWidth = SidebarWidth; -+ } -+ else -+ { -+ OldWidth = 20; -+ if (OldVisible) -+ { -+ SidebarWidth = OldWidth; -+ } -+ } -+} -+ -+/** -+ * mutt_sb_draw - Completely redraw the sidebar -+ * -+ * Completely refresh the sidebar region. First draw the divider; then, for -+ * each BUFFY, call make_sidebar_entry; finally blank out any remaining space. -+ */ -+void mutt_sb_draw (void) -+{ -+ if (!visible()) -+ return; -+ -+ /* XXX - if transitioning from invisible to visible */ -+ /* if (OldVisible == 0) */ -+ /* mutt_buffy_check (1); we probably have bad or no numbers */ -+ -+ int x = getcurx (stdscr); -+ int y = getcury (stdscr); -+ -+ int first_row = 0; -+ int num_rows = LINES - 2; -+ -+ if (option (OPTHELP) || option (OPTSTATUSONTOP)) -+ first_row++; -+ -+ if (option (OPTHELP)) -+ num_rows--; -+ -+ int div_width = draw_divider (first_row, num_rows); -+ if (div_width < 0) -+ return; -+ -+ if (!Incoming) -+ { -+ int w = MIN(COLS, (SidebarWidth - div_width)); -+ fill_empty_space (first_row, num_rows, w); -+ return; -+ } -+ -+ if (!prepare_sidebar (num_rows)) -+ return; -+ -+ draw_sidebar (first_row, num_rows, div_width); -+ move (y, x); -+} -+ -+/** -+ * mutt_sb_should_refresh - Check if the sidebar is due to be refreshed -+ * -+ * The "sidebar_refresh_time" config option allows the user to limit the frequency -+ * with which the sidebar is refreshed. -+ * -+ * Returns: -+ * 1 Yes, refresh is due -+ * 0 No, refresh happened recently -+ */ -+int mutt_sb_should_refresh (void) -+{ -+ if (!option (OPTSIDEBAR)) -+ return 0; -+ -+ if (SidebarRefreshTime == 0) -+ return 0; -+ -+ time_t diff = (time (NULL) - LastRefresh); -+ -+ return (diff >= SidebarRefreshTime); -+} -+ -+/** -+ * mutt_sb_change_mailbox - Change the selected mailbox -+ * @op: Operation code -+ * -+ * Change the selected mailbox, e.g. "Next mailbox", "Previous Mailbox -+ * with new mail". The operations are listed OPS.SIDEBAR which is built -+ * into an enum in keymap_defs.h. -+ * -+ * If the operation is successful, HilBuffy will be set to the new mailbox. -+ * This function only *selects* the mailbox, doesn't *open* it. -+ * -+ * Allowed values are: OP_SIDEBAR_NEXT, OP_SIDEBAR_NEXT_NEW, -+ * OP_SIDEBAR_PAGE_DOWN, OP_SIDEBAR_PAGE_UP, OP_SIDEBAR_PREV, -+ * OP_SIDEBAR_PREV_NEW. -+ */ -+void mutt_sb_change_mailbox (int op) -+{ -+ BUFFY *b; -+ if (!HilBuffy) /* It'll get reset on the next draw */ -+ return; -+ -+ switch (op) -+ { -+ case OP_SIDEBAR_NEXT: -+ if (!HilBuffy->next) -+ return; -+ if (HilBuffy->next->is_hidden) -+ return; -+ HilBuffy = HilBuffy->next; -+ break; -+ case OP_SIDEBAR_NEXT_NEW: -+ b = find_next_new (option (OPTSIDEBARNEXTNEWWRAP)); -+ if (!b) -+ return; -+ else -+ HilBuffy = b; -+ break; -+ case OP_SIDEBAR_PAGE_DOWN: -+ HilBuffy = BotBuffy; -+ if (HilBuffy->next) -+ HilBuffy = HilBuffy->next; -+ break; -+ case OP_SIDEBAR_PAGE_UP: -+ HilBuffy = TopBuffy; -+ if (HilBuffy != Incoming) -+ HilBuffy = HilBuffy->prev; -+ break; -+ case OP_SIDEBAR_PREV: -+ if (!HilBuffy->prev) -+ return; -+ if (HilBuffy->prev->is_hidden) /* Can't happen, we've sorted the hidden to the end */ -+ return; -+ HilBuffy = HilBuffy->prev; -+ break; -+ case OP_SIDEBAR_PREV_NEW: -+ b = find_prev_new (option (OPTSIDEBARNEXTNEWWRAP)); -+ if (!b) -+ return; -+ else -+ HilBuffy = b; -+ break; -+ default: -+ return; -+ } -+ -+ /* We can change folder even if the sidebar is hidden */ -+ if (option (OPTSIDEBAR)) -+ mutt_sb_draw(); -+} -+ -+/** -+ * mutt_sb_set_buffystats - Update the BUFFY's message counts from the CONTEXT -+ * @ctx: A mailbox CONTEXT -+ * -+ * Given a mailbox CONTEXT, find a matching mailbox BUFFY and copy the message -+ * counts into it. -+ */ -+void mutt_sb_set_buffystats (const CONTEXT *ctx) -+{ -+ /* Even if the sidebar's hidden, -+ * we should take note of the new data. */ -+ BUFFY *b = Incoming; -+ if (!ctx || !b) -+ return; -+ -+ for (; b; b = b->next) -+ { -+ if (!strcmp (b->path, ctx->path) || -+ !strcmp (b->realpath, ctx->path)) -+ { -+ b->msg_unread = ctx->unread; -+ b->msg_count = ctx->msgcount; -+ b->msg_flagged = ctx->flagged; -+ break; -+ } -+ } -+} -+ -+/** -+ * mutt_sb_get_highlight - Get the BUFFY that's highlighted in the sidebar -+ * -+ * Get the path of the mailbox that's highlighted in the sidebar. -+ * -+ * Returns: -+ * Mailbox path -+ */ -+const char *mutt_sb_get_highlight (void) -+{ -+ if (!HilBuffy) -+ return NULL; -+ -+ return HilBuffy->path; -+} -+ -+/** -+ * mutt_sb_set_open_buffy - Set the OpnBuffy based on a mailbox path -+ * @path: Mailbox path -+ * -+ * Search through the list of mailboxes. If a BUFFY has a matching path, set -+ * OpnBuffy to it. -+ */ -+BUFFY *mutt_sb_set_open_buffy (const char *path) -+{ -+ /* Even if the sidebar is hidden */ -+ -+ BUFFY *b = Incoming; -+ -+ if (!path || !b) -+ return NULL; -+ -+ OpnBuffy = NULL; -+ -+ for (; b; b = b->next) -+ { -+ if (!strcmp (b->path, path) || -+ !strcmp (b->realpath, path)) -+ { -+ OpnBuffy = b; -+ HilBuffy = b; -+ break; -+ } -+ } -+ -+ return OpnBuffy; -+} -+ -+/** -+ * mutt_sb_set_update_time - Note the time that the sidebar was updated -+ * -+ * Update the timestamp representing the last sidebar update. If the user -+ * configures "sidebar_refresh_time", this will help to reduce traffic. -+ */ -+void mutt_sb_set_update_time (void) -+{ -+ /* XXX - should this be public? */ -+ -+ LastRefresh = time (NULL); -+} -+ -+/** -+ * mutt_sb_notify_mailbox - The state of a BUFFY is about to change -+ * -+ * We receive a notification: -+ * After a new BUFFY has been created -+ * Before a BUFFY is deleted -+ * -+ * Before a deletion, check that our pointers won't be invalidated. -+ */ -+void mutt_sb_notify_mailbox (BUFFY *b, int created) -+{ -+ if (!b) -+ return; -+ -+ /* Any new/deleted mailboxes will cause a refresh. As long as -+ * they're valid, our pointers will be updated in prepare_sidebar() */ -+ -+ if (created) -+ { -+ if (!TopBuffy) -+ TopBuffy = b; -+ if (!HilBuffy) -+ HilBuffy = b; -+ if (!BotBuffy) -+ BotBuffy = b; -+ if (!Outgoing) -+ Outgoing = b; -+ if (!OpnBuffy && Context) -+ { -+ /* This might happen if the user "unmailboxes *", then -+ * "mailboxes" our current mailbox back again */ -+ if (mutt_strcmp (b->path, Context->path) == 0) -+ OpnBuffy = b; -+ } -+ } -+ else -+ { -+ BUFFY *replacement = buffy_going (b); -+ if (TopBuffy == b) -+ TopBuffy = replacement; -+ if (OpnBuffy == b) -+ OpnBuffy = NULL; -+ if (HilBuffy == b) -+ HilBuffy = replacement; -+ if (BotBuffy == b) -+ BotBuffy = replacement; -+ if (Outgoing == b) -+ Outgoing = replacement; -+ } -+} -diff -urN mutt-1.6.1/sidebar.h mutt-1.6.1-sidebar/sidebar.h ---- mutt-1.6.1/sidebar.h 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-sidebar/sidebar.h 2016-06-12 18:43:03.967503185 +0100 -@@ -0,0 +1,36 @@ -+/* Copyright (C) 2004 Justin Hibbits -+ * Copyright (C) 2004 Thomer M. Gil -+ * Copyright (C) 2015-2016 Richard Russon -+ * -+ * This program is free software; you can redistribute it and/or modify -+ * it under the terms of the GNU General Public License as published by -+ * the Free Software Foundation; either version 2 of the License, or -+ * (at your option) any later version. -+ * -+ * This program is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ * GNU General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public License -+ * along with this program; if not, write to the Free Software -+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. -+ */ -+ -+#ifndef SIDEBAR_H -+#define SIDEBAR_H -+ -+#include "mutt.h" -+#include "buffy.h" -+ -+void mutt_sb_change_mailbox (int op); -+void mutt_sb_draw (void); -+const char * mutt_sb_get_highlight (void); -+void mutt_sb_init (void); -+void mutt_sb_notify_mailbox (BUFFY *b, int created); -+void mutt_sb_set_buffystats (const CONTEXT *ctx); -+BUFFY * mutt_sb_set_open_buffy (const char *path); -+void mutt_sb_set_update_time (void); -+int mutt_sb_should_refresh (void); -+ -+#endif /* SIDEBAR_H */ -diff -urN mutt-1.6.1/sort.h mutt-1.6.1-sidebar/sort.h ---- mutt-1.6.1/sort.h 2016-06-12 18:43:00.415447793 +0100 -+++ mutt-1.6.1-sidebar/sort.h 2016-06-12 18:43:03.968503200 +0100 -@@ -31,6 +31,12 @@ - #define SORT_KEYID 12 - #define SORT_TRUST 13 - #define SORT_SPAM 14 -+#define SORT_COUNT 15 -+#define SORT_COUNT_NEW 16 -+#define SORT_DESC 17 -+#define SORT_FLAGGED 18 -+#define SORT_PATH 19 -+ - /* dgc: Sort & SortAux are shorts, so I'm bumping these bitflags up from - * bits 4 & 5 to bits 8 & 9 to make room for more sort keys in the future. */ - #define SORT_MASK 0xff -@@ -50,6 +56,7 @@ - WHERE short Sort INITVAL (SORT_DATE); - WHERE short SortAux INITVAL (SORT_DATE); /* auxiliary sorting method */ - WHERE short SortAlias INITVAL (SORT_ALIAS); -+WHERE short SidebarSortMethod INITVAL (SORT_ORDER); - - /* FIXME: This one does not belong to here */ - WHERE short PgpSortKeys INITVAL (SORT_ADDRESS); diff --git a/pkgs/applications/networking/mailreaders/mutt/trash.patch b/pkgs/applications/networking/mailreaders/mutt/trash.patch deleted file mode 100644 index a7bda4c4c8b..00000000000 --- a/pkgs/applications/networking/mailreaders/mutt/trash.patch +++ /dev/null @@ -1,797 +0,0 @@ -diff -urN mutt-1.6.1/commands.c mutt-1.6.1-trash/commands.c ---- mutt-1.6.1/commands.c 2016-06-12 18:43:00.397447512 +0100 -+++ mutt-1.6.1-trash/commands.c 2016-06-12 18:43:04.892517610 +0100 -@@ -720,6 +720,7 @@ - if (option (OPTDELETEUNTAG)) - mutt_set_flag (Context, h, M_TAG, 0); - } -+ mutt_set_flag (Context, h, M_APPENDED, 1); - - return 0; - } -diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-trash/curs_main.c ---- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100 -+++ mutt-1.6.1-trash/curs_main.c 2016-06-12 18:43:04.895517656 +0100 -@@ -1919,6 +1919,7 @@ - MAYBE_REDRAW (menu->redraw); - break; - -+ case OP_PURGE_MESSAGE: - case OP_DELETE: - - CHECK_MSGCOUNT; -@@ -1930,6 +1931,7 @@ - if (tag) - { - mutt_tag_set_flag (M_DELETE, 1); -+ mutt_tag_set_flag (M_PURGED, (op != OP_PURGE_MESSAGE) ? 0 : 1); - if (option (OPTDELETEUNTAG)) - mutt_tag_set_flag (M_TAG, 0); - menu->redraw = REDRAW_INDEX; -@@ -1937,6 +1939,8 @@ - else - { - mutt_set_flag (Context, CURHDR, M_DELETE, 1); -+ mutt_set_flag (Context, CURHDR, M_PURGED, -+ (op != OP_PURGE_MESSAGE) ? 0 : 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (Context, CURHDR, M_TAG, 0); - if (option (OPTRESOLVE)) -@@ -2242,11 +2246,13 @@ - if (tag) - { - mutt_tag_set_flag (M_DELETE, 0); -+ mutt_tag_set_flag (M_PURGED, 0); - menu->redraw = REDRAW_INDEX; - } - else - { - mutt_set_flag (Context, CURHDR, M_DELETE, 0); -+ mutt_set_flag (Context, CURHDR, M_PURGED, 0); - if (option (OPTRESOLVE) && menu->current < Context->vcount - 1) - { - menu->current++; -@@ -2268,9 +2274,11 @@ - CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)")); - - rc = mutt_thread_set_flag (CURHDR, M_DELETE, 0, -- op == OP_UNDELETE_THREAD ? 0 : 1); -+ op == OP_UNDELETE_THREAD ? 0 : 1) -+ + mutt_thread_set_flag (CURHDR, M_PURGED, 0, -+ (op == OP_UNDELETE_THREAD) ? 0 : 1); - -- if (rc != -1) -+ if (rc > -1) - { - if (option (OPTRESOLVE)) - { -diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-trash/doc/manual.xml.head ---- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100 -+++ mutt-1.6.1-trash/doc/manual.xml.head 2016-06-12 18:43:04.901517750 +0100 -@@ -7467,6 +7467,16 @@ - -
- -+ -+Mutt Patches -+ -+Mutt may also be patched to support smaller features. -+These patches should add a free-form string to the end Mutt's version string. -+Running mutt -v might show: -+patch-1.6.1.sidebar.20160502 -+ -+ -+ - - URL Syntax - -@@ -8081,6 +8091,175 @@ - - - -+ -+ Trash Folder Patch -+ Automatically move "deleted" emails to a trash bin -+ -+ -+ Patch -+ -+ -+ To check if Mutt supports Trash Folder, look for -+ patch-trash in the mutt version. -+ See: . -+ -+ -+ If IMAP is enabled, this patch will use it -+ -+ -+ Dependencies: -+ mutt-1.6.1 -+ IMAP support -+ -+ -+ This patch is part of the NeoMutt Project. -+ -+ -+ -+ Introduction -+ -+ -+ In Mutt, when you delete an email it is first marked -+ deleted. The email isn't really gone until -+ <sync-mailbox> is called. -+ This happens when the user leaves the folder, or the function is called -+ manually. -+ -+ -+ -+ After <sync-mailbox> has been called the email is gone forever. -+ -+ -+ -+ The $trash variable defines a folder in -+ which to keep old emails. As before, first you mark emails for -+ deletion. When <sync-mailbox> is called the emails are moved to -+ the trash folder. -+ -+ -+ -+ The $trash path can be either a full directory, -+ or be relative to the $folder -+ variable, like the mailboxes command. -+ -+ -+ -+ Emails deleted from the trash folder are gone forever. -+ -+ -+ -+ -+ Variables -+ -+ Trash Variables -+ -+ -+ -+ Name -+ Type -+ Default -+ -+ -+ -+ -+ trash -+ string -+ (none) -+ -+ -+ -+
-+
-+ -+ -+ Functions -+ -+ Trash Functions -+ -+ -+ -+ Menus -+ Default Key -+ Function -+ Description -+ -+ -+ -+ -+ index,pager -+ (none) -+ <purge-message> -+ really delete the current entry, bypassing the trash folder -+ -+ -+ -+
-+
-+ -+ -+ -+ -+ Muttrc -+ -+# Example Mutt config file for the 'trash' feature. -+ -+# This feature defines a new 'trash' folder. -+# When mail is deleted it will be moved to this folder. -+ -+# Folder in which to put deleted emails -+set trash='+Trash' -+set trash='/home/flatcap/Mail/Trash' -+ -+# The default delete key 'd' will move an email to the 'trash' folder -+# Bind 'D' to REALLY delete an email -+bind index D purge-message -+ -+# Note: Deleting emails from the 'trash' folder will REALLY delete them. -+ -+# vim: syntax=muttrc -+ -+ -+ -+ -+ See Also -+ -+ -+ NeoMutt Project -+ folder-hook -+ -+ -+ -+ -+ Known Bugs -+ None -+ -+ -+ -+ Credits -+ -+ Cedric Duval cedricduval@free.fr -+ Benjamin Kuperman kuperman@acm.org -+ Paul Miller paul@voltar.org -+ Richard Russon rich@flatcap.org -+ -+ -+
-+ - - - -diff -urN mutt-1.6.1/doc/muttrc.trash mutt-1.6.1-trash/doc/muttrc.trash ---- mutt-1.6.1/doc/muttrc.trash 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-trash/doc/muttrc.trash 2016-06-12 18:43:04.768515676 +0100 -@@ -0,0 +1,16 @@ -+# Example Mutt config file for the 'trash' feature. -+ -+# This feature defines a new 'trash' folder. -+# When mail is deleted it will be moved to this folder. -+ -+# Folder in which to put deleted emails -+set trash='+Trash' -+set trash='/home/flatcap/Mail/Trash' -+ -+# The default delete key 'd' will move an email to the 'trash' folder -+# Bind 'D' to REALLY delete an email -+bind index D purge-message -+ -+# Note: Deleting emails from the 'trash' folder will REALLY delete them. -+ -+# vim: syntax=muttrc -diff -urN mutt-1.6.1/doc/vimrc.trash mutt-1.6.1-trash/doc/vimrc.trash ---- mutt-1.6.1/doc/vimrc.trash 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-trash/doc/vimrc.trash 2016-06-12 18:43:04.769515692 +0100 -@@ -0,0 +1,7 @@ -+" Vim syntax file for the mutt trash patch -+ -+syntax keyword muttrcVarStr contained skipwhite trash nextgroup=muttrcVarEqualsIdxFmt -+ -+syntax match muttrcFunction contained "\" -+ -+" vim: syntax=vim -diff -urN mutt-1.6.1/flags.c mutt-1.6.1-trash/flags.c ---- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100 -+++ mutt-1.6.1-trash/flags.c 2016-06-12 18:43:04.902517766 +0100 -@@ -65,7 +65,13 @@ - { - h->deleted = 0; - update = 1; -- if (upd_ctx) ctx->deleted--; -+ if (upd_ctx) { -+ ctx->deleted--; -+ if (h->appended) { -+ ctx->appended--; -+ } -+ } -+ h->appended = 0; /* when undeleting, also reset the appended flag */ - #ifdef USE_IMAP - /* see my comment above */ - if (ctx->magic == M_IMAP) -@@ -87,6 +93,27 @@ - } - break; - -+ case M_APPENDED: -+ if (bf) { -+ if (!h->appended) { -+ h->appended = 1; -+ if (upd_ctx) { -+ ctx->appended++; -+ } -+ } -+ } -+ break; -+ -+ case M_PURGED: -+ if (bf) { -+ if (!h->purged) { -+ h->purged = 1; -+ } -+ } else if (h->purged) { -+ h->purged = 0; -+ } -+ break; -+ - case M_NEW: - - if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN)) -diff -urN mutt-1.6.1/functions.h mutt-1.6.1-trash/functions.h ---- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100 -+++ mutt-1.6.1-trash/functions.h 2016-06-12 18:43:04.902517766 +0100 -@@ -121,6 +121,7 @@ - { "toggle-write", OP_TOGGLE_WRITE, "%" }, - { "next-thread", OP_MAIN_NEXT_THREAD, "\016" }, - { "next-subthread", OP_MAIN_NEXT_SUBTHREAD, "\033n" }, -+ { "purge-message", OP_PURGE_MESSAGE, NULL }, - { "query", OP_QUERY, "Q" }, - { "quit", OP_QUIT, "q" }, - { "reply", OP_REPLY, "r" }, -@@ -213,6 +214,7 @@ - { "print-message", OP_PRINT, "p" }, - { "previous-thread", OP_MAIN_PREV_THREAD, "\020" }, - { "previous-subthread",OP_MAIN_PREV_SUBTHREAD, "\033p" }, -+ { "purge-message", OP_PURGE_MESSAGE, NULL }, - { "quit", OP_QUIT, "Q" }, - { "exit", OP_EXIT, "q" }, - { "reply", OP_REPLY, "r" }, -diff -urN mutt-1.6.1/globals.h mutt-1.6.1-trash/globals.h ---- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100 -+++ mutt-1.6.1-trash/globals.h 2016-06-12 18:43:04.903517781 +0100 -@@ -141,6 +141,7 @@ - WHERE char *Status; - WHERE char *Tempdir; - WHERE char *Tochars; -+WHERE char *TrashPath; - WHERE char *TSStatusFormat; - WHERE char *TSIconFormat; - WHERE short TSSupported; -diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-trash/imap/imap.c ---- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100 -+++ mutt-1.6.1-trash/imap/imap.c 2016-06-12 18:43:04.905517812 +0100 -@@ -888,6 +888,12 @@ - if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted) - match = invert ^ hdrs[n]->deleted; - break; -+ case M_EXPIRED: /* imap_fast_trash version of M_DELETED */ -+ if (hdrs[n]->purged) -+ break; -+ if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted) -+ match = invert ^ (hdrs[n]->deleted && !hdrs[n]->appended); -+ break; - case M_FLAG: - if (hdrs[n]->flagged != HEADER_DATA(hdrs[n])->flagged) - match = invert ^ hdrs[n]->flagged; -@@ -2038,3 +2044,53 @@ - - return -1; - } -+ -+/** -+ * imap_fast_trash - XXX -+ */ -+int -+imap_fast_trash (void) -+{ -+ if ((Context->magic == M_IMAP) && mx_is_imap (TrashPath)) { -+ IMAP_MBOX mx; -+ IMAP_DATA *idata = (IMAP_DATA *) Context->data; -+ char mbox[LONG_STRING]; -+ char mmbox[LONG_STRING]; -+ int rc; -+ dprint (1, (debugfile, "[itf] trashcan seems to be on imap.\n")); -+ -+ if (imap_parse_path (TrashPath, &mx) == 0) { -+ if (mutt_account_match (&(idata->conn->account), &(mx.account))) { -+ dprint (1, (debugfile, "[itf] trashcan seems to be on the same account.\n")); -+ -+ imap_fix_path (idata, mx.mbox, mbox, sizeof (mbox)); -+ if (!*mbox) -+ strfcpy (mbox, "INBOX", sizeof (mbox)); -+ imap_munge_mbox_name (idata, mmbox, sizeof (mmbox), mbox); -+ -+ rc = imap_exec_msgset (idata, "UID COPY", mmbox, M_EXPIRED, 0, 0); -+ if (rc == 0) { -+ dprint (1, (debugfile, "imap_copy_messages: No messages del-tagged\n")); -+ rc = -1; -+ goto old_way; -+ } else if (rc < 0) { -+ dprint (1, (debugfile, "could not queue copy\n")); -+ goto old_way; -+ } else { -+ mutt_message (_("Copying %d messages to %s..."), rc, mbox); -+ return 0; -+ } -+ } else { -+ dprint (1, (debugfile, "[itf] trashcan seems to be on a different account.\n")); -+ } -+old_way: -+ FREE(&mx.mbox); /* we probably only need to free this when the parse works */ -+ } else { -+ dprint (1, (debugfile, "[itf] failed to parse TrashPath.\n")); -+ } -+ -+ dprint (1, (debugfile, "[itf] giving up and trying old fasioned way.\n")); -+ } -+ -+ return 1; -+} -diff -urN mutt-1.6.1/imap/imap.h mutt-1.6.1-trash/imap/imap.h ---- mutt-1.6.1/imap/imap.h 2016-06-12 18:43:00.405447637 +0100 -+++ mutt-1.6.1-trash/imap/imap.h 2016-06-12 18:43:04.774515769 +0100 -@@ -72,4 +72,7 @@ - - int imap_account_match (const ACCOUNT* a1, const ACCOUNT* a2); - -+/* trash */ -+int imap_fast_trash (void); -+ - #endif -diff -urN mutt-1.6.1/imap/message.c mutt-1.6.1-trash/imap/message.c ---- mutt-1.6.1/imap/message.c 2016-06-12 18:43:00.406447652 +0100 -+++ mutt-1.6.1-trash/imap/message.c 2016-06-12 18:43:04.906517828 +0100 -@@ -886,6 +886,7 @@ - if (ctx->hdrs[n]->tagged) - { - mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1); -+ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0); - } -@@ -893,6 +894,7 @@ - else - { - mutt_set_flag (ctx, h, M_DELETE, 1); -+ mutt_set_flag (ctx, h, M_APPENDED, 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (ctx, h, M_TAG, 0); - } -diff -urN mutt-1.6.1/init.h mutt-1.6.1-trash/init.h ---- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100 -+++ mutt-1.6.1-trash/init.h 2016-06-12 18:43:04.909517875 +0100 -@@ -3419,6 +3419,16 @@ - ** provided that ``$$ts_enabled'' has been set. This string is identical in - ** formatting to the one used by ``$$status_format''. - */ -+ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 }, -+ /* -+ ** .pp -+ ** If set, this variable specifies the path of the trash folder where the -+ ** mails marked for deletion will be moved, instead of being irremediably -+ ** purged. -+ ** .pp -+ ** NOTE: When you delete a message in the trash folder, it is really -+ ** deleted, so that you have a way to clean the trash. -+ */ - #ifdef USE_SOCKET - { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 }, - /* -diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-trash/mutt.h ---- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100 -+++ mutt-1.6.1-trash/mutt.h 2016-06-12 18:43:04.912517922 +0100 -@@ -182,6 +182,8 @@ - M_DELETE, - M_UNDELETE, - M_DELETED, -+ M_APPENDED, -+ M_PURGED, - M_FLAG, - M_TAG, - M_UNTAG, -@@ -719,6 +721,8 @@ - unsigned int mime : 1; /* has a MIME-Version header? */ - unsigned int flagged : 1; /* marked important? */ - unsigned int tagged : 1; -+ unsigned int appended : 1; /* has been saved */ -+ unsigned int purged : 1; /* bypassing the trash folder */ - unsigned int deleted : 1; - unsigned int changed : 1; - unsigned int attach_del : 1; /* has an attachment marked for deletion */ -@@ -891,6 +895,7 @@ - int new; /* how many new messages? */ - int unread; /* how many unread messages? */ - int deleted; /* how many deleted messages */ -+ int appended; /* how many saved messages? */ - int flagged; /* how many flagged messages */ - int msgnotreadyet; /* which msg "new" in pager, -1 if none */ - -diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-trash/muttlib.c ---- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100 -+++ mutt-1.6.1-trash/muttlib.c 2016-06-12 18:43:04.913517937 +0100 -@@ -1511,7 +1511,9 @@ - - if (magic > 0 && !mx_access (s, W_OK)) - { -- if (option (OPTCONFIRMAPPEND)) -+ if (option (OPTCONFIRMAPPEND) && -+ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0))) -+ /* if we're appending to the trash, there's no point in asking */ - { - snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s); - if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO) -diff -urN mutt-1.6.1/mx.c mutt-1.6.1-trash/mx.c ---- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100 -+++ mutt-1.6.1-trash/mx.c 2016-06-12 18:43:04.914517953 +0100 -@@ -776,6 +776,62 @@ - return rc; - } - -+/** -+ * trash_append - XXX -+ * -+ * move deleted mails to the trash folder -+ */ -+static int trash_append (CONTEXT *ctx) -+{ -+ CONTEXT *ctx_trash; -+ int i = 0; -+ struct stat st, stc; -+ -+ if (!TrashPath || !ctx->deleted || -+ ((ctx->magic == M_MAILDIR) && option (OPTMAILDIRTRASH))) { -+ return 0; -+ } -+ -+ for (; i < ctx->msgcount && (!ctx->hdrs[i]->deleted || ctx->hdrs[i]->appended); i++); -+ /* nothing */ -+ -+ if (i == ctx->msgcount) -+ return 0; /* nothing to be done */ -+ -+ if (mutt_save_confirm (TrashPath, &st) != 0) { -+ mutt_error _("message(s) not deleted"); -+ return -1; -+ } -+ -+ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino -+ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev) { -+ return 0; /* we are in the trash folder: simple sync */ -+ } -+ -+#ifdef USE_IMAP -+ if (!imap_fast_trash()) -+ return 0; -+#endif -+ -+ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL) { -+ for (i = 0 ; i < ctx->msgcount ; i++) { -+ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended -+ && !ctx->hdrs[i]->purged -+ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1) { -+ mx_close_mailbox (ctx_trash, NULL); -+ return -1; -+ } -+ } -+ -+ mx_close_mailbox (ctx_trash, NULL); -+ } else { -+ mutt_error _("Can't open trash folder"); -+ return -1; -+ } -+ -+ return 0; -+} -+ - /* save changes and close mailbox */ - int mx_close_mailbox (CONTEXT *ctx, int *index_hint) - { -@@ -912,6 +968,7 @@ - if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0) - { - mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1); -+ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1); - } - else - { -@@ -936,6 +993,14 @@ - return 0; - } - -+ /* copy mails to the trash before expunging */ -+ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) { -+ if (trash_append (ctx) != 0) { -+ ctx->closing = 0; -+ return -1; -+ } -+ } -+ - #ifdef USE_IMAP - /* allow IMAP to preserve the deleted flag across sessions */ - if (ctx->magic == M_IMAP) -@@ -1140,6 +1205,12 @@ - msgcount = ctx->msgcount; - deleted = ctx->deleted; - -+ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) { -+ if (trash_append (ctx) == -1) { -+ return -1; -+ } -+ } -+ - #ifdef USE_IMAP - if (ctx->magic == M_IMAP) - rc = imap_sync_mailbox (ctx, purge, index_hint); -diff -urN mutt-1.6.1/OPS mutt-1.6.1-trash/OPS ---- mutt-1.6.1/OPS 2016-06-12 18:43:00.389447388 +0100 -+++ mutt-1.6.1-trash/OPS 2016-06-12 18:43:04.883517469 +0100 -@@ -142,6 +142,7 @@ - OP_PREV_LINE "scroll up one line" - OP_PREV_PAGE "move to the previous page" - OP_PRINT "print the current entry" -+OP_PURGE_MESSAGE "really delete the current entry, bypassing the trash folder" - OP_QUERY "query external program for addresses" - OP_QUERY_APPEND "append new query results to current results" - OP_QUIT "save changes to mailbox and quit" -diff -urN mutt-1.6.1/pager.c mutt-1.6.1-trash/pager.c ---- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100 -+++ mutt-1.6.1-trash/pager.c 2016-06-12 18:43:04.915517968 +0100 -@@ -2351,6 +2351,7 @@ - MAYBE_REDRAW (redraw); - break; - -+ case OP_PURGE_MESSAGE: - case OP_DELETE: - CHECK_MODE(IsHeader (extra)); - CHECK_READONLY; -@@ -2358,6 +2359,8 @@ - CHECK_ACL(M_ACL_DELETE, _("Cannot delete message")); - - mutt_set_flag (Context, extra->hdr, M_DELETE, 1); -+ mutt_set_flag (Context, extra->hdr, M_PURGED, -+ ch != OP_PURGE_MESSAGE ? 0 : 1); - if (option (OPTDELETEUNTAG)) - mutt_set_flag (Context, extra->hdr, M_TAG, 0); - redraw = REDRAW_STATUS | REDRAW_INDEX; -@@ -2688,6 +2691,7 @@ - CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message")); - - mutt_set_flag (Context, extra->hdr, M_DELETE, 0); -+ mutt_set_flag (Context, extra->hdr, M_PURGED, 0); - redraw = REDRAW_STATUS | REDRAW_INDEX; - if (option (OPTRESOLVE)) - { -@@ -2704,9 +2708,11 @@ - CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)")); - - r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0, -+ ch == OP_UNDELETE_THREAD ? 0 : 1) -+ + mutt_thread_set_flag (extra->hdr, M_PURGED, 0, - ch == OP_UNDELETE_THREAD ? 0 : 1); - -- if (r != -1) -+ if (r > -1) - { - if (option (OPTRESOLVE)) - { -diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-trash/PATCHES ---- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100 -+++ mutt-1.6.1-trash/PATCHES 2016-06-12 18:43:04.889517563 +0100 -@@ -0,0 +1 @@ -+patch-trash-neo-20160612 -diff -urN mutt-1.6.1/pattern.c mutt-1.6.1-trash/pattern.c ---- mutt-1.6.1/pattern.c 2016-06-12 18:43:00.413447762 +0100 -+++ mutt-1.6.1-trash/pattern.c 2016-06-12 18:43:04.916517984 +0100 -@@ -1367,8 +1367,9 @@ - { - switch (op) - { -- case M_DELETE: - case M_UNDELETE: -+ mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_PURGED, 0); -+ case M_DELETE: - mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_DELETE, - (op == M_DELETE)); - break; -diff -urN mutt-1.6.1/postpone.c mutt-1.6.1-trash/postpone.c ---- mutt-1.6.1/postpone.c 2016-06-12 18:43:00.414447777 +0100 -+++ mutt-1.6.1-trash/postpone.c 2016-06-12 18:43:04.917518000 +0100 -@@ -277,6 +277,9 @@ - /* finished with this message, so delete it. */ - mutt_set_flag (PostContext, h, M_DELETE, 1); - -+ /* and consider it saved, so that it won't be moved to the trash folder */ -+ mutt_set_flag (PostContext, h, M_APPENDED, 1); -+ - /* update the count for the status display */ - PostCount = PostContext->msgcount - PostContext->deleted; - -diff -urN mutt-1.6.1/README.trash mutt-1.6.1-trash/README.trash ---- mutt-1.6.1/README.trash 1970-01-01 01:00:00.000000000 +0100 -+++ mutt-1.6.1-trash/README.trash 2016-06-12 18:43:04.748515364 +0100 -@@ -0,0 +1,74 @@ -+Trash Folder Patch -+================== -+ -+ Automatically move "deleted" emails to a trash bin -+ -+Patch -+----- -+ -+ To check if Mutt supports "Trash Folder", look for "patch-trash" in the -+ mutt version. -+ -+ If IMAP is enabled, this patch will use it -+ -+ Dependencies -+ * mutt-1.6.1 -+ * IMAP support -+ -+Introduction -+------------ -+ -+ In Mutt, when you "delete" an email it is first marked deleted. The email -+ isn't really gone until is called. This happens when the -+ user leaves the folder, or the function is called manually. -+ -+ After '' has been called the email is gone forever. -+ -+ The $trash variable defines a folder in which to keep old emails. As -+ before, first you mark emails for deletion. When is called -+ the emails are moved to the trash folder. -+ -+ The '$trash' path can be either a full directory, or be relative to the -+ $folder variable, like the 'mailboxes' command. -+ -+ > Note -+ > -+ > Emails deleted from the trash folder are gone forever. -+ -+Variables -+--------- -+ -+ Trash Variables -+ -+ | Name | Type | Default | -+ |-------|--------|---------| -+ | trash | string | (none) | -+ -+Functions -+--------- -+ -+ Trash Functions -+ -+ | Menus | Default Key | Function | Description | -+ |-------------|-------------|-------------------|-------------------------------------------------------------| -+ | index,pager | (none) | '' | really delete the current entry, bypassing the trash folder | -+ -+See Also -+-------- -+ -+ * NeoMutt project -+ * folder-hook -+ -+Known Bugs -+---------- -+ -+ None -+ -+Credits -+------- -+ -+ * Cedric Duval -+ * Benjamin Kuperman -+ * Paul Miller -+ * Richard Russon -+ From 018f4eb164633a0912097065f6413c40575a67c0 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Sat, 16 Jul 2016 14:02:08 +0200 Subject: [PATCH 276/508] ethtool: 4.5 -> 4.6 --- pkgs/tools/misc/ethtool/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/ethtool/default.nix b/pkgs/tools/misc/ethtool/default.nix index 9ffc4723dfd..363aaf3f389 100644 --- a/pkgs/tools/misc/ethtool/default.nix +++ b/pkgs/tools/misc/ethtool/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "ethtool-4.5"; + name = "ethtool-${version}"; + version = "4.6"; src = fetchurl { url = "mirror://kernel/software/network/ethtool/${name}.tar.xz"; - sha256 = "0fyakzpcrjb7hkaj9ccpcgza7r2im17qzxy9w6xzbiss5hrk8a5v"; + sha256 = "e90589a9349d008cce8c0510ac4e8878efdc0ddb1b732a9a4cc333b101313415"; }; meta = with stdenv.lib; { From 16cc4dd3a3cde61c3dd66f96d27f6a699188ee01 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sat, 16 Jul 2016 21:07:21 +0800 Subject: [PATCH 277/508] vtun: add debian gcc5 fix --- pkgs/tools/networking/vtun/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/vtun/default.nix b/pkgs/tools/networking/vtun/default.nix index b0397149e60..09f48d9fa1a 100644 --- a/pkgs/tools/networking/vtun/default.nix +++ b/pkgs/tools/networking/vtun/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, openssl, lzo, zlib, yacc, flex }: +{ stdenv, fetchurl, fetchpatch, openssl, lzo, zlib, yacc, flex }: stdenv.mkDerivation rec { name = "vtun-3.0.3"; @@ -8,7 +8,13 @@ stdenv.mkDerivation rec { sha256 = "1jxrxp3klhc8az54d5qn84cbc0vdafg319jh84dxkrswii7vxp39"; }; - patchPhase = '' + patches = [ + (fetchpatch { url = http://sources.debian.net/data/main/v/vtun/3.0.3-2.2/debian/patches/08-gcc5-inline.patch; + sha256 = "18sys97v2hx6vac5zp3ld7sa6kz4izv3g9dnkm0lflbaxhym2vs1"; + }) + ]; + + postPatch = '' sed -i -e 's/-m 755//' -e 's/-o root -g 0//' Makefile.in sed -i '/strip/d' Makefile.in ''; From eb34cf1b6dec5017d719e5318e3aea42a1cd9cf5 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sat, 16 Jul 2016 21:57:23 +0800 Subject: [PATCH 278/508] lightum: fix build against systemd-230 --- pkgs/os-specific/linux/lightum/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/os-specific/linux/lightum/default.nix b/pkgs/os-specific/linux/lightum/default.nix index 0ef447ed924..3eaf4363195 100644 --- a/pkgs/os-specific/linux/lightum/default.nix +++ b/pkgs/os-specific/linux/lightum/default.nix @@ -18,6 +18,11 @@ stdenv.mkDerivation { systemd ]; + patchPhase = '' + substituteInPlace Makefile \ + --replace "libsystemd-login" "libsystemd" + ''; + installPhase = '' make install prefix=$out bindir=$out/bin docdir=$out/share/doc \ mandir=$out/share/man INSTALL="install -c" INSTALLDATA="install -c -m 644" From a306cbf86f7bfc889b53240546b528936a5341cc Mon Sep 17 00:00:00 2001 From: Jookia <166291@gmail.com> Date: Mon, 11 Jul 2016 10:43:06 +1000 Subject: [PATCH 279/508] dxx_rebirth: Mark license as nonfree. The actual license prohibits commercial use. --- pkgs/games/d1x-rebirth/default.nix | 2 +- pkgs/games/d2x-rebirth/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/d1x-rebirth/default.nix b/pkgs/games/d1x-rebirth/default.nix index ab8c76680d4..1b587331371 100644 --- a/pkgs/games/d1x-rebirth/default.nix +++ b/pkgs/games/d1x-rebirth/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meta = { homepage = http://www.dxx-rebirth.com/; description = "Source Port of the Descent 1 engine"; - license = stdenv.lib.licenses.mit; + license = stdenv.lib.licenses.unfree; platforms = with stdenv.lib.platforms; linux; maintainers = with stdenv.lib.maintainers; [viric]; }; diff --git a/pkgs/games/d2x-rebirth/default.nix b/pkgs/games/d2x-rebirth/default.nix index 58df972257e..05d73a4eafe 100644 --- a/pkgs/games/d2x-rebirth/default.nix +++ b/pkgs/games/d2x-rebirth/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meta = { homepage = http://www.dxx-rebirth.com/; description = "Source Port of the Descent 2 engine"; - license = stdenv.lib.licenses.mit; + license = stdenv.lib.licenses.unfree; platforms = with stdenv.lib.platforms; linux; maintainers = with stdenv.lib.maintainers; [viric]; }; From 5e5165ec6f9171ea831b4f05c141ad74d888a5f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Sat, 16 Jul 2016 17:05:56 +0200 Subject: [PATCH 280/508] platinum-searcher: 2.1.1 -> 2.1.3 --- pkgs/tools/text/platinum-searcher/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/text/platinum-searcher/default.nix b/pkgs/tools/text/platinum-searcher/default.nix index 9eae37c6d1a..21a49d493aa 100644 --- a/pkgs/tools/text/platinum-searcher/default.nix +++ b/pkgs/tools/text/platinum-searcher/default.nix @@ -2,8 +2,8 @@ buildGoPackage rec { name = "the_platinum_searcher-${version}"; - version = "2.1.1"; - rev = "v2.1.1"; + version = "2.1.3"; + rev = "v2.1.3"; goPackagePath = "github.com/monochromegane/the_platinum_searcher"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "monochromegane"; repo = "the_platinum_searcher"; - sha256 = "06cs936w3l64ikszcysdm9ijn52kwgi1ffjxkricxbdb677gsk23"; + sha256 = "09pkdfh7fqn3x4l9zaw5wzk20k7nfdwry7br9vfy3vv3fwv61ynp"; }; goDeps = ./deps.json; From d19dc420d250fd115693724af543a3082175b5c0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 07:37:38 -0500 Subject: [PATCH 281/508] qt56.qtbase: don't use propagatedUserEnvPkgs Fixes #15498. --- pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh index 8d1a453787f..6d8989281eb 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh @@ -28,7 +28,6 @@ _qtPropagate() { for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do if [ -d "$1/$dir" ]; then propagateOnce propagatedBuildInputs "$1" - propagateOnce propagatedUserEnvPkgs "$1" break fi done @@ -43,9 +42,6 @@ _qtPropagateNative() { for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do if [ -d "$1/$dir" ]; then propagateOnce propagatedNativeBuildInputs "$1" - if [ -z "$crossConfig" ]; then - propagateOnce propagatedUserEnvPkgs "$1" - fi break fi done From 766ea7c4ca6dc54bd26a28f67a99257bde2ff331 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 07:57:18 -0500 Subject: [PATCH 282/508] qt55.qtbase: update setup hook --- .../libraries/qt-5/5.5/qtbase/setup-hook.sh | 125 +++++++++++++++++- 1 file changed, 122 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh index a9c4fbc855f..6d8989281eb 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh @@ -24,11 +24,10 @@ propagateOnce() { addToSearchPathOnceWithCustomDelimiter ' ' "$@" } -_qtPropagateRuntimeDependencies() { +_qtPropagate() { for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do if [ -d "$1/$dir" ]; then propagateOnce propagatedBuildInputs "$1" - propagateOnce propagatedUserEnvPkgs "$1" break fi done @@ -37,7 +36,23 @@ _qtPropagateRuntimeDependencies() { addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" } -envHooks+=(_qtPropagateRuntimeDependencies) +crossEnvHooks+=(_qtPropagate) + +_qtPropagateNative() { + for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do + if [ -d "$1/$dir" ]; then + propagateOnce propagatedNativeBuildInputs "$1" + break + fi + done + if [ -z "$crossConfig" ]; then + addToSearchPathOnce QT_PLUGIN_PATH "$1/lib/qt5/plugins" + addToSearchPathOnce QML_IMPORT_PATH "$1/lib/qt5/imports" + addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" + fi +} + +envHooks+=(_qtPropagateNative) _qtMultioutDevs() { # This is necessary whether the package is a Qt module or not @@ -50,3 +65,107 @@ if [[ -z "$NIX_QT_PIC" ]]; then export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE${NIX_CFLAGS_COMPILE:+ }-fPIC" export NIX_QT_PIC=1 fi + +_qtSetCMakePrefix() { + export CMAKE_PREFIX_PATH="$NIX_QT5_TMP${CMAKE_PREFIX_PATH:+:}${CMAKE_PREFIX_PATH}" +} + +_qtRmTmp() { + if [ -z "$NIX_QT_SUBMODULE" ]; then + rm -fr "$NIX_QT5_TMP" + else + cat "$NIX_QT5_TMP/nix-support/qt-inputs" | while read file; do + if [ ! -d "$NIX_QT5_TMP/$file" ]; then + rm -f "$NIX_QT5_TMP/$file" + fi + done + + cat "$NIX_QT5_TMP/nix-support/qt-inputs" | while read dir; do + if [ -d "$NIX_QT5_TMP/$dir" ]; then + rmdir --ignore-fail-on-non-empty -p "$NIX_QT5_TMP/$dir" + fi + done + + rm "$NIX_QT5_TMP/nix-support/qt-inputs" + fi +} + +_qtSetQmakePath() { + export PATH="$NIX_QT5_TMP/bin${PATH:+:}$PATH" +} + +if [ -z "$NIX_QT5_TMP" ]; then + if [ -z "$NIX_QT_SUBMODULE" ]; then + NIX_QT5_TMP=$(mktemp -d) + else + NIX_QT5_TMP=$out + fi + postInstallHooks+=(_qtRmTmp) + + mkdir -p "$NIX_QT5_TMP/nix-support" + for subdir in bin include lib mkspecs share; do + mkdir "$NIX_QT5_TMP/$subdir" + echo "$subdir/" >> "$NIX_QT5_TMP/nix-support/qt-inputs" + done + + postHooks+=(_qtSetCMakePrefix) + + cp "@dev@/bin/qmake" "$NIX_QT5_TMP/bin" + echo "bin/qmake" >> "$NIX_QT5_TMP/nix-support/qt-inputs" + + cat >"$NIX_QT5_TMP/bin/qt.conf" <> "$NIX_QT5_TMP/nix-support/qt-inputs" + + export QMAKE="$NIX_QT5_TMP/bin/qmake" + + # Set PATH to find qmake first in a preConfigure hook + # It must run after all the envHooks! + preConfigureHooks+=(_qtSetQmakePath) +fi + +qt5LinkModuleDir() { + if [ -d "$1/$2" ]; then + @lndir@/bin/lndir -silent "$1/$2" "$NIX_QT5_TMP/$2" + find "$1/$2" -printf "$2/%P\n" >> "$NIX_QT5_TMP/nix-support/qt-inputs" + fi +} + +NIX_QT5_MODULES="${NIX_QT5_MODULES}${NIX_QT5_MODULES:+:}@out@" +NIX_QT5_MODULES_DEV="${NIX_QT5_MODULES_DEV}${NIX_QT5_MODULES_DEV:+:}@dev@" + +_qtLinkAllModules() { + IFS=: read -a modules <<< $NIX_QT5_MODULES + for module in ${modules[@]}; do + qt5LinkModuleDir "$module" "lib" + done + + IFS=: read -a modules <<< $NIX_QT5_MODULES_DEV + for module in ${modules[@]}; do + qt5LinkModuleDir "$module" "bin" + qt5LinkModuleDir "$module" "include" + qt5LinkModuleDir "$module" "lib" + qt5LinkModuleDir "$module" "mkspecs" + qt5LinkModuleDir "$module" "share" + done +} + +preConfigureHooks+=(_qtLinkAllModules) + +_qtFixCMakePaths() { + find "${!outputLib}" -name "*.cmake" | while read file; do + substituteInPlace "$file" \ + --subst-var-by NIX_OUT "${!outputLib}" \ + --subst-var-by NIX_DEV "${!outputDev}" + done +} + +if [ -n "$NIX_QT_SUBMODULE" ]; then + postInstallHooks+=(_qtFixCMakePaths) +fi From 1cb4aacf180cf2e087f59f8810caf405f101839e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 09:37:11 -0500 Subject: [PATCH 283/508] nixos/kde5: fix paths to setuid programs --- nixos/modules/services/x11/desktop-managers/kde5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 060dda1a70a..312e4d72585 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -50,13 +50,13 @@ in security.setuidOwners = [ { program = "kcheckpass"; - source = "${kde5.plasma-workspace}/lib/libexec/kcheckpass"; + source = "${kde5.plasma-workspace.out}/lib/libexec/kcheckpass"; owner = "root"; setuid = true; } { program = "start_kdeinit_wrapper"; - source = "${kde5.plasma-workspace}/lib/libexec/kf5/start_kdeinit_wrapper"; + source = "${kde5.kinit.out}/lib/libexec/kf5/start_kdeinit_wrapper"; owner = "root"; setuid = true; } From 949277ed0a2d772476f83a108783c2ff1af68342 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 09:43:35 -0500 Subject: [PATCH 284/508] kde5.startkde: append extra PATH elements; set Qt search paths --- .../kde-5/plasma/startkde/default.nix | 48 ++++++++++++++----- .../kde-5/plasma/startkde/startkde.sh | 6 ++- 2 files changed, 40 insertions(+), 14 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma/startkde/default.nix b/pkgs/desktops/kde-5/plasma/startkde/default.nix index 30e986c21b4..516d651cec2 100644 --- a/pkgs/desktops/kde-5/plasma/startkde/default.nix +++ b/pkgs/desktops/kde-5/plasma/startkde/default.nix @@ -1,16 +1,15 @@ -{ stdenv, lib, runCommand -, dbus, qttools, socat -, gnugrep, gnused -, kconfig, kinit, kservice -, plasma-workspace -, xmessage, xprop, xsetroot +{ + stdenv, lib, runCommand, dbus, qttools, socat, gnugrep, gnused, kconfig, + kinit, kservice, plasma-workspace, xmessage, xprop, xsetroot, qtbase, + qtdeclarative, qtgraphicaleffects, qtquickcontrols, qtscript, qtsvg, + qtx11extras, qtxmlpatterns }: let env = { inherit (stdenv) shell; - paths = builtins.map (pkg: pkg.out or pkg) + bins = builtins.map (pkg: pkg.out or pkg) [ dbus qttools socat gnugrep gnused @@ -18,15 +17,38 @@ let plasma-workspace xmessage xprop xsetroot ]; + libs = builtins.map (pkg: pkg.out or pkg) + [ + qtbase qtdeclarative qtgraphicaleffects qtquickcontrols + qtscript qtsvg qtx11extras qtxmlpatterns + ]; }; 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" + + # Configure PATH variable + suffixPATH= + for p in $bins; do + addToSearchPath suffixPATH "$p/bin" + addToSearchPath suffixPATH "$p/lib/libexec" + addToSearchPath suffixPATH "$p/lib/libexec/kf5" done - substitute ${./startkde.sh} "$out" --subst-var shell --subst-var prefix_PATH + + # Configure Qt search paths + QT_PLUGIN_PATH= + QML_IMPORT_PATH= + QML2_IMPORT_PATH= + for p in $libs; do + addToSearchPath QT_PLUGIN_PATH "$p/lib/qt5/plugins" + addToSearchPath QML_IMPORT_PATH "$p/lib/qt5/imports" + addToSearchPath QML2_IMPORT_PATH "$p/lib/qt5/qml" + done + + substitute ${./startkde.sh} "$out" \ + --subst-var shell \ + --subst-var suffixPATH \ + --subst-var QT_PLUGIN_PATH \ + --subst-var QML_IMPORT_PATH \ + --subst-var QML2_IMPORT_PATH chmod +x "$out" '' diff --git a/pkgs/desktops/kde-5/plasma/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh index d839226a456..a626fdc2b5a 100755 --- a/pkgs/desktops/kde-5/plasma/startkde/startkde.sh +++ b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh @@ -1,6 +1,10 @@ #!@shell@ -PATH="@prefix_PATH@:$PATH" +PATH="$PATH${PATH:+:}@suffixPATH@" + +export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}@QT_PLUGIN_PATH@" +export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}@QML_IMPORT_PATH@" +export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}@QML2_IMPORT_PATH@" # The KDE icon cache is supposed to update itself # automatically, but it uses the timestamp on the icon From 888c66f97d592ebb2579527da722843a5e99a5b8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 09:52:40 -0500 Subject: [PATCH 285/508] nixos/kde5: disable setuid wrapper for kdeinit We need to pass certain environment variables through the wrapper, but I don't know how to do that yet. The setuid-root feature serves only to hide kdeinit from the OOM killer, so this is not critical. --- nixos/modules/services/x11/desktop-managers/kde5.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 312e4d72585..f94e1b6559a 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -54,12 +54,16 @@ in owner = "root"; setuid = true; } + # ttuegel: Disabled until I can figure out how to propagate the + # necessary environment variables. + /* { program = "start_kdeinit_wrapper"; source = "${kde5.kinit.out}/lib/libexec/kf5/start_kdeinit_wrapper"; owner = "root"; setuid = true; } + */ ]; environment.systemPackages = From 512212db36b3a3afec6ae38081028e51927ad3bc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 09:59:21 -0500 Subject: [PATCH 286/508] kde5.frameworks: unwrap all frameworks --- .../kde-5/applications/ark/default.nix | 51 ++++++++----------- pkgs/desktops/kde-5/frameworks/baloo.nix | 11 +--- pkgs/desktops/kde-5/frameworks/kconfig.nix | 11 +--- .../frameworks/kconfigwidgets/default.nix | 5 +- .../desktops/kde-5/frameworks/kcoreaddons.nix | 7 +-- .../desktops/kde-5/frameworks/kdbusaddons.nix | 10 +--- .../kde-5/frameworks/kdeclarative.nix | 7 +-- .../kde-5/frameworks/kdesignerplugin.nix | 7 +-- .../kde-5/frameworks/kdoctools/default.nix | 4 +- .../kde-5/frameworks/kglobalaccel.nix | 6 +-- .../kde-5/frameworks/kiconthemes/default.nix | 7 +-- .../desktops/kde-5/frameworks/kio/default.nix | 10 +--- pkgs/desktops/kde-5/frameworks/kjs.nix | 6 +-- pkgs/desktops/kde-5/frameworks/kjsembed.nix | 8 +-- .../kde-5/frameworks/kpackage/default.nix | 6 +-- .../kde-5/frameworks/ktexteditor/default.nix | 4 +- pkgs/desktops/kde-5/frameworks/kwallet.nix | 8 +-- .../kde-5/frameworks/plasma-framework.nix | 7 +-- pkgs/desktops/kde-5/frameworks/solid.nix | 6 +-- .../kde-5/plasma/plasma-workspace/default.nix | 39 +++++--------- 20 files changed, 64 insertions(+), 156 deletions(-) diff --git a/pkgs/desktops/kde-5/applications/ark/default.nix b/pkgs/desktops/kde-5/applications/ark/default.nix index 331c8c647ca..0af13b645e1 100644 --- a/pkgs/desktops/kde-5/applications/ark/default.nix +++ b/pkgs/desktops/kde-5/applications/ark/default.nix @@ -1,44 +1,33 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, karchive -, kconfig -, kcrash -, kdbusaddons -, ki18n -, kiconthemes -, khtml -, kio -, kservice -, kpty -, kwidgetsaddons -, libarchive -, p7zip -, unrar -, unzipNLS -, zip -}: +{ + kdeApp, lib, -let PATH = lib.makeBinPath [ - p7zip unrar unzipNLS zip - ]; -in + extra-cmake-modules, kdoctools, makeQtWrapper, + + karchive, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, khtml, kio, + kservice, kpty, kwidgetsaddons, libarchive, + + # Archive tools + p7zip, unrar, unzipNLS, zip +}: kdeApp { name = "ark"; nativeBuildInputs = [ - extra-cmake-modules - kdoctools + extra-cmake-modules kdoctools makeQtWrapper ]; propagatedBuildInputs = [ khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice kpty kwidgetsaddons libarchive ]; - postInstall = '' - wrapQtProgram "$out/bin/ark" \ - --prefix PATH : "${PATH}" - ''; + postInstall = + let + PATH = lib.makeBinPath [ + p7zip unrar unzipNLS zip + ]; + in '' + 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/frameworks/baloo.nix b/pkgs/desktops/kde-5/frameworks/baloo.nix index f676da0f4c8..825a125c8a7 100644 --- a/pkgs/desktops/kde-5/frameworks/baloo.nix +++ b/pkgs/desktops/kde-5/frameworks/baloo.nix @@ -1,22 +1,15 @@ { kdeFramework, lib, extra-cmake-modules, kauth, kconfig , kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime -, kio, lmdb, makeQtWrapper, qtbase, solid +, kio, lmdb, qtbase, solid }: kdeFramework { name = "baloo"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ kauth kconfig kcoreaddons kcrash kdbusaddons kfilemetadata ki18n kio kidletime lmdb qtbase solid ]; - 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/kconfig.nix b/pkgs/desktops/kde-5/frameworks/kconfig.nix index e132afe5988..154329d0e98 100644 --- a/pkgs/desktops/kde-5/frameworks/kconfig.nix +++ b/pkgs/desktops/kde-5/frameworks/kconfig.nix @@ -1,16 +1,9 @@ { 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 ]; - }; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; + nativeBuildInputs = [ extra-cmake-modules ]; } diff --git a/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix index 1e6976113de..f507abe2991 100644 --- a/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix +++ b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix @@ -1,15 +1,14 @@ { kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig -, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper +, kdoctools, kguiaddons, ki18n, kwidgetsaddons }: kdeFramework { name = "kconfigwidgets"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ kauth kconfig kcodecs kguiaddons ki18n kwidgetsaddons ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; postInstall = '' moveToOutput "bin/preparetips5" "$dev" - wrapQtProgram "$dev/bin/preparetips5" ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix index 846b187c866..94b4136df3d 100644 --- a/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix +++ b/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix @@ -1,4 +1,4 @@ -{ kdeFramework, lib, makeQtWrapper +{ kdeFramework, lib , extra-cmake-modules , shared_mime_info }: @@ -6,9 +6,6 @@ kdeFramework { name = "kcoreaddons"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ shared_mime_info ]; - postInstall = '' - wrapQtProgram "$out/bin/desktoptojson" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix index d2ceab31d14..eadd645fb99 100644 --- a/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix +++ b/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix @@ -1,17 +1,11 @@ { kdeFramework, lib , extra-cmake-modules -, makeQtWrapper , qtx11extras }: kdeFramework { name = "kdbusaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; + nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kquitapp5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } diff --git a/pkgs/desktops/kde-5/frameworks/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix index af9a009b82e..8db1b73c91a 100644 --- a/pkgs/desktops/kde-5/frameworks/kdeclarative.nix +++ b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix @@ -1,18 +1,15 @@ { kdeFramework, lib, extra-cmake-modules, epoxy, kconfig , kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage -, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig +, kwidgetsaddons, kwindowsystem, pkgconfig , qtdeclarative }: kdeFramework { name = "kdeclarative"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage kwidgetsaddons kwindowsystem qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/kpackagelauncherqml" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix index a99587bbf04..8e17a1a60c8 100644 --- a/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix +++ b/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix @@ -1,4 +1,4 @@ -{ kdeFramework, lib, makeQtWrapper +{ kdeFramework, lib , extra-cmake-modules , kcompletion , kconfig @@ -18,12 +18,9 @@ kdeFramework { name = "kdesignerplugin"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ kcompletion kconfig kconfigwidgets kcoreaddons kiconthemes kio kitemviews kplotting ktextwidgets kwidgetsaddons kxmlgui sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kgendesignerplugin" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix index 0ed249da9a4..99fc4c7d023 100644 --- a/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix +++ b/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix @@ -1,5 +1,5 @@ { kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 -, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages +, docbook5_xsl, karchive, ki18n, perl, perlPackages }: kdeFramework { @@ -7,7 +7,7 @@ kdeFramework { meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ karchive ki18n ]; - propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; + propagatedNativeBuildInputs = [ perl perlPackages.URI ]; cmakeFlags = [ "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" diff --git a/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix index 79db990f191..4743d0b8f1b 100644 --- a/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix +++ b/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix @@ -5,18 +5,14 @@ , kcrash , kdbusaddons , kwindowsystem -, makeQtWrapper , qtx11extras }: kdeFramework { name = "kglobalaccel"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kglobalaccel5" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix index 825b15c8177..6102bb0d4b5 100644 --- a/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix +++ b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix @@ -1,5 +1,5 @@ { kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper +, extra-cmake-modules , karchive, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg }: @@ -7,9 +7,6 @@ kdeFramework { name = "kiconthemes"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ breeze-icons kconfigwidgets karchive ki18n kitemviews qtsvg ]; - postInstall = '' - wrapQtProgram "$out/bin/kiconfinder5" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kio/default.nix b/pkgs/desktops/kde-5/frameworks/kio/default.nix index 7e4317a3f09..cb67c845903 100644 --- a/pkgs/desktops/kde-5/frameworks/kio/default.nix +++ b/pkgs/desktops/kde-5/frameworks/kio/default.nix @@ -3,14 +3,14 @@ , kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews , kjobwidgets, knotifications, kservice, ktextwidgets, kwallet -, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper +, kwidgetsaddons, kwindowsystem, kxmlgui , qtscript, qtx11extras, solid }: kdeFramework { name = "kio"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ acl karchive kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons kdbusaddons ki18n kiconthemes kitemviews kjobwidgets knotifications kservice @@ -18,10 +18,4 @@ kdeFramework { qtx11extras ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - postInstall = '' - wrapQtProgram "$out/bin/kcookiejar5" - wrapQtProgram "$out/bin/ktelnetservice5" - wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/protocoltojson" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kjs.nix b/pkgs/desktops/kde-5/frameworks/kjs.nix index 1a8750ea74f..abdc15ce8df 100644 --- a/pkgs/desktops/kde-5/frameworks/kjs.nix +++ b/pkgs/desktops/kde-5/frameworks/kjs.nix @@ -1,14 +1,10 @@ { kdeFramework, lib , extra-cmake-modules , kdoctools -, makeQtWrapper }: kdeFramework { name = "kjs"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kjs5" - ''; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; } diff --git a/pkgs/desktops/kde-5/frameworks/kjsembed.nix b/pkgs/desktops/kde-5/frameworks/kjsembed.nix index 7611b831007..95bc02422f1 100644 --- a/pkgs/desktops/kde-5/frameworks/kjsembed.nix +++ b/pkgs/desktops/kde-5/frameworks/kjsembed.nix @@ -1,14 +1,10 @@ { kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs -, makeQtWrapper, qtsvg +, qtsvg }: kdeFramework { name = "kjsembed"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ ki18n kjs qtsvg ]; - postInstall = '' - wrapQtProgram "$out/bin/kjscmd5" - wrapQtProgram "$out/bin/kjsconsole" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks/kpackage/default.nix index 874bb380d73..a39a672574b 100644 --- a/pkgs/desktops/kde-5/frameworks/kpackage/default.nix +++ b/pkgs/desktops/kde-5/frameworks/kpackage/default.nix @@ -5,16 +5,12 @@ , kcoreaddons , kdoctools , ki18n -, makeQtWrapper }: kdeFramework { name = "kpackage"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - postInstall = '' - wrapQtProgram "$out/bin/kpackagetool5" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix index e1a5e8b2339..a35af2e7fbf 100644 --- a/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix +++ b/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix @@ -1,5 +1,5 @@ { kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper, perl +, extra-cmake-modules, perl , karchive, kconfig, kguiaddons, kiconthemes, kparts , libgit2 , qtscript, qtxmlpatterns @@ -9,7 +9,7 @@ kdeFramework { name = "ktexteditor"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ]; + nativeBuildInputs = [ extra-cmake-modules perl ]; propagatedBuildInputs = [ karchive kconfig kguiaddons ki18n kiconthemes kio kparts libgit2 qtscript qtxmlpatterns sonnet diff --git a/pkgs/desktops/kde-5/frameworks/kwallet.nix b/pkgs/desktops/kde-5/frameworks/kwallet.nix index 3bb99df39a7..f02c6138df7 100644 --- a/pkgs/desktops/kde-5/frameworks/kwallet.nix +++ b/pkgs/desktops/kde-5/frameworks/kwallet.nix @@ -1,18 +1,14 @@ { kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets , kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes , knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt -, makeQtWrapper }: +}: kdeFramework { name = "kwallet"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ kconfig kconfigwidgets kcoreaddons kdbusaddons ki18n kiconthemes knotifications kservice kwidgetsaddons kwindowsystem libgcrypt ]; - postInstall = '' - wrapQtProgram "$out/bin/kwalletd5" - wrapQtProgram "$out/bin/kwallet-query" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks/plasma-framework.nix index 2a8762c814f..a4138148653 100644 --- a/pkgs/desktops/kde-5/frameworks/plasma-framework.nix +++ b/pkgs/desktops/kde-5/frameworks/plasma-framework.nix @@ -2,19 +2,16 @@ , kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative , kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio , knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras +, qtscript, qtx11extras }: kdeFramework { name = "plasma-framework"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications kpackage kservice kwindowsystem kxmlgui qtscript qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; } diff --git a/pkgs/desktops/kde-5/frameworks/solid.nix b/pkgs/desktops/kde-5/frameworks/solid.nix index f1db5c35c10..c4f580fe1c2 100644 --- a/pkgs/desktops/kde-5/frameworks/solid.nix +++ b/pkgs/desktops/kde-5/frameworks/solid.nix @@ -1,15 +1,11 @@ { kdeFramework, lib , extra-cmake-modules -, makeQtWrapper , qtdeclarative }: kdeFramework { name = "solid"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/solid-hardware5" - ''; } diff --git a/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix index bb65e1af937..190003ca5c7 100644 --- a/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix +++ b/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix @@ -1,19 +1,21 @@ -{ plasmaPackage, lib, copyPathsToStore -, extra-cmake-modules, kdoctools -, baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative -, kdelibs4support, kdesu, kglobalaccel, kidletime, kjsembed, knewstuff -, knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland -, kwin, kxmlrpcclient, libkscreen, libksysguard, networkmanager-qt, phonon -, plasma-framework, qtquickcontrols, qtscript, qtx11extras, solid -, isocodes, libdbusmenu, libSM, libXcursor, pam, wayland +{ + plasmaPackage, lib, copyPathsToStore, + + extra-cmake-modules, kdoctools, + + baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative, + kdelibs4support, kdesu, kglobalaccel, kidletime, kjsembed, knewstuff, + knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland, + kwin, kxmlrpcclient, libkscreen, libksysguard, networkmanager-qt, phonon, + plasma-framework, qtquickcontrols, qtscript, qtx11extras, solid, isocodes, + libdbusmenu, libSM, libXcursor, pam, wayland }: plasmaPackage { name = "plasma-workspace"; nativeBuildInputs = [ - extra-cmake-modules - kdoctools + extra-cmake-modules kdoctools ]; buildInputs = [ baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative @@ -37,21 +39,4 @@ 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 - ''; } From d3747a2261515c1463517cd5963e7ab73fbd7fbf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 12:10:54 -0500 Subject: [PATCH 287/508] kinit: use a setuid wrapper for start_kdeinit --- .../modules/services/x11/desktop-managers/kde5.nix | 8 ++------ pkgs/desktops/kde-5/frameworks/kinit/default.nix | 10 ++++++---- .../kde-5/frameworks/kinit/kinit-libpath.patch | 8 ++++---- pkgs/desktops/kde-5/frameworks/kinit/series | 1 + .../kde-5/frameworks/kinit/start_kdeinit-path.patch | 13 +++++++++++++ 5 files changed, 26 insertions(+), 14 deletions(-) create mode 100644 pkgs/desktops/kde-5/frameworks/kinit/start_kdeinit-path.patch diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index f94e1b6559a..9b07dfed3bd 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -54,16 +54,12 @@ in owner = "root"; setuid = true; } - # ttuegel: Disabled until I can figure out how to propagate the - # necessary environment variables. - /* { - program = "start_kdeinit_wrapper"; - source = "${kde5.kinit.out}/lib/libexec/kf5/start_kdeinit_wrapper"; + program = "start_kdeinit"; + source = "${kde5.kinit.out}/lib/libexec/kf5/start_kdeinit"; owner = "root"; setuid = true; } - */ ]; environment.systemPackages = diff --git a/pkgs/desktops/kde-5/frameworks/kinit/default.nix b/pkgs/desktops/kde-5/frameworks/kinit/default.nix index 08901010de8..b965f761e92 100644 --- a/pkgs/desktops/kde-5/frameworks/kinit/default.nix +++ b/pkgs/desktops/kde-5/frameworks/kinit/default.nix @@ -1,13 +1,15 @@ -{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kconfig, kcrash -, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap +{ + kdeFramework, lib, copyPathsToStore, + extra-cmake-modules, kdoctools, + kconfig, kcrash, ki18n, kio, kservice, kwindowsystem }: kdeFramework { name = "kinit"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap.out ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; propagatedBuildInputs = [ - kconfig kcrash ki18n kio kservice kwindowsystem libcap + kconfig kcrash ki18n kio kservice kwindowsystem ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); } diff --git a/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch index 47538fbe456..a5c76fca248 100644 --- a/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch +++ b/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch @@ -1,8 +1,8 @@ -Index: kinit-5.21.0/src/kdeinit/kinit.cpp +Index: kinit-5.24.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 +--- kinit-5.24.0.orig/src/kdeinit/kinit.cpp ++++ kinit-5.24.0/src/kdeinit/kinit.cpp +@@ -672,19 +672,16 @@ static pid_t launch(int argc, const char if (!libpath.isEmpty()) { if (libpath_relative) { diff --git a/pkgs/desktops/kde-5/frameworks/kinit/series b/pkgs/desktops/kde-5/frameworks/kinit/series index 5faa456366b..576b8a935bf 100644 --- a/pkgs/desktops/kde-5/frameworks/kinit/series +++ b/pkgs/desktops/kde-5/frameworks/kinit/series @@ -1 +1,2 @@ kinit-libpath.patch +start_kdeinit-path.patch diff --git a/pkgs/desktops/kde-5/frameworks/kinit/start_kdeinit-path.patch b/pkgs/desktops/kde-5/frameworks/kinit/start_kdeinit-path.patch new file mode 100644 index 00000000000..fbecf9433f6 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks/kinit/start_kdeinit-path.patch @@ -0,0 +1,13 @@ +Index: kinit-5.24.0/src/start_kdeinit/start_kdeinit_wrapper.c +=================================================================== +--- kinit-5.24.0.orig/src/start_kdeinit/start_kdeinit_wrapper.c ++++ kinit-5.24.0/src/start_kdeinit/start_kdeinit_wrapper.c +@@ -23,7 +23,7 @@ + #include + #include + +-#define EXECUTE CMAKE_INSTALL_FULL_LIBEXECDIR_KF5 "/start_kdeinit" ++#define EXECUTE "/var/setuid-wrappers/start_kdeinit" + + #if KDEINIT_OOM_PROTECT + From 32c1f05aedb978e6b9ea643e8a41f5776414272f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 17:59:17 -0500 Subject: [PATCH 288/508] nixos/kde5: install missing frameworks --- .../services/x11/desktop-managers/kde5.nix | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 9b07dfed3bd..d8697238ee5 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -65,7 +65,45 @@ in environment.systemPackages = [ kde5.frameworkintegration + kde5.kactivities + kde5.kauth + kde5.kcmutils + kde5.kconfig + kde5.kconfigwidgets + kde5.kcoreaddons + kde5.kdbusaddons + kde5.kdeclarative + kde5.kded + kde5.kdesu + kde5.kdnssd + kde5.kemoticons + kde5.kfilemetadata + kde5.kglobalaccel + kde5.kguiaddons + kde5.kiconthemes + kde5.kidletime + kde5.kimageformats kde5.kinit + kde5.kio + kde5.kjobwidgets + kde5.knewstuff + kde5.knotifications + kde5.knotifyconfig + kde5.kpackage + kde5.kparts + kde5.kpeople + kde5.krunner + kde5.kservice + kde5.ktextwidgets + kde5.kwallet + kde5.kwayland + kde5.kwidgetsaddons + kde5.kxmlgui + kde5.kxmlrpcclient + kde5.plasma-framework + kde5.solid + kde5.sonnet + kde5.threadweaver kde5.breeze kde5.kde-cli-tools From 475ad4c7c3e458480bf4fa562eb4b3add5b710d7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 18:25:15 -0500 Subject: [PATCH 289/508] kde5.startkde: update script based on plasma-workspace-5.7.1 --- .../kde-5/plasma/startkde/startkde.sh | 30 +++++++++---------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh index a626fdc2b5a..18cf08081c4 100755 --- a/pkgs/desktops/kde-5/plasma/startkde/startkde.sh +++ b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh @@ -77,7 +77,7 @@ kcminputrc Mouse cursorTheme 'breeze_cursors' kcminputrc Mouse cursorSize '' ksplashrc KSplash Theme Breeze ksplashrc KSplash Engine KSplashQML -kdeglobals KScreen ScaleFactor 1 +kdeglobals KScreen ScreenScaleFactors '' kcmfonts General forceFontDPI 0 EOF @@ -157,20 +157,6 @@ xsetroot -cursor_name left_ptr dl=$DESKTOP_LOCKED unset DESKTOP_LOCKED # Don't want it in the environment -# Make sure that D-Bus is running -# D-Bus autolaunch is broken -if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then - eval $(dbus-launch --sh-syntax --exit-with-session) -fi -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 - ksplash_pid= if test -z "$dl"; then # the splashscreen and progress indicator @@ -209,6 +195,16 @@ done echo 'startkde: Starting up...' 1>&2 +# 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 @@ -255,7 +251,7 @@ if test -n "$PAM_KWALLET5_LOGIN" ; then fi # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -ksyncdbusenv +dbus-update-activation-environment --systemd --all if test $? -ne 0; then # Startup error echo 'startkde: Could not sync environment to dbus.' 1>&2 @@ -275,6 +271,8 @@ if test $? -ne 0; then exit 1 fi +qdbus org.kde.KSplash /KSplash org.kde.KSplash.setStage kinit + # (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! From b2cf5aabb0df860e5eff4e9692e2239b9c94b2cf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 15 Jul 2016 18:27:00 -0500 Subject: [PATCH 290/508] nixos/kde5: add missing Plasma packages --- nixos/modules/services/x11/desktop-managers/kde5.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index d8697238ee5..9f9bbe24623 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -106,7 +106,9 @@ in kde5.threadweaver kde5.breeze + kde5.kactivitymanagerd kde5.kde-cli-tools + kde5.kdecoration kde5.kdeplasma-addons kde5.kgamma5 kde5.khelpcenter @@ -114,12 +116,16 @@ in kde5.kinfocenter kde5.kmenuedit kde5.kscreen + kde5.kscreenlocker kde5.ksysguard kde5.kwayland kde5.kwin kde5.kwrited + kde5.libkscreen + kde5.libksysguard kde5.milou kde5.oxygen + kde5.plasma-integration kde5.polkit-kde-agent kde5.systemsettings From 78e7f444886379607b29cf27ae6ac7bd84ed6d20 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 16 Jul 2016 08:59:43 -0500 Subject: [PATCH 291/508] qt5.makeQtWrapper: do not inherit Qt search paths --- .../extra-cmake-modules/setup-hook.sh | 27 ++++++++----- .../libraries/qt-5/5.5/make-qt-wrapper.sh | 39 +------------------ .../libraries/qt-5/5.6/make-qt-wrapper.sh | 26 ++++++------- 3 files changed, 31 insertions(+), 61 deletions(-) mode change 100644 => 120000 pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh diff --git a/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh index aab0625bf61..6c8199f17d4 100644 --- a/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh @@ -1,22 +1,31 @@ _ecmSetXdgDirs() { addToSearchPathOnce XDG_DATA_DIRS "$1/share" addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg" - addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" + addToSearchPathOnce RUNTIME_XDG_CONFIG_DIRS "$1/etc/xdg" } _ecmSharePaths=( \ + "appdata" \ + "applications" \ "config.cfg" \ + "dbus-1" \ + "desktop-directories" \ + "doc" \ + "icons" \ + "info" \ "kconf_update" \ "kservices5" \ "kservicetypes5" \ "knotifications5" \ - "applications" \ - "desktop-directories" \ + "kxmlgui5" \ + "locale" \ + "man" \ "mime" \ - "dbus-1" \ - "interfaces" \ - "services" \ - "system-services" ) + "polkit-1" \ + "sounds" \ + "templates" \ + "wallpapers" \ + ) _ecmPropagateNative() { for dir in ${_ecmSharePaths[@]}; do @@ -24,7 +33,7 @@ _ecmPropagateNative() { propagateOnce propagatedNativeBuildInputs "$1" if [ -z "$crossConfig" ]; then propagateOnce propagatedUserEnvPkgs "$1" - addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + addToSearchPathOnce RUNTIME_XDG_DATA_DIRS "$1/share" fi break fi @@ -38,7 +47,7 @@ _ecmPropagate() { if [ -d "$1/share/$dir" ]; then propagateOnce propagatedBuildInputs "$1" propagateOnce propagatedUserEnvPkgs "$1" - addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + addToSearchPathOnce RUNTIME_XDG_DATA_DIRS "$1/share" break fi done diff --git a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh deleted file mode 100644 index 3b537430371..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh +++ /dev/null @@ -1,38 +0,0 @@ -wrapQtProgram() { - local prog="$1" - shift - wrapProgram "$prog" \ - --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ - --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ - --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ - "$@" -} - -makeQtWrapper() { - local old="$1" - local new="$2" - shift - shift - makeWrapper "$old" "$new" \ - --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ - --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ - --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ - "$@" -} - -_makeQtWrapperSetup() { - # cannot use addToSearchPath because these directories may not exist yet - export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}${!outputLib}/lib/qt5/plugins" - export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}${!outputLib}/lib/qt5/imports" - export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}${!outputLib}/lib/qt5/qml" - export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" - export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputLib}/share" - export NIX_WRAP_XDG_CONFIG_DIRS="$NIX_WRAP_XDG_CONFIG_DIRS${NIX_WRAP_XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" - export NIX_WRAP_XDG_DATA_DIRS="$NIX_WRAP_XDG_DATA_DIRS${NIX_WRAP_XDG_DATA_DIRS:+:}${!outputLib}/share" -} - -prePhases+=(_makeQtWrapperSetup) diff --git a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh new file mode 120000 index 00000000000..90d9b349fed --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh @@ -0,0 +1 @@ +../5.6/make-qt-wrapper.sh \ No newline at end of file diff --git a/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh index 3b537430371..b0d0bec9e3f 100644 --- a/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh +++ b/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh @@ -2,11 +2,11 @@ wrapQtProgram() { local prog="$1" shift wrapProgram "$prog" \ - --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ - --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ - --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ + --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \ + --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \ + --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \ + --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \ + --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \ "$@" } @@ -16,11 +16,11 @@ makeQtWrapper() { shift shift makeWrapper "$old" "$new" \ - --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ - --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ - --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ + --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \ + --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \ + --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \ + --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \ + --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \ "$@" } @@ -29,10 +29,8 @@ _makeQtWrapperSetup() { export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}${!outputLib}/lib/qt5/plugins" export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}${!outputLib}/lib/qt5/imports" export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}${!outputLib}/lib/qt5/qml" - export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" - export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputLib}/share" - export NIX_WRAP_XDG_CONFIG_DIRS="$NIX_WRAP_XDG_CONFIG_DIRS${NIX_WRAP_XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" - export NIX_WRAP_XDG_DATA_DIRS="$NIX_WRAP_XDG_DATA_DIRS${NIX_WRAP_XDG_DATA_DIRS:+:}${!outputLib}/share" + export RUNTIME_XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputBin}/share" + export RUNTIME_XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputBin}/etc/xdg" } prePhases+=(_makeQtWrapperSetup) From 560c4a59275c237b64158bff7f6cfa66883204d3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 16 Jul 2016 10:01:38 -0500 Subject: [PATCH 292/508] kde5.kservice: remove unused setup hook --- .../kde-5/frameworks/kservice/setup-hook.sh | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh deleted file mode 100644 index c28e862ff8a..00000000000 --- a/pkgs/desktops/kde-5/frameworks/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 From 5d8005b1ef65129d5e4b571ac372f4d9ada1b4e9 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sat, 16 Jul 2016 23:39:03 +0800 Subject: [PATCH 293/508] qt3: fix build after multiple-outputs change also updated source tarball path --- pkgs/development/libraries/qt-3/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/qt-3/default.nix b/pkgs/development/libraries/qt-3/default.nix index 40fa63d75ca..3b6d2a3cc69 100644 --- a/pkgs/development/libraries/qt-3/default.nix +++ b/pkgs/development/libraries/qt-3/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { setupHook = ./setup-hook.sh; src = fetchurl { - url = ftp://ftp.trolltech.com/qt/source/qt-x11-free-3.3.8.tar.bz2; + url = http://download.qt.io/archive/qt/3/qt-x11-free-3.3.8.tar.bz2; sha256 = "0jd4g3bwkgk2s4flbmgisyihm7cam964gzb3pawjlkhas01zghz8"; }; @@ -39,14 +39,14 @@ stdenv.mkDerivation { -I${xextproto}/include ${if openglSupport then "-dlopen-opengl -L${mesa}/lib -I${mesa}/include - -L${libXmu}/lib -I${libXmu}/include" else ""} + -L${libXmu.out}/lib -I${libXmu.dev}/include" else ""} ${if threadSupport then "-thread" else "-no-thread"} - ${if xrenderSupport then "-xrender -L${libXrender}/lib -I${libXrender}/include" else "-no-xrender"} + ${if xrenderSupport then "-xrender -L${libXrender.out}/lib -I${libXrender.dev}/include" else "-no-xrender"} ${if xrandrSupport then "-xrandr - -L${libXrandr}/lib -I${libXrandr}/include + -L${libXrandr.out}/lib -I${libXrandr.dev}/include -I${randrproto}/include" else "-no-xrandr"} - ${if xineramaSupport then "-xinerama -L${libXinerama}/lib -I${libXinerama}/include" else "-no-xinerama"} - ${if cursorSupport then "-L${libXcursor}/lib -I${libXcursor}/include" else ""} + ${if xineramaSupport then "-xinerama -L${libXinerama.out}/lib -I${libXinerama.dev}/include" else "-no-xinerama"} + ${if cursorSupport then "-L${libXcursor.out}/lib -I${libXcursor.dev}/include" else ""} ${if mysqlSupport then "-qt-sql-mysql -L${mysql.lib}/lib/mysql -I${mysql.lib}/include/mysql" else ""} ${if xftSupport then "-xft -L${libXft.out}/lib -I${libXft.dev}/include From 3634e8ac3eb176a3636dd56f0901115ad658858a Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 16 Jul 2016 20:08:06 +0200 Subject: [PATCH 294/508] vimPlugins: update existing plugins and added 3 more - github:sbdchd/neoformat - github:elmcast/elm-vim - github:sheerun/vim-polyglot --- pkgs/misc/vim-plugins/default.nix | 129 ++++++++++++++++--------- pkgs/misc/vim-plugins/vim-plugin-names | 3 + 2 files changed, 84 insertions(+), 48 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 3134aa0eeba..6c20cd66df1 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -173,11 +173,11 @@ rec { }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2016-07-08"; + name = "Syntastic-2016-07-16"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "87f3e80b443870ce821f82dd1b3dba5bd66b51b2"; - sha256 = "09prhzp58470naj8ws2m1pjgj1h675jsiyc6vmfdjsqk6ly2ypg0"; + rev = "8ab7705b21cbe5f1c70750dee89bf8b711890a82"; + sha256 = "1gk12lzyqgjh4qzq46m3i70h4xzf9whgdahigf6nr0yqxd6w90rw"; }; dependencies = []; @@ -206,11 +206,11 @@ rec { }; The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "The_NERD_Commenter-2016-06-10"; + name = "The_NERD_Commenter-2016-07-14"; src = fetchgit { url = "git://github.com/scrooloose/nerdcommenter"; - rev = "e2d47bec2662d5fcd324d17e22dc37f38c97bf2d"; - sha256 = "099i7jksdp4c4m7imv96xji4lbjscdns37fsr2qgn7zw5pjgjbw4"; + rev = "c3d6a2069bb0286c9633fbbffb4983797f7b8822"; + sha256 = "0xwnx8ggqpik9jnyb4a69v7z789ffrfnxc3frl644x7bhndgaa1v"; }; dependencies = []; @@ -365,11 +365,11 @@ rec { }; deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "deoplete-nvim-2016-07-10"; + name = "deoplete-nvim-2016-07-14"; src = fetchgit { url = "git://github.com/Shougo/deoplete.nvim"; - rev = "8102bbb73f942b232b6bcc00b8699fbe3b3f370c"; - sha256 = "083056maiscxyyln09659qv3c7kayps2vm697p459yyhfyir742f"; + rev = "e3cb71b4053041dffb250733bd9531814bfa4af9"; + sha256 = "1wz3q1020f8vb7s9nncdgji045iz2nlqp59j06gbli9cjvgfhg60"; }; dependencies = []; @@ -398,22 +398,22 @@ rec { }; vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-css-color-2016-06-12"; + name = "vim-css-color-2016-07-14"; src = fetchgit { url = "git://github.com/ap/vim-css-color"; - rev = "ba98bd138ee15dbf6b6dc3b7080c0e65e0657c76"; - sha256 = "0l76yqd3cvdm41dx720skbphwqsza51xaf7vi8jlknsqnrb6z1kf"; + rev = "86dff1b9c2a549994042c4548a47514350c25b6d"; + sha256 = "1wzkcprn6sky03v6yg0dkijmdva3jszrpwzbld1744m8ylbdgf0i"; }; dependencies = []; }; neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neomake-2016-07-11"; + name = "neomake-2016-07-16"; src = fetchgit { url = "git://github.com/benekastah/neomake"; - rev = "14e894edc35d17b927e5540ceb6d101bbda9f51c"; - sha256 = "1ccgfvvxsl213zlgf801yxwg51kpi5z37z175w4gh9cj8953mgxh"; + rev = "5560a4dd58a47a0af2ae128d707e822b54c55c72"; + sha256 = "01l7ws2m3pm90q5985rrpc7rqcgv93ypg3swy1n1sfn0m0vm1a4l"; }; dependencies = []; @@ -485,6 +485,17 @@ rec { }; + elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "elm-vim-2016-06-22"; + src = fetchgit { + url = "git://github.com/elmcast/elm-vim"; + rev = "6527c8a9e1d1af31c81e60b6b40bf3316c7fbdf2"; + sha256 = "0aj1cd5dy7z48lf6vzg76r787hgs4z5f11bczvvs1h99qik1rgbc"; + }; + dependencies = []; + + }; + vim-localvimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-localvimrc-2016-06-06"; src = fetchgit { @@ -519,11 +530,11 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2016-07-07"; + name = "vim-go-2016-07-14"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "ab01e7e5a6bf858c1f519a831a4db1d978b92298"; - sha256 = "1g76hasdyncjds6yl38dkb5nwp6sb8aqzp9d7xxhwarlnnihj1la"; + rev = "789de8e4e8c505c3058f407750165f0148ea1d02"; + sha256 = "0hnq3abl6qvwk9rynk8pmi8slfikdaxf5irrx0xvddp38giydws1"; }; dependencies = []; @@ -585,11 +596,11 @@ rec { }; idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "idris-vim-2016-01-29"; + name = "idris-vim-2016-07-15"; src = fetchgit { url = "git://github.com/idris-hackers/idris-vim"; - rev = "e1711749f5078f5a9fa53cd15a37627ea9d239f2"; - sha256 = "0mbywk1mwbx3hjzrv7ypp5m800xjj08hxlfmd0piljg41xwkgk5q"; + rev = "aeca73e9432c21da6eb35fceaef957f191b3d56a"; + sha256 = "1q38sf4dabirhrr3i89p271ixap90im0x3pf39s3fc9jmb3m2jm8"; }; dependencies = []; @@ -651,11 +662,11 @@ rec { }; vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-orgmode-2016-07-08"; + name = "vim-orgmode-2016-07-12"; src = fetchgit { url = "git://github.com/jceb/vim-orgmode"; - rev = "54057d58888ad29672cd0cd782be5fc8b1a3a709"; - sha256 = "134dsnfpkzq9gd3d8b9pvy7c5yvy9yxjyvidg927ha1lpilf4kp9"; + rev = "e76c0f07e9193e08df2b8eeb95ef6240b494797f"; + sha256 = "00ys1qf8hbigrdxshs5xvg662xcd6qaiw2g1nr21pfs682qdjsyf"; }; dependencies = []; @@ -794,11 +805,11 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2016-07-10"; + name = "vimtex-2016-07-16"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "c16bd147092bfe7ac63f39cd449f36e14e42e948"; - sha256 = "18p7vmas0754r9n227v68wry285vr4y90v3kxcnn9hl60xxb3ba9"; + rev = "8dd4ed77dbd547a819b1220aa2e298e0ae6e5643"; + sha256 = "0n5zbhgf0ks0b166p94m7i3cfkh6v2zc6srci0rp45byi4mwpddz"; }; dependencies = []; @@ -908,11 +919,11 @@ rec { }; vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-racer-2016-06-27"; + name = "vim-racer-2016-07-14"; src = fetchgit { url = "git://github.com/racer-rust/vim-racer"; - rev = "a72b26bb25cb65be29fd1912e9344eaa860fce5e"; - sha256 = "01xg6mmnlx5l37rsb7w0dbgy36pd6zyq7gcigdbj0pgqd39w30fv"; + rev = "ea2a41ddc3e1e504a542f6add0f6f2c10d97a099"; + sha256 = "1vwxs9mqcvp3haqyx0si5hiw61vg2s2hm1alipb5s69sb38f047s"; }; dependencies = []; @@ -930,11 +941,33 @@ rec { }; rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "rust-vim-2016-06-21"; + name = "rust-vim-2016-07-16"; src = fetchgit { url = "git://github.com/rust-lang/rust.vim"; - rev = "5dd7ab99103c05a56e059b39ad9f63274d2ae72e"; - sha256 = "0az35kfcpavz6sbh6mf0mmv7mp5zbnqmnljpmlm1srn6rr9rah2q"; + rev = "a4d6fb2ab526ccc93a6a321a2425a234f9f7665f"; + sha256 = "1i2sf5p4d9gfr3hk6nrjar0rz85dmhwgf82d5yfqqmlgil0bljds"; + }; + dependencies = []; + + }; + + neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "neoformat-2016-05-25"; + src = fetchgit { + url = "git://github.com/sbdchd/neoformat"; + rev = "d74e8d5b338219fe2ab6e8b5bfdaaf653101ed21"; + sha256 = "0yiq519x99vhl217504pv57lpfwz916r1fq0m3mr33pv0g1kx6c5"; + }; + dependencies = []; + + }; + + vim-polyglot = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-polyglot-2016-07-05"; + src = fetchgit { + url = "git://github.com/sheerun/vim-polyglot"; + rev = "1422f7a75ce0b382d601238c5979b04473b9021e"; + sha256 = "0jqb75lrf75br9wg95cxcy3aal1bk929881gy4ly1n0r6fv96yz1"; }; dependencies = []; @@ -952,11 +985,11 @@ rec { }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2016-06-26"; + name = "neosnippet-snippets-2016-07-14"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "17219351bcbec3708295c72c8280471eed12b8fe"; - sha256 = "08lrqsl9cqkx42llgv0mc54nsmdrv68bpzip2snr58klaj444nir"; + rev = "4d25b4352738ecf34e56701d0172d80daa3bd287"; + sha256 = "01lai1gvf30iagh9f7av69ywfzw43vy2igwil882rgnri84y4zjb"; }; dependencies = []; @@ -1113,11 +1146,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-07-11"; + name = "youcompleteme-2016-07-12"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "c44489af16de6ae86294de7dd194bd6e53adaf1e"; - sha256 = "1m8m6wyics1mlxcxzq83ql8l4vd16cfbhc418vmxflx3178ifr36"; + rev = "d5610e577c0f1f0bb8bb22d8bbbd25be11327391"; + sha256 = "1c2001ywj0zczhpzm5iahyb6rg7yjbgljqpnwfr9f7fa3y363cgk"; }; dependencies = []; buildInputs = [ @@ -1302,11 +1335,11 @@ rec { }; deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "deoplete-jedi-2016-07-10"; + name = "deoplete-jedi-2016-07-12"; src = fetchgit { url = "git://github.com/zchee/deoplete-jedi"; - rev = "e7f0a94ea64b86d2b4946d30b6cedb38133d6603"; - sha256 = "05j1lfqxagndglyh337b6v2l4zmpa9fwrkgr0g4kk1s6f0lmla2b"; + rev = "3eee7e801723d9c174d801b94b2c2ddcee43ac56"; + sha256 = "0z8766wgam2s2vwp9a3xi9cl5c3sb99iadinzy7c348wx004nkxq"; }; dependencies = []; @@ -1499,11 +1532,11 @@ rec { }; vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-async-2016-06-15"; + name = "vim-addon-async-2016-07-12"; src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-async"; - rev = "4fcdf0c8a0da8b9dc2d5ad25e2cf7692cfbc10f3"; - sha256 = "1qa8ivh93ln30jbdwm9xg50yinvysvhricrkfjgg4v5nvk5sxj5n"; + rev = "b14414215b394a0ef887ea301085ae4b80012e38"; + sha256 = "1gr0rjn1vwqv4p51yb0s65gnpy1r0533lfy5nqbg20j4687yxls5"; }; dependencies = ["vim-addon-signs"]; @@ -1741,11 +1774,11 @@ rec { }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2016-06-27"; + name = "vim-gitgutter-2016-07-12"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "b5f23e986747a6f4b1dc1196d2a5bd3dc7c8c2b6"; - sha256 = "0z3f4yamkv3fmqnrr00j86xwrrfv199fiabpjqnk583b5kcbn90j"; + rev = "26c6b549f287b8ae348eda083e7c77f79f4de28b"; + sha256 = "1jrz0vqd580y7psszq31jk4v4jdh2cvqvxgcy347simpc5ap16hs"; }; dependencies = []; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index b2a2a542bf5..bc040271cd9 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -21,6 +21,7 @@ "ghcmod" "github:Chiel92/vim-autoformat" "github:LnL7/vim-nix" +"github:sbdchd/neoformat" "github:Shougo/deoplete.nvim" "github:ajh17/Spacegray.vim" "github:alvan/vim-closetag" @@ -32,6 +33,7 @@ "github:ctrlpvim/ctrlp.vim" "github:digitaltoad/vim-jade" "github:eagletmt/neco-ghc" +"github:elmcast/elm-vim" "github:embear/vim-localvimrc" "github:enomsg/vim-haskellConcealPlus" "github:esneider/YUNOcommit.vim" @@ -73,6 +75,7 @@ "github:racer-rust/vim-racer" "github:raichoo/purescript-vim" "github:rust-lang/rust.vim" +"github:sheerun/vim-polyglot" "github:shougo/neocomplete.vim" "github:shougo/neosnippet-snippets" "github:shougo/neosnippet.vim" From 343415e02e990f4c5acfe81d9d84c960ee124a52 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 16 Jul 2016 15:01:35 -0500 Subject: [PATCH 295/508] qt55.qtbase: fix setup hook and QMake hook --- .../libraries/qt-5/5.5/make-qt-wrapper.sh | 37 +++++- .../libraries/qt-5/5.5/qmake-hook.sh | 106 +++--------------- .../libraries/qt-5/5.5/qtbase/default.nix | 1 + 3 files changed, 51 insertions(+), 93 deletions(-) mode change 120000 => 100644 pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh diff --git a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh deleted file mode 120000 index 90d9b349fed..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh +++ /dev/null @@ -1 +0,0 @@ -../5.6/make-qt-wrapper.sh \ No newline at end of file diff --git a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh new file mode 100644 index 00000000000..b0d0bec9e3f --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh @@ -0,0 +1,36 @@ +wrapQtProgram() { + local prog="$1" + shift + wrapProgram "$prog" \ + --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \ + --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \ + --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \ + --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \ + --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \ + "$@" +} + +makeQtWrapper() { + local old="$1" + local new="$2" + shift + shift + makeWrapper "$old" "$new" \ + --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \ + --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \ + --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \ + --prefix XDG_DATA_DIRS : "$RUNTIME_XDG_DATA_DIRS" \ + --prefix XDG_CONFIG_DIRS : "$RUNTIME_XDG_CONFIG_DIRS" \ + "$@" +} + +_makeQtWrapperSetup() { + # cannot use addToSearchPath because these directories may not exist yet + export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}${!outputLib}/lib/qt5/plugins" + export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}${!outputLib}/lib/qt5/imports" + export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}${!outputLib}/lib/qt5/qml" + export RUNTIME_XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputBin}/share" + export RUNTIME_XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputBin}/etc/xdg" +} + +prePhases+=(_makeQtWrapperSetup) 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 5401a71bc4c..696b4ea8dad 100644 --- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh @@ -1,50 +1,16 @@ -if [[ -z "$QMAKE" ]]; then +qmakeConfigurePhase() { + runHook preConfigure -_qtLinkDependencyDir() { - @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" - if [ -n "$NIX_QT_SUBMODULE" ]; then - find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" - fi + qmake PREFIX=$out $qmakeFlags + + runHook postConfigure } -_qtLinkModule() { - if [ -d "$1/mkspecs" ]; then - # $1 is a Qt module - _qtLinkDependencyDir "$1" mkspecs +if [ -z "$dontUseQmakeConfigure" -a -z "$configurePhase" ]; then + configurePhase=qmakeConfigurePhase +fi - for dir in bin include lib share; do - if [ -d "$1/$dir" ]; then - _qtLinkDependencyDir "$1" "$dir" - fi - done - fi -} - -_qtRmModules() { - cat "$out/nix-support/qt-inputs" | while read file; do - if [ -h "$out/$file" ]; then - rm "$out/$file" - fi - done - - cat "$out/nix-support/qt-inputs" | while read file; do - if [ -d "$out/$file" ]; then - rmdir --ignore-fail-on-non-empty -p "$out/$file" - fi - done - - rm "$out/nix-support/qt-inputs" -} - -_qtRmQmake() { - rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" -} - -_qtSetQmakePath() { - export PATH="$qtOut/bin${PATH:+:}$PATH" -} - -_qtMultioutModuleDevs() { +_qtModuleMultioutDevsPre() { # We cannot simply set these paths in configureFlags because libQtCore retains # references to the paths it was built with. moveToOutput "bin" "${!outputDev}" @@ -53,12 +19,14 @@ _qtMultioutModuleDevs() { # The destination directory must exist or moveToOutput will do nothing mkdir -p "${!outputDev}/share" moveToOutput "share/doc" "${!outputDev}" +} +_qtModuleMultioutDevsPost() { # Move libtool archives and qmake project files to $dev/lib if [ "z${!outputLib}" != "z${!outputDev}" ]; then pushd "${!outputLib}" if [ -d "lib" ]; then - find lib \( -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 \) | \ + 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" @@ -68,53 +36,7 @@ _qtMultioutModuleDevs() { fi } -_qtRmQtOut() { - rm -fr "$qtOut" -} - -qmakeConfigurePhase() { - runHook preConfigure - - qmake PREFIX=$out $qmakeFlags - - runHook postConfigure -} - -qtOut="" -if [[ -z "$NIX_QT_SUBMODULE" ]]; then - qtOut=`mktemp -d` -else - qtOut=$out -fi - -mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" - -cp "@qt_dev@/bin/qmake" "$qtOut/bin" -cat >"$qtOut/bin/qt.conf" < Date: Sat, 16 Jul 2016 15:01:49 -0500 Subject: [PATCH 296/508] kde5.kate: require makeQtWrapper --- pkgs/desktops/kde-5/applications/kate.nix | 35 +++++------------------ 1 file changed, 7 insertions(+), 28 deletions(-) diff --git a/pkgs/desktops/kde-5/applications/kate.nix b/pkgs/desktops/kde-5/applications/kate.nix index e368483771f..94faa065592 100644 --- a/pkgs/desktops/kde-5/applications/kate.nix +++ b/pkgs/desktops/kde-5/applications/kate.nix @@ -1,29 +1,9 @@ -{ 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, lib, makeQtWrapper, extra-cmake-modules, kdoctools, + kactivities, kconfig, kcrash, kguiaddons, kiconthemes, ki18n, kinit, + kjobwidgets, kio, kparts, ktexteditor, kwindowsystem, kxmlgui, kdbusaddons, + kwallet, plasma-framework, kitemmodels, knotifications, qtscript, threadweaver, + knewstuff, libgit2 }: kdeApp { @@ -33,8 +13,7 @@ kdeApp { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ - extra-cmake-modules - kdoctools + extra-cmake-modules kdoctools makeQtWrapper ]; propagatedBuildInputs = [ kactivities ki18n kio ktexteditor kwindowsystem plasma-framework qtscript From b4bae44f13ba9598209ae9e6a0bb5d4194bf79aa Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 16 Jul 2016 22:42:16 +0200 Subject: [PATCH 297/508] pythonPackages.jupyterlab: init at 0.1.1 Note that this is still a pre-alpha release. --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 04dc7a26ac0..45aabf63691 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7056,6 +7056,27 @@ in modules // { }; }; + jupyterlab = buildPythonPackage rec { + name = "jupyterlab-${version}"; + version = "0.1.1"; + + src = pkgs.fetchurl { + url = "mirror://pypi/j/jupyterlab/${name}.tar.gz"; + sha256 = "c1a08f4d1b2bb1bf06db090db30df988a22ffbfa05606e7eb026e364969388da"; + }; + + propagatedBuildInputs = with self; [ notebook ]; + + # No tests in archive + doCheck = false; + + meta = { + description = "Jupyter lab environment notebook server extension."; + license = with licenses; [ bsd3 ]; + homepage = "http://jupyter.org/"; + }; + }; + lti = let self' = (self.override {self = self';}) // {pytest = self.pytest_27;}; mock_1_0_1 = self'.mock.overrideDerivation (_: rec { From b0cc1cd729ad22d6aeac00c0f2bd5209dd833cb4 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 16 Jul 2016 23:29:30 +0300 Subject: [PATCH 298/508] ncurses: Add explicit 'ncurses5' and 'ncurses6' attrs Also reinstate the gcc5 patch to make it build on Linux. --- .../development/libraries/ncurses/default.nix | 9 ++-- .../development/libraries/ncurses/gcc-5.patch | 46 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +- 3 files changed, 53 insertions(+), 6 deletions(-) create mode 100644 pkgs/development/libraries/ncurses/gcc-5.patch diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix index 7133634f2eb..c1037a81c85 100644 --- a/pkgs/development/libraries/ncurses/default.nix +++ b/pkgs/development/libraries/ncurses/default.nix @@ -1,15 +1,14 @@ { lib, stdenv, fetchurl, pkgconfig +, abiVersion , mouseSupport ? false , unicode ? true , gpm }: let - inherit (stdenv) isDarwin; - abiVersion = if isDarwin then "5" else "6"; - version = if isDarwin then "5.9" else "6.0"; - sha256 = if isDarwin + version = if abiVersion == "5" then "5.9" else "6.0"; + sha256 = if abiVersion == "5" then "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh" else "0q3jck7lna77z5r42f13c4xglc7azd19pxfrjrpgp2yf615w4lgm"; in @@ -21,7 +20,7 @@ stdenv.mkDerivation rec { inherit sha256; }; - patches = [ ./clang.patch ]; + patches = [ ./clang.patch ] ++ lib.optional (abiVersion == "5" && stdenv.cc.isGNU) ./gcc-5.patch; outputs = [ "dev" "out" "man" ]; setOutputFlags = false; # some aren't supported diff --git a/pkgs/development/libraries/ncurses/gcc-5.patch b/pkgs/development/libraries/ncurses/gcc-5.patch new file mode 100644 index 00000000000..2448229b88e --- /dev/null +++ b/pkgs/development/libraries/ncurses/gcc-5.patch @@ -0,0 +1,46 @@ +https://bugs.gentoo.org/545114 + +extracted from the upstream change (which had many unrelated commits in one) + +From 97bb4678dc03e753290b39bbff30ba2825df9517 Mon Sep 17 00:00:00 2001 +From: "Thomas E. Dickey" +Date: Sun, 7 Dec 2014 03:10:09 +0000 +Subject: [PATCH] ncurses 5.9 - patch 20141206 + ++ modify MKlib_gen.sh to work around change in development version of + gcc introduced here: + https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html + https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html + (reports by Marcus Shawcroft, Maohui Lei). + +diff --git a/ncurses/base/MKlib_gen.sh b/ncurses/base/MKlib_gen.sh +index d8cc3c9..b91398c 100755 +--- a/ncurses/base/MKlib_gen.sh ++++ b/ncurses/base/MKlib_gen.sh +@@ -474,11 +474,22 @@ sed -n -f $ED1 \ + -e 's/gen_$//' \ + -e 's/ / /g' >>$TMP + ++cat >$ED1 < $ED2 ++cat $ED2 >$TMP ++ + $preprocessor $TMP 2>/dev/null \ +-| sed \ +- -e 's/ / /g' \ +- -e 's/^ //' \ +- -e 's/_Bool/NCURSES_BOOL/g' \ ++| sed -f $ED1 \ + | $AWK -f $AW2 \ + | sed -f $ED3 \ + | sed \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 800e159558e..1363c9a25ae 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8714,7 +8714,9 @@ in notify-sharp = callPackage ../development/libraries/notify-sharp { }; - ncurses = callPackage ../development/libraries/ncurses { }; + ncurses5 = callPackage ../development/libraries/ncurses { abiVersion = "5"; }; + ncurses6 = callPackage ../development/libraries/ncurses { abiVersion = "6"; }; + ncurses = if stdenv.isDarwin then ncurses5 else ncurses6; neardal = callPackage ../development/libraries/neardal { }; From 8ee0e105c99a1086daa6d1f13ef0dce585a1fe4f Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 16 Jul 2016 23:41:28 +0300 Subject: [PATCH 299/508] ghc: Make various binary GHCs use ncurses5 Fixes #17008: GHC bootstrapping broken by ncurses update. --- pkgs/development/compilers/ghc/6.10.2-binary.nix | 4 ++-- pkgs/development/compilers/ghc/7.0.4-binary.nix | 4 ++-- pkgs/development/compilers/ghc/7.4.2-binary.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix index 81bdebdcbd4..2df019bd7f1 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, lib, fetchurl, perl, libedit, ncurses, gmp}: +{stdenv, lib, fetchurl, perl, libedit, ncurses5, gmp}: stdenv.mkDerivation rec { version = "6.10.2"; @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { (if stdenv.isLinux then '' find . -type f -perm -0100 \ -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${libedit}/lib:${ncurses.out}/lib:${gmp.out}/lib" {} \; + --set-rpath "${libedit}/lib:${ncurses5.out}/lib:${gmp.out}/lib" {} \; for prog in ld ar gcc strip ranlib; do find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \; done diff --git a/pkgs/development/compilers/ghc/7.0.4-binary.nix b/pkgs/development/compilers/ghc/7.0.4-binary.nix index f0f54252b3f..9b9da4d4f78 100644 --- a/pkgs/development/compilers/ghc/7.0.4-binary.nix +++ b/pkgs/development/compilers/ghc/7.0.4-binary.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, perl, ncurses, gmp, libiconv}: +{stdenv, fetchurl, perl, ncurses5, gmp, libiconv}: stdenv.mkDerivation rec { version = "7.0.4"; @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { stdenv.lib.optionalString stdenv.isLinux '' find . -type f -perm -0100 \ -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${ncurses.out}/lib:${gmp.out}/lib" {} \; + --set-rpath "${ncurses5.out}/lib:${gmp.out}/lib" {} \; sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 for prog in ld ar gcc strip ranlib; do diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix index 07137578585..5faae118d8c 100644 --- a/pkgs/development/compilers/ghc/7.4.2-binary.nix +++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, perl, ncurses, gmp, libiconv, makeWrapper}: +{stdenv, fetchurl, perl, ncurses5, gmp, libiconv, makeWrapper}: stdenv.mkDerivation rec { version = "7.4.2"; @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { # find editline/gmp. stdenv.lib.optionalString stdenv.isLinux '' mkdir -p "$out/lib" - ln -sv "${ncurses.out}/lib/libncurses.so" "$out/lib/libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5" + ln -sv "${ncurses5.out}/lib/libncurses.so" "$out/lib/libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5" find . -type f -perm -0100 \ -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ --set-rpath "$out/lib:${gmp.out}/lib" {} \; From a311b069196363184fe1a81632de929b6073cceb Mon Sep 17 00:00:00 2001 From: mimadrid Date: Sat, 16 Jul 2016 23:46:42 +0200 Subject: [PATCH 300/508] sudo: 1.8.16 -> 1.8.17p1 --- pkgs/tools/security/sudo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/sudo/default.nix b/pkgs/tools/security/sudo/default.nix index b2af5451b8b..e2c69377df5 100644 --- a/pkgs/tools/security/sudo/default.nix +++ b/pkgs/tools/security/sudo/default.nix @@ -4,14 +4,14 @@ }: stdenv.mkDerivation rec { - name = "sudo-1.8.16"; + name = "sudo-1.8.17p1"; src = fetchurl { urls = [ "ftp://ftp.sudo.ws/pub/sudo/${name}.tar.gz" "ftp://ftp.sudo.ws/pub/sudo/OLD/${name}.tar.gz" ]; - sha256 = "0k86sm9ilhxhvnfwq3092zhfxazj3kddn0y2mirz0nqjqmpq50rd"; + sha256 = "c690d707fb561b3ecdf6a6de5563bc0b769388eff201c851edbace408bb155cc"; }; configureFlags = [ From 47f59a51e4e1d276f78f79e5b7cd668bc10f050e Mon Sep 17 00:00:00 2001 From: Michele Guerini Rocco Date: Sun, 17 Jul 2016 02:25:38 +0200 Subject: [PATCH 301/508] nixos/compton: add user service (#16652) --- nixos/modules/module-list.nix | 1 + nixos/modules/services/x11/compton.nix | 225 +++++++++++++++++++++++++ 2 files changed, 226 insertions(+) create mode 100644 nixos/modules/services/x11/compton.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 667d013e210..70963991986 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -477,6 +477,7 @@ ./services/web-servers/winstone.nix ./services/web-servers/zope2.nix ./services/x11/colord.nix + ./services/x11/compton.nix ./services/x11/unclutter.nix ./services/x11/desktop-managers/default.nix ./services/x11/display-managers/auto.nix diff --git a/nixos/modules/services/x11/compton.nix b/nixos/modules/services/x11/compton.nix new file mode 100644 index 00000000000..bda4eec0102 --- /dev/null +++ b/nixos/modules/services/x11/compton.nix @@ -0,0 +1,225 @@ +{ config, lib, pkgs, ... }: + +with lib; +with builtins; + +let + + cfg = config.services.compton; + + configFile = pkgs.writeText "compton.conf" + (optionalString cfg.fade '' + # fading + fading = true; + fade-delta = ${toString cfg.fadeDelta}; + fade-in-step = ${elemAt cfg.fadeSteps 0}; + fade-out-step = ${elemAt cfg.fadeSteps 1}; + fade-exclude = ${toJSON cfg.fadeExclude}; + '' + + optionalString cfg.shadow '' + + # shadows + shadow = true; + shadow-offset-x = ${toString (elemAt cfg.shadowOffsets 0)}; + shadow-offset-y = ${toString (elemAt cfg.shadowOffsets 1)}; + shadow-opacity = ${cfg.shadowOpacity}; + shadow-exclude = ${toJSON cfg.shadowExclude}; + '' + '' + + # opacity + active-opacity = ${cfg.activeOpacity}; + inactive-opacity = ${cfg.inactiveOpacity}; + menu-opacity = ${cfg.menuOpacity}; + + # other options + backend = ${toJSON cfg.backend}; + vsync = ${toJSON cfg.vSync}; + refresh-rate = ${toString cfg.refreshRate}; + '' + cfg.extraOptions); + +in { + + options.services.compton = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Whether of not to enable Compton as the X.org composite manager. + ''; + }; + + fade = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Fade windows in and out. + ''; + }; + + fadeDelta = mkOption { + type = types.int; + default = 10; + example = 5; + description = '' + Time between fade animation step (in ms). + ''; + }; + + fadeSteps = mkOption { + type = types.listOf types.str; + default = [ "0.028" "0.03" ]; + example = [ "0.04" "0.04" ]; + description = '' + Opacity change between fade steps (in and out). + ''; + }; + + fadeExclude = mkOption { + type = types.listOf types.str; + default = []; + example = [ + "window_type *= 'menu'" + "name ~= 'Firefox$'" + "focused = 1" + ]; + description = '' + List of condition of windows that should have no shadow. + See compton(1) man page for more examples. + ''; + }; + + shadow = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Draw window shadows. + ''; + }; + + shadowOffsets = mkOption { + type = types.listOf types.int; + default = [ (-15) (-15) ]; + example = [ (-10) (-15) ]; + description = '' + Left and right offset for shadows (in pixels). + ''; + }; + + shadowOpacity = mkOption { + type = types.str; + default = "0.75"; + example = "0.8"; + description = '' + Window shadows opacity (number in range 0 - 1). + ''; + }; + + shadowExclude = mkOption { + type = types.listOf types.str; + default = []; + example = [ + "window_type *= 'menu'" + "name ~= 'Firefox$'" + "focused = 1" + ]; + description = '' + List of condition of windows that should have no shadow. + See compton(1) man page for more examples. + ''; + }; + + activeOpacity = mkOption { + type = types.str; + default = "1.0"; + example = "0.8"; + description = '' + Opacity of active windows. + ''; + }; + + inactiveOpacity = mkOption { + type = types.str; + default = "1.0"; + example = "0.8"; + description = '' + Opacity of inactive windows. + ''; + }; + + menuOpacity = mkOption { + type = types.str; + default = "1.0"; + example = "0.8"; + description = '' + Opacity of dropdown and popup menu. + ''; + }; + + backend = mkOption { + type = types.str; + default = "glx"; + description = '' + Backend to use: glx or xrender. + ''; + }; + + vSync = mkOption { + type = types.str; + default = "none"; + example = "opengl-swc"; + description = '' + Enable vertical synchronization using the specified method. + See compton(1) man page available methods. + ''; + }; + + refreshRate = mkOption { + type = types.int; + default = 0; + example = 60; + description = '' + Screen refresh rate (0 = automatically detect). + ''; + }; + + package = mkOption { + type = types.package; + default = pkgs.compton; + example = literalExample "pkgs.compton"; + description = '' + Compton derivation to use. + ''; + }; + + extraOptions = mkOption { + type = types.str; + default = ""; + example = '' + unredir-if-possible = true; + dbe = true; + ''; + description = '' + Additional Compton configuration. + ''; + }; + }; + + config = mkIf cfg.enable { + systemd.user.services.compton = { + description = "Compton composite manager"; + wantedBy = [ "default.target" ]; + serviceConfig = { + ExecStart = "${cfg.package}/bin/compton --config ${configFile}"; + RestartSec = 3; + Restart = "always"; + }; + environment.DISPLAY = ":0"; + }; + + environment.systemPackages = [ cfg.package ]; + }; + +} From ec4ae7c8b6e8ae2f55f2595264a3b7c2f11cabc2 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 17 Jul 2016 04:32:48 +0200 Subject: [PATCH 302/508] teamspeak_client: specify a custom, nonfree license The licensing terms depend on use [1], but the software is clearly nonfree. Previously, the package would happily build even with allowUnfree = false. [1]: http://sales.teamspeakusa.com/licensing.php --- .../networking/instant-messengers/teamspeak/client.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index 17fdb2061dd..fb5d0eab183 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix @@ -101,7 +101,11 @@ stdenv.mkDerivation rec { meta = { description = "The TeamSpeak voice communication tool"; homepage = http://teamspeak.com/; - license = "http://www.teamspeak.com/?page=downloads&type=ts3_linux_client_latest"; + license = { + fullName = "Teamspeak client license"; + url = http://sales.teamspeakusa.com/licensing.php; + free = false; + }; maintainers = [ stdenv.lib.maintainers.lhvwb ]; platforms = stdenv.lib.platforms.linux; }; From 3c9788e1ce4022ff19a62b8de3989247d64c477e Mon Sep 17 00:00:00 2001 From: Nathaniel Baxter Date: Sun, 17 Jul 2016 16:58:30 +1000 Subject: [PATCH 303/508] teamspeak_client: 3.0.19.1 -> 3.0.19.3 --- .../networking/instant-messengers/teamspeak/client.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index 17fdb2061dd..6ca9e5719e6 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix @@ -31,7 +31,7 @@ in stdenv.mkDerivation rec { name = "teamspeak-client-${version}"; - version = "3.0.19.1"; + version = "3.0.19.3"; src = fetchurl { urls = [ @@ -39,8 +39,8 @@ stdenv.mkDerivation rec { "http://teamspeak.gameserver.gamed.de/ts3/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run" ]; sha256 = if stdenv.is64bit - then "173mcvrckia0mming1v9nzi0bllr4m430y9swl9kyfsvp44f5n5h" - else "1iansjlbalwil0nlrlxfl70zzbx009c4rccf4va0kq097rqhgznx"; + then "05620qqi8plxsrzj92g306a0l8wg1pd2l66vpmj71vs0f5lms6p4" + else "07b2120pa8nyvnvh48vp5vqq7xlxg6vrrx67azz9kfcdzbbarcv9"; }; # grab the plugin sdk for the desktop icon From 6aa50f169b9eaecdc44c5f73d0588f1783d9c2da Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Sun, 17 Jul 2016 09:31:41 +0200 Subject: [PATCH 304/508] sway: 0.7 -> 0.8 (#17026) --- .../window-managers/sway/default.nix | 60 ++++++++++--------- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/pkgs/applications/window-managers/sway/default.nix b/pkgs/applications/window-managers/sway/default.nix index 81fbedc4917..62b0b9c11ea 100644 --- a/pkgs/applications/window-managers/sway/default.nix +++ b/pkgs/applications/window-managers/sway/default.nix @@ -3,39 +3,41 @@ , wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, dbus_libs }: -stdenv.mkDerivation rec { - name = "sway-${version}"; - version = "0.7"; +let + version = "0.8"; +in + stdenv.mkDerivation rec { + name = "sway-${version}"; - src = fetchFromGitHub { - owner = "Sircmpwn"; - repo = "sway"; - rev = "0.7"; - sha256 = "05mn68brqz7j3a1sb5xd3pxzzdd8swnhw2g7cc9f7rdjr5dlrjip"; - }; + src = fetchFromGitHub { + owner = "Sircmpwn"; + repo = "sway"; + rev = "${version}"; + sha256 = "10i62cn1z7fwg0jwkskmzcaha39lprkl4zvkp59jr5wvpjligdq3"; + }; - nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ]; + nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ]; - buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs pango cairo libinput ]; + buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs pango cairo libinput ]; - patchPhase = '' - sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt; - ''; + patchPhase = '' + sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt; + ''; - makeFlags = "PREFIX=$(out)"; - installPhase = "PREFIX=$out make install"; + makeFlags = "PREFIX=$(out)"; + installPhase = "PREFIX=$out make install"; - LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ wlc dbus_libs ]; - preFixup = '' - wrapProgram $out/bin/sway \ - --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}"; - ''; + LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ wlc dbus_libs ]; + preFixup = '' + wrapProgram $out/bin/sway \ + --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}"; + ''; - meta = with stdenv.lib; { - description = "i3-compatible window manager for Wayland"; - homepage = "http://swaywm.org"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ ]; - }; -} + meta = with stdenv.lib; { + description = "i3-compatible window manager for Wayland"; + homepage = "http://swaywm.org"; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; + }; + } From b5cfb7b0012f97cbd2dd6333b611bbda4473995e Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 17 Jul 2016 10:36:21 +0200 Subject: [PATCH 305/508] evolution: 3.20.2 -> 3.20.4 --- pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix b/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix index c68ee65cb8b..9c55a6b60e2 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix @@ -1,10 +1,11 @@ # Autogenerated by maintainers/scripts/gnome.sh update -fetchurl: { - name = "evolution-3.20.2"; +fetchurl: rec { + major = "3.20"; + name = "evolution-${major}.4"; src = fetchurl { - url = mirror://gnome/sources/evolution/3.20/evolution-3.20.2.tar.xz; - sha256 = "66fa6e18c4e6a29c44870d5786e4dbb82507a8254bca9e27e802625081fca630"; + url = "mirror://gnome/sources/evolution/${major}/${name}.tar.xz"; + sha256 = "1g1nai6jz0irz94d06vx8gbwbzdp7r53qjxvjfhdqhlhnhy76a9c"; }; } From e14181ab17098d8c57fb89e795ffcab48d4e0978 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 17 Jul 2016 10:36:34 +0200 Subject: [PATCH 306/508] evolution-data-server: 3.20.2 -> 3.20.4 --- .../gnome-3/3.20/core/evolution-data-server/src.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix b/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix index 82ea796c3b0..cdb3dacf7ab 100644 --- a/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix @@ -1,10 +1,11 @@ # Autogenerated by maintainers/scripts/gnome.sh update -fetchurl: { - name = "evolution-data-server-3.20.2"; +fetchurl: rec { + major = "3.20"; + name = "evolution-data-server-${major}.4"; src = fetchurl { - url = mirror://gnome/sources/evolution-data-server/3.20/evolution-data-server-3.20.2.tar.xz; - sha256 = "8cdc74b08f1404f5df4b8cf5ccc4999a3e70a1db9ce472f71b623266941ffad9"; + url = "mirror://gnome/sources/evolution-data-server/${major}/${name}.tar.xz"; + sha256 = "03h81dnk34b3xf2065rymr1jd7as4dmpd89hyf380c5np36f6l7j"; }; } From 20f2e6e75b6a8b4b22ec7a8bc061fb8ab4d499e8 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 17 Jul 2016 10:36:44 +0200 Subject: [PATCH 307/508] gnome-online-accounts: 3.20.1 -> 3.20.2 --- .../gnome-3/3.20/core/gnome-online-accounts/src.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix index 7680208c27a..4c263d9d2d6 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix @@ -1,10 +1,11 @@ # Autogenerated by maintainers/scripts/gnome.sh update -fetchurl: { - name = "gnome-online-accounts-3.20.1"; +fetchurl: rec { + major = "3.20"; + name = "gnome-online-accounts-${major}.2"; src = fetchurl { - url = mirror://gnome/sources/gnome-online-accounts/3.20/gnome-online-accounts-3.20.1.tar.xz; - sha256 = "c37aebc1e12f31f5516d33a354181e4d202a07da4f7d3a95b0da8cf0028c0c93"; + url = "mirror://gnome/sources/gnome-online-accounts/${major}/${name}.tar.xz"; + sha256 = "1pf1rn1i7dqll9ph6scg2g281njx5pq6z0wyj9493m474nfmsmab"; }; } From 975851d9b13abc0d222c69fabea0a7943856f703 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 17 Jul 2016 10:37:04 +0200 Subject: [PATCH 308/508] gnome-session: 3.20.1 -> 3.20.2 --- pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix index 28d8496a354..06c40b6c2cf 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix @@ -1,10 +1,11 @@ # Autogenerated by maintainers/scripts/gnome.sh update -fetchurl: { - name = "gnome-session-3.20.1"; +fetchurl: rec { + major = "3.20"; + name = "gnome-session-${major}.2"; src = fetchurl { - url = mirror://gnome/sources/gnome-session/3.20/gnome-session-3.20.1.tar.xz; - sha256 = "2ae9f53dc74f851222fbefbe0dc08db0a78cc76ceeb156f92ebd4d40fd038913"; + url = "mirror://gnome/sources/gnome-session/${major}/${name}.tar.xz"; + sha256 = "1npnjm6wirz2v0liv7n23ivp2w0y1q230qcdb681hhzmp7h9fpq2"; }; } From 0ee1b5eb5bf44a8559ab6313070ccf42431f41ed Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 17 Jul 2016 10:37:16 +0200 Subject: [PATCH 309/508] gnome-sudoku: 3.20.2 -> 3.20.4 --- pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix index 2a83f89bb9b..8cc9731e370 100644 --- a/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix @@ -1,10 +1,11 @@ # Autogenerated by maintainers/scripts/gnome.sh update -fetchurl: { - name = "gnome-sudoku-3.20.2"; +fetchurl: rec { + major = "3.20"; + name = "gnome-sudoku-${major}.4"; src = fetchurl { - url = mirror://gnome/sources/gnome-sudoku/3.20/gnome-sudoku-3.20.2.tar.xz; - sha256 = "9c7e737686e88c20e83ca366bfc0a20194b7fe4af7c74ab752d98f0af1df3553"; + url = "mirror://gnome/sources/gnome-sudoku/${major}/${name}.tar.xz"; + sha256 = "1hw6r0yfg60ynp4gxnqm6zrsklzn0d6lb88vybdbifzrlaww8xwh"; }; } From b9db4405169e07215d5466cda64ceea9eeb5ae44 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 17 Jul 2016 10:37:40 +0200 Subject: [PATCH 310/508] gspell: 1.0.0 -> 1.0.3 --- pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix index 3758936d175..248e3915152 100644 --- a/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix +++ b/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix @@ -1,10 +1,10 @@ fetchurl: rec { major = "1.0"; - minor = "0"; + minor = "3"; name = "gspell-${major}.${minor}"; src = fetchurl { url = "mirror://gnome/sources/gspell/${major}/${name}.tar.xz"; - sha256 = "1nkpy005qyrfdklrjnvx5xksd3dv27fmn48wi12q8c8whxy2al3a"; + sha256 = "1m8v4rqaxjsblccc3nnirkbkzgqm90vfpzp3x08lkqriqvk0anfr"; }; } From ec072cbc4c87edd4ece210121dba83abeff0a018 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 16 Jul 2016 21:55:46 +0200 Subject: [PATCH 311/508] nixos/tests/installer: Fix matching LUKS prompt The LUKS passphrase prompt has changed from "Enter passphrase" to "Enter LUKS Passphrase" in c69c76ca7efecba24aba555c2a03f933997d1fd5, so the OCR detection of the test fails indefinitely. Unfortunately, this doesn't fix the test because we have a real problem here: Enter LUKS Passphrase: killall: cryptsetup: no process killed Enter LUKS Passphrase: Signed-off-by: aszlig Cc: @abbradar --- nixos/tests/installer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 4a30cc18b02..95fd4d5f2c2 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -365,7 +365,7 @@ in { enableOCR = true; preBootCommands = '' $machine->start; - $machine->waitForText(qr/Enter passphrase/); + $machine->waitForText(qr/Enter LUKS Passphrase/i); $machine->sendChars("supersecret\n"); ''; }; From 6d35e0259c1e18fc25a406b862b304102ec16509 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 16 Jul 2016 16:35:51 +0200 Subject: [PATCH 312/508] minisign: use fetchFromGitHub and set meta.platforms --- pkgs/tools/security/minisign/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/minisign/default.nix b/pkgs/tools/security/minisign/default.nix index 373ebc1e6ff..1a573048aa4 100644 --- a/pkgs/tools/security/minisign/default.nix +++ b/pkgs/tools/security/minisign/default.nix @@ -1,12 +1,14 @@ -{ stdenv, fetchurl, cmake, libsodium }: +{ stdenv, fetchFromGitHub, cmake, libsodium }: stdenv.mkDerivation rec { name = "minisign-${version}"; version = "0.6"; - src = fetchurl { - url = "https://github.com/jedisct1/minisign/archive/${version}.tar.gz"; - sha256 = "029g8ian72fy07k73nf451dw1yggav6crjjc2x6kv4nfpq3pl9pj"; + src = fetchFromGitHub { + repo = "minisign"; + owner = "jedisct1"; + rev = version; + sha256 = "1m71ngxaij3q1dw602kjgj22y5xfjlxrrkjdmx1v4p36y0n6wl92"; }; nativeBuildInputs = [ cmake ]; @@ -22,5 +24,6 @@ stdenv.mkDerivation rec { homepage = https://jedisct1.github.io/minisign/; license = licenses.isc; maintainers = with maintainers; [ joachifm ]; + platforms = platforms.unix; }; } From ce103cae38c996f6620a931be89e2a40d174cdb9 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 17 Jul 2016 11:52:13 +0200 Subject: [PATCH 313/508] cppcheck: 1.73 -> 1.74 --- pkgs/development/tools/analysis/cppcheck/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/analysis/cppcheck/default.nix b/pkgs/development/tools/analysis/cppcheck/default.nix index 778aaa90cbe..31d62bdae19 100644 --- a/pkgs/development/tools/analysis/cppcheck/default.nix +++ b/pkgs/development/tools/analysis/cppcheck/default.nix @@ -1,15 +1,13 @@ { stdenv, fetchurl, libxslt, docbook_xsl, docbook_xml_dtd_45 }: -let - pname = "cppcheck"; -in stdenv.mkDerivation rec { + pname = "cppcheck"; + version = "1.74"; name = "${pname}-${version}"; - version = "1.73"; src = fetchurl { url = "mirror://sourceforge/${pname}/${name}.tar.bz2"; - sha256 = "0l7yslf311h3kidi91q4zhqj3f3vsjp1gb2z50y20423fda87xin"; + sha256 = "0m62byiprabm1m3mc4r2w54p7qyhgi8msipnpm66ychr8rz2yny0"; }; nativeBuildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ]; @@ -27,8 +25,8 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A static analysis tool for C/C++ code"; longDescription = '' - Check C/C++ code for memory leaks, mismatching - allocation-deallocation, buffer overruns and more. + Check C/C++ code for memory leaks, mismatching allocation-deallocation, + buffer overruns and more. ''; homepage = http://cppcheck.sourceforge.net/; license = licenses.gpl3Plus; From 17627eac657ae9c4b3246a7e7a4727bf892c0dd6 Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 17 Jul 2016 10:42:45 +0200 Subject: [PATCH 314/508] kde5.spectacle: use postInstall instead of postFixup The other KDE applications run wrapQtProgram in postInstall. --- pkgs/desktops/kde-5/applications/spectacle.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/applications/spectacle.nix b/pkgs/desktops/kde-5/applications/spectacle.nix index 7e324f2b3fc..867c0b53b1e 100644 --- a/pkgs/desktops/kde-5/applications/spectacle.nix +++ b/pkgs/desktops/kde-5/applications/spectacle.nix @@ -29,7 +29,7 @@ kdeApp { kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor ]; - postFixup = '' + postInstall = '' wrapQtProgram "$out/bin/spectacle" ''; } From 52896c8c8641c2305dd7fb9b0c551839c16d1fa3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 17 Jul 2016 12:01:42 +0200 Subject: [PATCH 315/508] pythonPackages.rpy2: 2.5.6 -> 2.8.2 readline issue still exists. ``` ImportError: libreadline.so.6: cannot open shared object file: No such file or directory ``` --- pkgs/top-level/python-packages.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 45aabf63691..4d012da4f90 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20492,14 +20492,19 @@ in modules // { }); rpy2 = buildPythonPackage rec { - name = "rpy2-2.5.6"; + name = "rpy2-2.8.2"; disabled = isPyPy; src = pkgs.fetchurl { url = "mirror://pypi/r/rpy2/${name}.tar.gz"; - sha256 = "d0d584c435b5ed376925a95a4525dbe87de7fa9260117e9f208029e0c919ad06"; + sha256 = "2c1a313df4e64236dcfe1078ce847b8e3c180656c894928d3a4b391aacb9b24c"; }; buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ]; - propagatedBuildInputs = [ self.singledispatch ]; + propagatedBuildInputs = with self; [ singledispatch six ]; + + # According to manual this is how the testsuite should be invoked + checkPhase = '' + ${python.interpreter} -m rpy2.tests + ''; meta = { homepage = http://rpy.sourceforge.net/rpy2; description = "Python interface to R"; From 9a4d0d8e44214d7b0db1bd772efbb156e204ac92 Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Sun, 17 Jul 2016 17:28:06 +0530 Subject: [PATCH 316/508] alpine:configure: allow using passfile --- pkgs/applications/networking/mailreaders/alpine/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/mailreaders/alpine/default.nix b/pkgs/applications/networking/mailreaders/alpine/default.nix index 8e5e8d5a0de..f2769946f70 100644 --- a/pkgs/applications/networking/mailreaders/alpine/default.nix +++ b/pkgs/applications/networking/mailreaders/alpine/default.nix @@ -23,6 +23,7 @@ stdenv.mkDerivation { configureFlags = [ "--with-ssl-include-dir=${openssl.dev}/include/openssl" "--with-tcl-lib=${tcl.libPrefix}" + "--with-passfile=.pine-passfile" ]; preConfigure = '' export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s" From 957a0f65995960f3909885c80b6f27d74b6f6a87 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 17 Jul 2016 06:52:29 -0500 Subject: [PATCH 317/508] kde5.extra-cmake-modules: do not propagate for man and info pages --- .../desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh index 6c8199f17d4..5363f4e30fd 100644 --- a/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh @@ -12,14 +12,12 @@ _ecmSharePaths=( \ "desktop-directories" \ "doc" \ "icons" \ - "info" \ "kconf_update" \ "kservices5" \ "kservicetypes5" \ "knotifications5" \ "kxmlgui5" \ "locale" \ - "man" \ "mime" \ "polkit-1" \ "sounds" \ From 6dc6ae0ebe500d45b1ef7a3bac85aad2ef2820ab Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 17 Jul 2016 06:57:47 -0500 Subject: [PATCH 318/508] qt55.qtlocation: don't try to wrap missing module --- pkgs/development/libraries/qt-5/5.5/qtlocation.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtlocation.nix b/pkgs/development/libraries/qt-5/5.5/qtlocation.nix index 0e2ad8bafb3..bd11d4816ff 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtlocation.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtlocation.nix @@ -4,7 +4,6 @@ qtSubmodule { name = "qtlocation"; qtInputs = [ qtbase qtmultimedia ]; postFixup = '' - fixQtModuleCMakeConfig "Location" fixQtModuleCMakeConfig "Positioning" ''; } From 193ab8be67ef941321e6b079db7e73b1d04cf9a8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 17 Jul 2016 13:25:34 +0300 Subject: [PATCH 319/508] Revert "nixos stage-1: try to quit plymouth if started on failure" This reverts commit c69c76ca7efecba24aba555c2a03f933997d1fd5. This patch was messed up during a rebase -- the commit title doesn't match what it really does at all (it is actually a broken attempt to get LUKS passphrase prompts in Plymouth). --- nixos/modules/system/boot/luksroot.nix | 26 ++++------------------- nixos/modules/system/boot/stage-1-init.sh | 3 --- 2 files changed, 4 insertions(+), 25 deletions(-) diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix index 15881b6d371..8dad09c8920 100644 --- a/nixos/modules/system/boot/luksroot.nix +++ b/nixos/modules/system/boot/luksroot.nix @@ -36,7 +36,7 @@ let ${optionalString (header != null) "--header=${header}"} \ ${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"} \ > /.luksopen_args - get_password "Enter LUKS Passphrase" cryptsetup-askpass + cryptsetup-askpass rm /.luksopen_args } @@ -78,7 +78,9 @@ let for try in $(seq 3); do ${optionalString yubikey.twoFactor '' - k_user="$(get_password "Enter two-factor passphrase" cat)" + echo -n "Enter two-factor passphrase: " + read -s k_user + echo ''} if [ ! -z "$k_user" ]; then @@ -461,26 +463,6 @@ in ''} ''; - boot.initrd.preDeviceCommands = '' - get_password() { - local ret - local reply - local tty_stat - - tty_stat="$(stty -g)" - stty -echo - for i in `seq 1 3`; do - echo -n "$1: " - read reply - echo "$reply" | "$2" - if [ "$?" = "0" ]; then - break - fi - done - stty "$tty_stat" - } - ''; - boot.initrd.preLVMCommands = concatStrings (mapAttrsToList openCommand preLVM); boot.initrd.postDeviceCommands = concatStrings (mapAttrsToList openCommand postLVM); diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index 6b1bf0b3e02..d4277ebd80c 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -14,9 +14,6 @@ export LVM_SUPPRESS_FD_WARNINGS=true fail() { if [ -n "$panicOnFail" ]; then exit 1; fi - # If we have a splash screen started, quit it. - command -v plymouth >/dev/null 2>&1 && plymouth quit - # If starting stage 2 failed, allow the user to repair the problem # in an interactive shell. cat < Date: Sun, 17 Jul 2016 09:32:26 -0300 Subject: [PATCH 320/508] java-cup: 10k -> 11b-20160615 --- .../development/libraries/java/cup/builder.sh | 13 ------- .../libraries/java/cup/default.nix | 39 +++++++++++++++---- ...cup-0.11b_beta20160615-build-xml-git.patch | 38 ++++++++++++++++++ 3 files changed, 70 insertions(+), 20 deletions(-) delete mode 100755 pkgs/development/libraries/java/cup/builder.sh create mode 100644 pkgs/development/libraries/java/cup/javacup-0.11b_beta20160615-build-xml-git.patch diff --git a/pkgs/development/libraries/java/cup/builder.sh b/pkgs/development/libraries/java/cup/builder.sh deleted file mode 100755 index 3cd75dd396c..00000000000 --- a/pkgs/development/libraries/java/cup/builder.sh +++ /dev/null @@ -1,13 +0,0 @@ -set -e -source $stdenv/setup - -tar zxvf $src - -$jdk/bin/javac java_cup/*.java -$jdk/bin/javac java_cup/runtime/*.java - -mkdir -p $out/java_cup/runtime - -cp java_cup/*.class $out/java_cup -cp java_cup/runtime/*.class $out/java_cup/runtime/ - diff --git a/pkgs/development/libraries/java/cup/default.nix b/pkgs/development/libraries/java/cup/default.nix index 1181cef074e..de031a08fe8 100644 --- a/pkgs/development/libraries/java/cup/default.nix +++ b/pkgs/development/libraries/java/cup/default.nix @@ -1,13 +1,38 @@ -{stdenv, fetchurl, jdk} : +{ stdenv, fetchurl, jdk, ant } : -stdenv.mkDerivation { - name = "java-cup-10k"; - builder = ./builder.sh; +stdenv.mkDerivation rec { + name = "java-cup-${version}"; + version = "11b-20160615"; src = fetchurl { - url = http://www.cs.princeton.edu/~appel/modern/java/CUP/java_cup_v10k.tar.gz; - md5 = "8b11edfec13c590ea443d0f0ae0da479"; + url = "http://www2.cs.tum.edu/projects/cup/releases/java-cup-src-${version}.tar.gz"; + sha256 = "1ymz3plngxclh7x3xr31537rvvak7lwyd0qkmnl1mkj5drh77rz0"; }; - inherit jdk; + sourceRoot = "."; + + nativeBuildInputs = [ jdk ant ]; + + patches = [ ./javacup-0.11b_beta20160615-build-xml-git.patch ]; + + buildPhase = "ant"; + + installPhase = '' + mkdir -p $out/{bin,share/{java,java-cup}} + cp dist/java-cup-11b.jar $out/share/java-cup/ + cp dist/java-cup-11b-runtime.jar $out/share/java/ + cat > $out/bin/javacup < + + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ${changed}${gitversion} + + + +@@ -79,7 +59,7 @@ + + ++ value='+ "v0.11b ${cupversion}"'> + + + From 38f356b32821ed43943cc4ddf2b7f704f3ab25b4 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 15 Jul 2016 18:47:46 +0200 Subject: [PATCH 321/508] plugin-torture: git 2013-10-03 -> 5 --- .../audio/plugin-torture/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/audio/plugin-torture/default.nix b/pkgs/applications/audio/plugin-torture/default.nix index cca4538422f..e4fb83439e0 100644 --- a/pkgs/applications/audio/plugin-torture/default.nix +++ b/pkgs/applications/audio/plugin-torture/default.nix @@ -1,13 +1,14 @@ -{ stdenv, fetchgit, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }: +{ stdenv, fetchFromGitHub, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }: stdenv.mkDerivation rec { - name = "plugin-torture-git-${version}"; - version = "2013-10-03"; + name = "plugin-torture-${version}"; + version = "5"; - src = fetchgit { - url = "https://github.com/cth103/plugin-torture"; - rev = "9ee06016982bdfbaa215cd0468cc6ada6367462a"; - sha256 = "0ynzfs3z95lbw4l1w276as2a37zxp0cw6pi3lbikr0qk0r7j5j10"; + src = fetchFromGitHub { + owner = "cth103"; + repo = "plugin-torture"; + rev = "v${version}"; + sha256 = "1mlgxjsyaz86wm4k32ll2w5nghjffnsdqlm6kjv02a4dpb2bfrih"; }; buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ]; @@ -15,7 +16,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin cp plugin-torture $out/bin/ - cp README $out/bin/ + cp find-safe-plugins $out/bin/ ''; meta = with stdenv.lib; { From 76e41640070feda4ff343dec1d9c0aa2ccc8921c Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Sun, 17 Jul 2016 15:55:53 +0200 Subject: [PATCH 322/508] emby: 3.0.5985 -> 3.0.5986 (#17007) --- pkgs/servers/emby/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix index b9cc038479d..1d9d9772706 100644 --- a/pkgs/servers/emby/default.nix +++ b/pkgs/servers/emby/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "emby-${version}"; - version = "3.0.5985"; + version = "3.0.5986"; src = fetchurl { url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz"; - sha256 = "16p8qr9pf6ww6xdfbsqamnpk70i4dadz30lnvliyxaaslggjbh4b"; + sha256 = "0lccyvwk9pm9vn3fg4pa9956f4xn6fcqzlyj8rkxgwf7avzibxix"; }; propagatedBuildInputs = with pkgs; [ From 00a61a420fe6db169871a136b45f0a441e77e847 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sun, 17 Jul 2016 09:32:10 +0200 Subject: [PATCH 323/508] zexy: don't patchShebangs, breaks build --- pkgs/applications/audio/pd-plugins/zexy/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/audio/pd-plugins/zexy/default.nix b/pkgs/applications/audio/pd-plugins/zexy/default.nix index 68996e9e6e4..7cd244c9ea4 100644 --- a/pkgs/applications/audio/pd-plugins/zexy/default.nix +++ b/pkgs/applications/audio/pd-plugins/zexy/default.nix @@ -16,7 +16,6 @@ stdenv.mkDerivation rec { for i in ${puredata}/include/pd/*; do ln -s $i . done - patchShebangs ./bootstrap.sh ./configure --enable-lpt=no --prefix=$out ''; From dd778f175671d295d98231109917cb12e8de3594 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 17 Jul 2016 22:40:27 +0800 Subject: [PATCH 324/508] fritzing: fix qmake4Hook build pass phoenix.pro and return unpack logic which were removed in 0b88755 --- .../science/electronics/fritzing/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix index 110759ea292..3f80ed2866d 100644 --- a/pkgs/applications/science/electronics/fritzing/default.nix +++ b/pkgs/applications/science/electronics/fritzing/default.nix @@ -9,8 +9,18 @@ stdenv.mkDerivation rec { sha256 = "181qnknq1j5x075icpw2qk0sc4wcj9f2hym533vs936is0wxp2gk"; }; + unpackPhase = '' + tar xjf ${src} + ''; + buildInputs = [ qtbase qtsvg boost qmakeHook ]; + qmakeFlags = [ "phoenix.pro" ]; + + preConfigure = '' + cd fritzing-${version}.source + ''; + meta = { description = "An open source prototyping tool for Arduino-based projects"; homepage = http://fritzing.org/; From 2d529cfebb720ebdbc4ca9b794887940c5ef0f5f Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 17 Jul 2016 22:41:34 +0800 Subject: [PATCH 325/508] guitone: fix qmake4Hook build pass guitone.pro which was removed in 9a8a4b6 --- pkgs/applications/version-management/guitone/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/version-management/guitone/default.nix b/pkgs/applications/version-management/guitone/default.nix index 8731cbfde19..8f8750b98c2 100644 --- a/pkgs/applications/version-management/guitone/default.nix +++ b/pkgs/applications/version-management/guitone/default.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { buildInputs = [ qt4 qmake4Hook pkgconfig graphviz ]; + qmakeFlags = [ "guitone.pro" ]; + meta = { description = "Qt4 based GUI for monotone"; homepage = http://guitone.thomaskeller.biz; From 5609e0daa293573c0d2f27c541fbca7d345e6942 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 17 Jul 2016 22:42:08 +0800 Subject: [PATCH 326/508] multimon-ng: fix qmake4Hook build pass multimon-ng.pro which was removed in fbb9263 --- pkgs/applications/misc/multimon-ng/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/multimon-ng/default.nix b/pkgs/applications/misc/multimon-ng/default.nix index a9f0cb2511a..8e39c258333 100644 --- a/pkgs/applications/misc/multimon-ng/default.nix +++ b/pkgs/applications/misc/multimon-ng/default.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation { nativeBuildInputs = [ qmake4Hook ]; + qmakeFlags = [ "multimon-ng.pro" ]; + installPhase = '' mkdir -p $out/bin cp multimon-ng $out/bin From 615d818964e9401726890c85735739742cd979af Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 17 Jul 2016 22:42:46 +0800 Subject: [PATCH 327/508] ppsspp: fix qmake4Hook build pass PPSSPPQt.pro which was removed in 34625f6 --- pkgs/misc/emulators/ppsspp/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/misc/emulators/ppsspp/default.nix b/pkgs/misc/emulators/ppsspp/default.nix index 68fb7105078..3f02304c0d4 100644 --- a/pkgs/misc/emulators/ppsspp/default.nix +++ b/pkgs/misc/emulators/ppsspp/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec{ buildInputs = [ zlib libpng pkgconfig qt4 qmake4Hook ] ++ (if withGamepads then [ SDL ] else [ ]); + qmakeFlags = [ "PPSSPPQt.pro" ]; + preConfigure = "cd Qt"; installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin"; From a6a0b092da7c10cc8506aa91892c8d3161ef9fb3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 15 Jul 2016 22:41:03 +0200 Subject: [PATCH 328/508] pythonPackages.m2crypto: 0.23.0 -> 0.24.0 Fixes libressl compatibility. --- 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 4d012da4f90..e8d3b13d98a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12454,12 +12454,12 @@ in modules // { m2crypto = buildPythonPackage rec { - version = "0.23.0"; + version = "0.24.0"; name = "m2crypto-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/M/M2Crypto/M2Crypto-${version}.tar.gz"; - sha256 = "1ac3b6eafa5ff7e2a0796675316d7569b28aada45a7ab74042ad089d15a9567f"; + sha256 = "1s2y0pf2zg7xf4nfwrw7zhwbk615r5a7bgi5wwkwzh6jl50n99c0"; }; buildInputs = with self; [ pkgs.swig2 pkgs.openssl ]; From 8a6fce54315ce4094ea7891ad99f2c7f7d10d0dc Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 16 Jul 2016 21:53:15 +0200 Subject: [PATCH 329/508] ndjbdns: 1.05.9 -> 1.06 --- pkgs/tools/networking/ndjbdns/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/ndjbdns/default.nix b/pkgs/tools/networking/ndjbdns/default.nix index 2a7e996f8db..256f50e5c54 100644 --- a/pkgs/tools/networking/ndjbdns/default.nix +++ b/pkgs/tools/networking/ndjbdns/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, systemd, pkgconfig }: stdenv.mkDerivation rec { - version = "1.05.9"; + version = "1.06"; name = "ndjbdns-${version}"; + src = fetchurl { url = "http://pjp.dgplug.org/ndjbdns/${name}.tar.gz"; - sha256 = "0gf3hlmr6grcn6dzflf83lqqfp6hk3ldhbc7z0a1rrh059m93ap5"; + sha256 = "09qi5a9abqm08iqmxj74fzzq9x1w5lzr1jlbzj2hl8hz0g2sgraw"; }; buildInputs = [ pkgconfig systemd ]; @@ -21,4 +22,4 @@ stdenv.mkDerivation rec { platforms = platforms.linux; }; -} \ No newline at end of file +} From eacabb99930621bd1f04beeb1c701ec82ca96978 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 17 Jul 2016 04:23:45 +0200 Subject: [PATCH 330/508] shncpd: init at 2016-06-22 --- pkgs/tools/networking/shncpd/default.nix | 27 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/tools/networking/shncpd/default.nix diff --git a/pkgs/tools/networking/shncpd/default.nix b/pkgs/tools/networking/shncpd/default.nix new file mode 100644 index 00000000000..be2bc6a75a1 --- /dev/null +++ b/pkgs/tools/networking/shncpd/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "shncpd-${version}"; + version = "2016-06-22"; + + src = fetchFromGitHub { + owner = "jech"; + repo = "shncpd"; + rev = "62ef688db7a6535ce11e66c8c93ab64a1bb09484"; + sha256 = "1sj7a77isc2jmh7gw2naw9l9366kjx6jb909h7spj7daxdwvji8f"; + }; + + hardeningEnable = [ "pie" ]; + + preConfigure = '' + makeFlags=( "PREFIX=$out" ) + ''; + + meta = with stdenv.lib; { + description = "Simple, stupid and slow HNCP daemon"; + homepage = https://www.irif.univ-paris-diderot.fr/~jch/software/homenet/shncpd.html; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ maintainers.fpletz ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 88ca78fa308..611fa4306ec 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6601,6 +6601,8 @@ in shellcheck = self.haskellPackages.ShellCheck; + shncpd = callPackage ../tools/networking/shncpd { }; + sigrok-cli = callPackage ../development/tools/sigrok-cli { }; simpleTpmPk11 = callPackage ../tools/security/simple-tpm-pk11 { }; From 08c65bc68b5bb3b63cfca6672b650c00113d3c3f Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 17 Jul 2016 15:07:44 +0200 Subject: [PATCH 331/508] gti: Fix build on darwin --- pkgs/tools/misc/gti/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/misc/gti/default.nix b/pkgs/tools/misc/gti/default.nix index 39e28073abc..3705dd832e9 100644 --- a/pkgs/tools/misc/gti/default.nix +++ b/pkgs/tools/misc/gti/default.nix @@ -11,6 +11,10 @@ stdenv.mkDerivation rec { sha256 = "1wki7d61kcmv9s3xayky9cz84qa773x3y1z88y768hq8ifwadcbn"; }; + prePatch = '' + substituteInPlace Makefile --replace gcc cc + ''; + installPhase = '' mkdir -p $out/bin $out/share/man/man6 cp gti $out/bin From 727eb19a812ccf34d8b6e79ef398a9b5bf80e0b2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 17 Jul 2016 16:36:06 +0200 Subject: [PATCH 332/508] jenkins: 2.3 -> 2.13 --- .../tools/continuous-integration/jenkins/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index e7355d167d9..01d1c97ba96 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "2.3"; + version = "2.13"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "0x59dbvh6y25ki5jy51djbfbhf8g2j3yd9f3n66f7bkdfw8p78g1"; + sha256 = "0rb3spml2c7cd34zjjc5mwsdcnwmcbcdc784nl8cczayiwz8nq3p"; }; buildCommand = '' @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = http://jenkins-ci.org; license = licenses.mit; platforms = platforms.all; - maintainers = [ maintainers.coconnor ]; + maintainers = with maintainers; [ coconnor fpletz ]; }; } From 9117d20b451b49787353c4cb72a2ffab6e16a999 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 17 Jul 2016 17:12:23 +0200 Subject: [PATCH 333/508] sslscan: 1.11.5 -> 1.11.7, fixes darwin build --- pkgs/tools/security/sslscan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix index 50cc380b970..f6777a0e979 100644 --- a/pkgs/tools/security/sslscan/default.nix +++ b/pkgs/tools/security/sslscan/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "sslscan-${version}"; - version = "1.11.5"; + version = "1.11.7"; src = fetchurl { url = "https://github.com/rbsec/sslscan/archive/${version}-rbsec.tar.gz"; - sha256 = "0mcg8hyx1r9sq716bw1r554fcsf512khgcms2ixxb1c31ng6lhq6"; + sha256 = "0wygz2gm9asvhpfy44333y4pkdja1sbr41hc6mhkxg7a4ys8f9qs"; }; buildInputs = [ openssl ]; From f6529d96409aaf777a47227b1d00098f618b184d Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sun, 17 Jul 2016 17:27:57 +0200 Subject: [PATCH 334/508] eq10q: 2.0-beta7 -> 2.0 (#17041) --- pkgs/applications/audio/eq10q/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/eq10q/default.nix b/pkgs/applications/audio/eq10q/default.nix index e2adf9e131c..0ff83a9023e 100644 --- a/pkgs/applications/audio/eq10q/default.nix +++ b/pkgs/applications/audio/eq10q/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, cmake, fftw, gtkmm, libxcb, lv2, pkgconfig, xorg }: stdenv.mkDerivation rec { - name = "eq10q-2-${version}"; - version = "beta7.1"; + name = "eq10q-${version}"; + version = "2.0"; src = fetchurl { url = "mirror://sourceforge/project/eq10q/${name}.tar.gz"; - sha256 = "1jmrcx4jlx8kgsy5n4jcxa6qkjqvx7d8l2p7dsmw4hj20s39lgyi"; + sha256 = "08vlfly0qqrfqiwpn5g5php680icpk97pwnwjadmj5syhgvi0i3h"; }; buildInputs = [ cmake fftw gtkmm libxcb lv2 pkgconfig xorg.libpthreadstubs xorg.libXdmcp xorg.libxshmfence ]; From 1b9f6732c7988d13554e72f5c54bffe0b310268a Mon Sep 17 00:00:00 2001 From: Miguel Madrid Date: Sun, 17 Jul 2016 17:53:51 +0200 Subject: [PATCH 335/508] diff-so-fancy: 0.10.0 -> 0.10.1 (#17033) --- .../git-and-tools/diff-so-fancy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix index 8f96f36cf86..a3881baf1e7 100644 --- a/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix +++ b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "diff-so-fancy-${version}"; - version = "0.10.0"; + version = "0.10.1"; # perl is needed here so patchShebangs can do its job buildInputs = [perl makeWrapper]; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "so-fancy"; repo = "diff-so-fancy"; rev = "v${version}"; - sha256 = "08dv9xlrsyjr1ylm83lbsv2p5asfia4ib97bwgcacsdxxh5zyqh9"; + sha256 = "0wp5civn70jzil1gbygx6ccrxfrmc8xx90v7zgf36rqi2yhvv64m"; }; buildPhase = null; From be625ad36be481e4d0274b489066fe18c147376c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Sun, 17 Jul 2016 18:29:46 +0200 Subject: [PATCH 336/508] xsession: fix multiple arguments with logToJournal KDM and LightDM (at least with autologin) call the xsession-script with two arguments: the first is the path of the xsession script itself, while the second one are the actual arguments. The line to re-exec the script under systemd-cat only forwarded a single argument, therefore breaking LightDM and KDM login. This commit fixes the issue by always forwarding all the arguments. --- nixos/modules/services/x11/display-managers/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index 862ddc1d13f..83d679ebe01 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -34,7 +34,7 @@ let ${optionalString cfg.displayManager.logToJournal '' if [ -z "$_DID_SYSTEMD_CAT" ]; then - _DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$1" + _DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$@" fi ''} From 8881f940a90e1087a5c895e58d267d527a2c57cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Sun, 17 Jul 2016 18:37:43 +0200 Subject: [PATCH 337/508] nixos/sddm: options documentation improvements --- nixos/modules/services/x11/display-managers/sddm.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index 7a17a222bca..16d1e89e8d9 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -27,6 +27,7 @@ let ${cfg.stopScript} ''; + cfgFile = pkgs.writeText "sddm.conf" '' [General] HaltCommand=${pkgs.systemd}/bin/systemctl poweroff @@ -154,7 +155,7 @@ in type = types.bool; default = false; description = '' - Automatically log in as the sepecified . + Automatically log in as . ''; }; @@ -162,7 +163,7 @@ in type = types.nullOr types.str; default = null; description = '' - User to be used for the autologin. + User to be used for the automatic login. ''; }; @@ -170,8 +171,8 @@ in type = types.bool; default = false; description = '' - If true automatic login will kick in again on session exit, otherwise it - will work only the first time. + If true automatic login will kick in again on session exit (logout), otherwise it + will only log in automatically when the display-manager is started. ''; }; }; From 336786addc53a20bd757f415b9d560b107cd7c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Sun, 17 Jul 2016 18:51:55 +0200 Subject: [PATCH 338/508] nixos/lightdm: support greeter-less auto login This adds configuration options for automatic login and disabling the greeter (this should avoid the dependency on gtk). --- .../services/x11/display-managers/lightdm.nix | 100 +++++++++++++++++- 1 file changed, 96 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix index ac7db3d9adc..47786f0a432 100644 --- a/nixos/modules/services/x11/display-managers/lightdm.nix +++ b/nixos/modules/services/x11/display-managers/lightdm.nix @@ -4,7 +4,8 @@ with lib; let - dmcfg = config.services.xserver.displayManager; + xcfg = config.services.xserver; + dmcfg = xcfg.displayManager; xEnv = config.systemd.services."display-manager".environment; cfg = dmcfg.lightdm; @@ -36,16 +37,31 @@ let lightdmConf = writeText "lightdm.conf" '' [LightDM] - greeter-user = ${config.users.extraUsers.lightdm.name} - greeters-directory = ${cfg.greeter.package} + ${optionalString cfg.greeter.enable '' + greeter-user = ${config.users.extraUsers.lightdm.name} + greeters-directory = ${cfg.greeter.package} + ''} sessions-directory = ${dmcfg.session.desktops} [Seat:*] xserver-command = ${xserverWrapper} session-wrapper = ${dmcfg.session.script} - greeter-session = ${cfg.greeter.name} + ${optionalString cfg.greeter.enable '' + greeter-session = ${cfg.greeter.name} + ''} + ${optionalString cfg.autoLogin.enable '' + autologin-user = ${cfg.autoLogin.user} + autologin-user-timeout = ${toString cfg.autoLogin.timeout} + autologin-session = ${defaultSessionName} + ''} ${cfg.extraSeatDefaults} ''; + + defaultSessionName = + let + dm = xcfg.desktopManager.default; + wm = xcfg.windowManager.default; + in dm + optionalString (wm != "none") (" + " + wm); in { # Note: the order in which lightdm greeter modules are imported @@ -68,6 +84,14 @@ in }; greeter = { + enable = mkOption { + type = types.bool; + default = true; + description = '' + If set to false, run lightdm in greeterless mode. This only works if autologin + is enabled and autoLogin.timeout is zero. + ''; + }; package = mkOption { type = types.package; description = '' @@ -102,10 +126,67 @@ in description = "Extra lines to append to SeatDefaults section."; }; + autoLogin = mkOption { + default = {}; + description = '' + Configuration for automatic login. + ''; + + type = types.submodule { + options = { + enable = mkOption { + type = types.bool; + default = false; + description = '' + Automatically log in as the specified . + ''; + }; + + user = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + User to be used for the automatic login. + ''; + }; + + timeout = mkOption { + type = types.int; + default = 0; + description = '' + Show the greeter for this many seconds before automatic login occurs. + ''; + }; + }; + }; + }; + }; }; config = mkIf cfg.enable { + + assertions = [ + { assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null; + message = '' + LightDM auto-login requires services.xserver.displayManager.lightdm.autoLogin.user to be set + ''; + } + { assertion = cfg.autoLogin.enable -> elem defaultSessionName dmcfg.session.names; + message = '' + LightDM auto-login requires that services.xserver.desktopManager.default and + services.xserver.windowMananger.default are set to valid values. The current + default session: ${defaultSessionName} is not valid. + ''; + } + { assertion = !cfg.greeter.enable -> (cfg.autoLogin.enable && cfg.autoLogin.timeout == 0); + message = '' + LightDM can only run without greeter if automatic login is enabled and the timeout for it + is set to zero. + ''; + } + ]; + services.xserver.displayManager.slim.enable = false; services.xserver.displayManager.job = { @@ -144,6 +225,17 @@ in session optional ${pkgs.systemd}/lib/security/pam_systemd.so ''; }; + security.pam.services.lightdm-autologin.text = '' + auth requisite pam_nologin.so + auth required pam_succeed_if.so uid >= 1000 quiet + auth required pam_permit.so + + account include lightdm + + password include lightdm + + session include lightdm + ''; users.extraUsers.lightdm = { createHome = true; From 800a379cb317182722c8cbfe1a9716cd454c32cd Mon Sep 17 00:00:00 2001 From: Tomas Hlavaty Date: Sun, 17 Jul 2016 17:20:23 +0200 Subject: [PATCH 339/508] unittest-cpp: init at 1.6.1 --- .../libraries/unittest-cpp/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/libraries/unittest-cpp/default.nix diff --git a/pkgs/development/libraries/unittest-cpp/default.nix b/pkgs/development/libraries/unittest-cpp/default.nix new file mode 100644 index 00000000000..e0ce2ab224e --- /dev/null +++ b/pkgs/development/libraries/unittest-cpp/default.nix @@ -0,0 +1,26 @@ +{stdenv, fetchFromGitHub, cmake}: + +with stdenv.lib; + +stdenv.mkDerivation rec { + name = "unittest-cpp-${version}"; + version = "1.6.1"; + + src = fetchFromGitHub { + owner = "unittest-cpp"; + repo = "unittest-cpp"; + rev = "v${version}"; + sha256 = "1sva2bm90z4vmwwvp0af82f7p4sdq5j2jjqzhs2ppihdkggn62d1"; + }; + + buildInputs = [cmake]; + + doCheck = false; + + meta = { + homepage = "https://github.com/unittest-cpp/unittest-cpp"; + description = "Lightweight unit testing framework for C++"; + license = licenses.mit; + maintainers = [maintainers.tohl]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 611fa4306ec..711a389cb8c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3941,6 +3941,8 @@ in units = callPackage ../tools/misc/units { }; + unittest-cpp = callPackage ../development/libraries/unittest-cpp { }; + unrar = callPackage ../tools/archivers/unrar { }; xar = callPackage ../tools/compression/xar { }; From 16ad19887a74fc63e20690eea6c6d4a65208278a Mon Sep 17 00:00:00 2001 From: Tomas Hlavaty Date: Sun, 17 Jul 2016 17:39:15 +0200 Subject: [PATCH 340/508] openshot-qt: init at 2.0.7 --- .../video/openshot-qt/default.nix | 48 +++++++++++++++++++ .../video/openshot-qt/libopenshot-audio.nix | 31 ++++++++++++ .../video/openshot-qt/libopenshot.nix | 46 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 127 insertions(+) create mode 100644 pkgs/applications/video/openshot-qt/default.nix create mode 100644 pkgs/applications/video/openshot-qt/libopenshot-audio.nix create mode 100644 pkgs/applications/video/openshot-qt/libopenshot.nix diff --git a/pkgs/applications/video/openshot-qt/default.nix b/pkgs/applications/video/openshot-qt/default.nix new file mode 100644 index 00000000000..5f142d715f5 --- /dev/null +++ b/pkgs/applications/video/openshot-qt/default.nix @@ -0,0 +1,48 @@ +{stdenv, fetchurl, fetchFromGitHub, callPackage, makeWrapper, doxygen +, ffmpeg, python3Packages, qt55}: + +with stdenv.lib; + +let + libopenshot = callPackage ./libopenshot.nix {}; +in +stdenv.mkDerivation rec { + name = "openshot-qt-${version}"; + version = "2.0.7"; + + src = fetchFromGitHub { + owner = "OpenShot"; + repo = "openshot-qt"; + rev = "v${version}"; + sha256 = "1s4b61fd8cyjy8kvc25mqd97dkxx6gqmz02i42rrcriz51pw8wgh"; + }; + + buildInputs = [doxygen python3Packages.python makeWrapper ffmpeg]; + + propagatedBuildInputs = [ + qt55.qtbase + qt55.qtmultimedia + libopenshot + ]; + + installPhase = '' + mkdir -p $(toPythonPath $out) + cp -r src/* $(toPythonPath $out) + mkdir -p $out/bin + echo "#/usr/bin/env sh" >$out/bin/openshot-qt + echo "exec ${python3Packages.python.interpreter} $(toPythonPath $out)/launch.py" >>$out/bin/openshot-qt + chmod +x $out/bin/openshot-qt + wrapProgram $out/bin/openshot-qt \ + --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${libopenshot}):$(toPythonPath ${python3Packages.pyqt5}):$(toPythonPath ${python3Packages.sip_4_16}):$(toPythonPath ${python3Packages.httplib2}):$PYTHONPATH" + ''; + + doCheck = false; + + meta = { + homepage = "http://openshot.org/"; + description = "Free, open-source video editor"; + license = licenses.gpl3Plus; + maintainers = [maintainers.tohl]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/video/openshot-qt/libopenshot-audio.nix b/pkgs/applications/video/openshot-qt/libopenshot-audio.nix new file mode 100644 index 00000000000..8b583d4ec5c --- /dev/null +++ b/pkgs/applications/video/openshot-qt/libopenshot-audio.nix @@ -0,0 +1,31 @@ +{stdenv, fetchurl, fetchFromGitHub, cmake, doxygen +, libX11, libXft, libXrandr, libXinerama, libXext, libXcursor, alsaLib}: + +with stdenv.lib; + +stdenv.mkDerivation rec { + name = "libopenshot-audio-${version}"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "OpenShot"; + repo = "libopenshot-audio"; + rev = "v${version}"; + sha256 = "0pgw7vzx3znglwm58187ybhg5maa13n4xcy5hrhzfsp8bqhrwkc7"; + }; + + buildInputs = [ + cmake doxygen + libX11 libXft libXrandr libXinerama libXext libXcursor alsaLib + ]; + + doCheck = false; + + meta = { + homepage = "http://openshot.org/"; + description = "Free, open-source video editor"; + license = licenses.gpl3Plus; + maintainers = [maintainers.tohl]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/video/openshot-qt/libopenshot.nix b/pkgs/applications/video/openshot-qt/libopenshot.nix new file mode 100644 index 00000000000..2737c48ec83 --- /dev/null +++ b/pkgs/applications/video/openshot-qt/libopenshot.nix @@ -0,0 +1,46 @@ +{stdenv, fetchurl, fetchFromGitHub, callPackage, cmake, doxygen +, imagemagick, ffmpeg, qt55, swig, python3, ruby, unittest-cpp}: + +with stdenv.lib; + +let + libopenshot_audio = callPackage ./libopenshot-audio.nix {}; +in +stdenv.mkDerivation rec { + name = "libopenshot-${version}"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "OpenShot"; + repo = "libopenshot"; + rev = "v${version}"; + sha256 = "12nfkris7spn8n4s8fvy2f6yk1hqh97wzh1z3fsdxldg4gppi903"; + }; + + patchPhase = '' + sed -i 's/{UNITTEST++_INCLUDE_DIR}/ENV{UNITTEST++_INCLUDE_DIR}/g' tests/CMakeLists.txt + sed -i 's/{_REL_PYTHON_MODULE_PATH}/ENV{_REL_PYTHON_MODULE_PATH}/g' src/bindings/python/CMakeLists.txt + sed -i 's/{RUBY_VENDOR_ARCH_DIR}/ENV{RUBY_VENDOR_ARCH_DIR}/g' src/bindings/ruby/CMakeLists.txt + export _REL_PYTHON_MODULE_PATH=$(toPythonPath $out) + export RUBY_VENDOR_ARCH_DIR=$out/lib/ruby/site-packages + ''; + + buildInputs = [ + cmake doxygen + imagemagick ffmpeg qt55.qtbase qt55.qtmultimedia swig python3 ruby + unittest-cpp + ]; + + LIBOPENSHOT_AUDIO_DIR = "${libopenshot_audio}"; + "UNITTEST++_INCLUDE_DIR" = "${unittest-cpp}/include/UnitTest++"; + + doCheck = false; + + meta = { + homepage = "http://openshot.org/"; + description = "Free, open-source video editor"; + license = licenses.gpl3Plus; + maintainers = [maintainers.tohl]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 711a389cb8c..93ab72fbb73 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4753,6 +4753,8 @@ in jdk = if stdenv.isDarwin then self.jdk7 else self.jdk8; jre = if stdenv.isDarwin then self.jre7 else self.jre8; + openshot-qt = callPackage ../applications/video/openshot-qt { }; + oraclejdk = self.jdkdistro true false; oraclejdk7 = self.oraclejdk7distro true false; From d078844ca62c669468b818fbe59b8ac6c5d2aab3 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sun, 17 Jul 2016 09:04:30 +0200 Subject: [PATCH 341/508] update puredata --- pkgs/applications/audio/puredata/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/puredata/default.nix b/pkgs/applications/audio/puredata/default.nix index 8fddcccd51c..8ad982880ef 100644 --- a/pkgs/applications/audio/puredata/default.nix +++ b/pkgs/applications/audio/puredata/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "puredata-${version}"; - version = "0.45-4"; + version = "0.47-1"; src = fetchurl { url = "mirror://sourceforge/pure-data/pd-${version}.src.tar.gz"; - sha256 = "1ls2ap5yi2zxvmr247621g4jx0hhfds4j5704a050bn2n3l0va2p"; + sha256 = "0k5s949kqd7yw97h3m8z81bjz32bis9m4ih8df1z0ymipnafca67"; }; patchPhase = '' From 5431ffee4c5de99ab583686b0e13b22183d17adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Sun, 17 Jul 2016 18:54:29 +0200 Subject: [PATCH 342/508] puredata: fix url Downloads have been moved from sourceforge to msp.ucsd.edu --- pkgs/applications/audio/puredata/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/puredata/default.nix b/pkgs/applications/audio/puredata/default.nix index 8ad982880ef..daa017d1ccb 100644 --- a/pkgs/applications/audio/puredata/default.nix +++ b/pkgs/applications/audio/puredata/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { version = "0.47-1"; src = fetchurl { - url = "mirror://sourceforge/pure-data/pd-${version}.src.tar.gz"; + url = "http://msp.ucsd.edu/Software/pd-${version}.src.tar.gz"; sha256 = "0k5s949kqd7yw97h3m8z81bjz32bis9m4ih8df1z0ymipnafca67"; }; From 23c1d17e9d555a2855fc000e3458e05c0991832f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Sun, 17 Jul 2016 19:08:07 +0200 Subject: [PATCH 343/508] puremapping: update 1.01 -> 20160130 --- pkgs/applications/audio/pd-plugins/puremapping/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/pd-plugins/puremapping/default.nix b/pkgs/applications/audio/pd-plugins/puremapping/default.nix index 2e9a37a2f0d..4f285552576 100644 --- a/pkgs/applications/audio/pd-plugins/puremapping/default.nix +++ b/pkgs/applications/audio/pd-plugins/puremapping/default.nix @@ -1,12 +1,13 @@ { stdenv, fetchurl, unzip, puredata }: stdenv.mkDerivation rec { - name = "puremapping-1.01"; + name = "puremapping-${version}"; + version = "20160130"; src = fetchurl { - url = "http://www.chnry.net/ch/IMG/zip/puremapping-libdir-generic.zip"; + url = "http://www.chnry.net/data/puremapping-${version}-generic.zip"; name = "puremapping"; - sha256 = "1ygzxsfj3rnzjkpmgi4wch810q8s5vm1gdam6a938hbbvamafgvc"; + sha256 = "1h7qgqd8srrxw2y1rkdw5js4k6f5vc8x6nlm2mq9mq9vjck7n1j7"; }; buildInputs = [ unzip puredata ]; From f4ea97ae90c86f715f18579d823b2bb42cb6c28c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 17 Jul 2016 22:44:54 +0300 Subject: [PATCH 344/508] Revert "nixos/tests/installer: Fix matching LUKS prompt" This reverts commit ec072cbc4c87edd4ece210121dba83abeff0a018. See also 193ab8be67ef941321e6b079db7e73b1d04cf9a8 --- nixos/tests/installer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 95fd4d5f2c2..4a30cc18b02 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -365,7 +365,7 @@ in { enableOCR = true; preBootCommands = '' $machine->start; - $machine->waitForText(qr/Enter LUKS Passphrase/i); + $machine->waitForText(qr/Enter passphrase/); $machine->sendChars("supersecret\n"); ''; }; From 540f4a8eab0718d3c8a19c827669e676fa97300e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 17 Jul 2016 21:49:41 +0200 Subject: [PATCH 345/508] gimp: security 2.8.16 -> 2.8.18 Fixes CVE-2016-4994 and some bugs: http://www.gimp.org/news/2016/07/14/gimp-2-8-18-released/ --- pkgs/applications/graphics/gimp/2.8.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/gimp/2.8.nix b/pkgs/applications/graphics/gimp/2.8.nix index 5943cb9cdac..27d7376fe52 100644 --- a/pkgs/applications/graphics/gimp/2.8.nix +++ b/pkgs/applications/graphics/gimp/2.8.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "gimp-${version}"; - version = "2.8.16"; + version = "2.8.18"; # This declarations for `gimp-with-plugins` wrapper, # (used for determining $out/lib/gimp/${majorVersion}/ paths) @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.gimp.org/pub/gimp/v2.8/${name}.tar.bz2"; - sha256 = "1dsgazia9hmab8cw3iis7s69dvqyfj5wga7ds7w2q5mms1xqbqwm"; + sha256 = "0halh6sl3d2j9gahyabj6h6r3yyldcy7sfb4qrfazpkqqr3j5p9r"; }; buildInputs = From 08fe3950745412b79af0452133eea111c8cd2621 Mon Sep 17 00:00:00 2001 From: obadz Date: Sun, 17 Jul 2016 21:16:58 +0100 Subject: [PATCH 346/508] nixos/tests/installer.nix: add curl on host machine add curl so that rather than seeing the test attempt to download curl's tarball, we see what it's trying to download. --- nixos/tests/installer.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 4a30cc18b02..e71168a7366 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -210,6 +210,10 @@ let pkgs.nixos-artwork pkgs.perlPackages.XMLLibXML pkgs.perlPackages.ListCompare + + # add curl so that rather than seeing the test attempt to download + # curl's tarball, we see what it's trying to download + pkgs.curl ] ++ optional (bootLoader == "grub" && grubVersion == 1) pkgs.grub ++ optionals (bootLoader == "grub" && grubVersion == 2) [ pkgs.grub2 pkgs.grub2_efi ]; From 1df37fe7a888836dc683cc24d57759147921a7f7 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Sun, 17 Jul 2016 13:22:56 -0700 Subject: [PATCH 347/508] mendeley: fix sha --- pkgs/applications/office/mendeley/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix index 529c41ec899..5ad6df96325 100644 --- a/pkgs/applications/office/mendeley/default.nix +++ b/pkgs/applications/office/mendeley/default.nix @@ -19,7 +19,7 @@ let url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb"; sha256 = if stdenv.system == arch32 then "0lsmaw8zzyfvndsz1awz3vl5cdvsik9wc3ck8983y20awh7r9f4m" - else "12p6rgxiqajnfgd8nmknyb8icdkln727sshba8x1xlxakxg5c4q4"; + else "0q11v6dv7z5q4s9hlr1hmsd73nmkp8l0sj0b3hjxfblx4mqk6wl7"; deps = [ gcc.cc From a93c6b628d5a318899733a3734d173645e15ae90 Mon Sep 17 00:00:00 2001 From: Tomas Hlavaty Date: Sun, 17 Jul 2016 22:00:11 +0200 Subject: [PATCH 348/508] sbcl: 1.3.6 -> 1.3.7 --- pkgs/development/compilers/sbcl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index e9a1624df1d..296f81d271d 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { name = "sbcl-${version}"; - version = "1.3.6"; + version = "1.3.7"; src = fetchurl { url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; - sha256 = "1ndha72ji30qkq3rq76sp0yrka0679agg97x9imda2pyv0dsq5zh"; + sha256 = "0fjdqnb2rsm2vi9794ywp27jr239ddvzc4xfr0dk49jd4v7p2kc5"; }; patchPhase = '' From 9ff51cc3c424b814c38961cc7c69351de4051b48 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Mon, 18 Jul 2016 07:12:17 +0300 Subject: [PATCH 349/508] imagemagick: 6.9.3-9 -> 6.9.5-2 (#16958) --- .../graphics/ImageMagick/default.nix | 4 ++-- .../graphics/ImageMagick/imagetragick.patch | 19 ++++++------------- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index e73cc9024c6..fd218f99a30 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -11,7 +11,7 @@ let else throw "ImageMagick is not supported on this platform."; cfg = { - version = "6.9.3-9"; + version = "6.9.5-2"; sha256 = "0q19jgn1iv7zqrw8ibxp4z57iihrc9kyb09k2wnspcacs6vrvinf"; patches = []; } @@ -23,7 +23,7 @@ let name = "mingw-build.patch"; url = "https://raw.githubusercontent.com/Alexpux/MINGW-packages/" + "01ca03b2a4ef/mingw-w64-imagemagick/002-build-fixes.patch"; - sha256 = "1pypszlcx2sf7wfi4p37w1y58ck2r8cd5b2wrrwr9rh87p7fy1c0"; + sha256 = "09h3rpr1jnzd7ipy5d16r2gi0bwg4hk5khwzv4cyhv1xzs8pk7pj"; })]; }; in diff --git a/pkgs/applications/graphics/ImageMagick/imagetragick.patch b/pkgs/applications/graphics/ImageMagick/imagetragick.patch index bdb152dd23a..1b2de5e7350 100644 --- a/pkgs/applications/graphics/ImageMagick/imagetragick.patch +++ b/pkgs/applications/graphics/ImageMagick/imagetragick.patch @@ -1,15 +1,8 @@ -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 @@ - - - -+ -+ -+ -+ -+ -+ - +67a68,72 +> +> +> +> +> From b1ff7f83ef5c8a72a4a9009be3efdf93d939743b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 18 Jul 2016 06:18:44 +0200 Subject: [PATCH 350/508] imagemagick: fix hashes See #16958. --- 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 fd218f99a30..793940a8878 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -12,7 +12,7 @@ let cfg = { version = "6.9.5-2"; - sha256 = "0q19jgn1iv7zqrw8ibxp4z57iihrc9kyb09k2wnspcacs6vrvinf"; + sha256 = "09h3rpr1jnzd7ipy5d16r2gi0bwg4hk5khwzv4cyhv1xzs8pk7pj"; patches = []; } # Freeze version on mingw so we don't need to port the patch too often. @@ -23,7 +23,7 @@ let name = "mingw-build.patch"; url = "https://raw.githubusercontent.com/Alexpux/MINGW-packages/" + "01ca03b2a4ef/mingw-w64-imagemagick/002-build-fixes.patch"; - sha256 = "09h3rpr1jnzd7ipy5d16r2gi0bwg4hk5khwzv4cyhv1xzs8pk7pj"; + sha256 = "1pypszlcx2sf7wfi4p37w1y58ck2r8cd5b2wrrwr9rh87p7fy1c0"; })]; }; in From dc05af3284ef5fab3bf0e57f2358e12aaa5d4a19 Mon Sep 17 00:00:00 2001 From: Miguel Madrid Date: Mon, 18 Jul 2016 06:36:35 +0200 Subject: [PATCH 351/508] fzf: 0.13.2 -> 0.13.3 (#17013) --- pkgs/tools/misc/fzf/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix index e8c8d9830c7..6ba2b881784 100644 --- a/pkgs/tools/misc/fzf/default.nix +++ b/pkgs/tools/misc/fzf/default.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "fzf-${version}"; - version = "0.13.2"; + version = "0.13.3"; rev = "${version}"; goPackagePath = "github.com/junegunn/fzf"; @@ -11,13 +11,13 @@ buildGoPackage rec { inherit rev; owner = "junegunn"; repo = "fzf"; - sha256 = "12dr0wib2ajs64a8d3l3zmgj2y8rklkc3xrvgscxgiv29lrlmvfz"; + sha256 = "0mfrlb91akzrj0qpjpaa9bkp6m9z95z56glamry73qy21vbnj58m"; }; buildInputs = [ ncurses ]; goDeps = ./deps.json; - + patchPhase = '' sed -i -e "s|expand(':h:h').'/bin/fzf'|'$bin/bin/fzf'|" plugin/fzf.vim sed -i -e "s|expand(':h:h').'/bin/fzf-tmux'|'$bin/bin/fzf-tmux'|" plugin/fzf.vim @@ -28,4 +28,11 @@ buildGoPackage rec { mkdir -p $out/share/vim-plugins ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name} ''; + + meta = with stdenv.lib; { + homepage = https://github.com/junegunn/fzf; + description = "A command-line fuzzy finder written in Go"; + license = licenses.mit; + platforms = platforms.unix; + }; } From afba229b20f3dc12c7e6ee4461b2b8777f53639e Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 6 Jul 2016 09:44:18 +0200 Subject: [PATCH 352/508] pidgin-im-gnome-shell-extension: 1.0 -> 1.0.1 --- pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix index 64f7920d9af..e3f6bca10a4 100644 --- a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix +++ b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, glib }: stdenv.mkDerivation rec { - version = "1.0"; + version = "1.0.1"; basename = "pidgin-im-gnome-shell-extension"; name = "${basename}-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { owner = "muffinmad"; repo = "${basename}"; rev = "v${version}"; - sha256 = "0vj4w9qqx9gads24w3f6v6mfh5va28bp8rc4w7lz0vhp7njmy1yy"; + sha256 = "1567s2sfqig4jw0nrn134f5vkx0yq31q044grv3xk4vpl1f3z2lr"; }; buildInputs = [ glib ]; From 1c0465828c7e762d512774ecea814b7cb61c6b9a Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Mon, 18 Jul 2016 13:01:34 +0800 Subject: [PATCH 353/508] emem: 0.2.16 -> 0.2.18 --- pkgs/applications/misc/emem/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/emem/default.nix b/pkgs/applications/misc/emem/default.nix index 27736713024..b1ba9831c63 100644 --- a/pkgs/applications/misc/emem/default.nix +++ b/pkgs/applications/misc/emem/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "emem"; - version = "0.2.16"; + version = "0.2.18"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar"; - sha256 = "1j6i40mcfwcx85zv0pxpwrqj0zy9s5qd7j63zdqf0lckkjvyrih9"; + sha256 = "090sd1q345xlari267j4k27lglnch26dkwa9pibb1q70hdygv0w8"; }; buildInputs = [ ]; From 60232e6c947e30afd4b367780cba18e4d67790c5 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Sun, 17 Jul 2016 23:57:32 +0300 Subject: [PATCH 354/508] vis: 2016-04-15 -> 2016-07-15 --- pkgs/applications/editors/vis/default.nix | 35 ++++++++++++++--------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/editors/vis/default.nix b/pkgs/applications/editors/vis/default.nix index 8c7cf73f432..496f04142e1 100644 --- a/pkgs/applications/editors/vis/default.nix +++ b/pkgs/applications/editors/vis/default.nix @@ -1,12 +1,18 @@ -{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper, ncurses, libtermkey, lpeg, lua }: +{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper +, ncurses, libtermkey, lpeg, lua +, acl ? null, libselinux ? null +, version ? "2016-07-15" +, rev ? "5c2cee9461ef1199f2e80ddcda699595b11fdf08" +, sha256 ? "1jmsv72hq0c2f2rnpllvd70cmxbjwfhynzwaxx24f882zlggwsnd" +}: stdenv.mkDerivation rec { name = "vis-nightly-${version}"; - version = "2016-04-15"; + inherit version; src = fetchFromGitHub { - sha256 = "0a4gpwniy5r9dpfq51fxjxxnxavdjv8x76w9bbjnbnh8n63p3sj7"; - rev = "472c559a273d3c7b0f5ee92260c5544bc3d74576"; + inherit sha256; + inherit rev; repo = "vis"; owner = "martanne"; }; @@ -14,12 +20,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; buildInputs = [ - unzip - pkgconfig - ncurses - libtermkey - lua - lpeg + unzip pkgconfig + ncurses + libtermkey + lua + lpeg + ] ++ stdenv.lib.optional stdenv.isLinux [ + acl + libselinux ]; LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;"; @@ -33,11 +41,10 @@ stdenv.mkDerivation rec { --prefix VIS_PATH : "$out/share/vis" ''; - meta = { + meta = with stdenv.lib; { description = "A vim like editor"; homepage = http://github.com/martanne/vis; - license = stdenv.lib.licenses.isc; - maintainers = [ stdenv.lib.maintainers.vrthra ]; + license = licenses.isc; + maintainers = [ maintainers.vrthra ]; }; } - From d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5 Mon Sep 17 00:00:00 2001 From: vbgl Date: Mon, 18 Jul 2016 11:33:51 +0200 Subject: [PATCH 355/508] coq: 8.5pl1 -> 8.5pl2 (#16863) --- pkgs/applications/science/logic/coq/8.5.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix index 1485626125d..eb74891f511 100644 --- a/pkgs/applications/science/logic/coq/8.5.nix +++ b/pkgs/applications/science/logic/coq/8.5.nix @@ -6,7 +6,7 @@ {stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}: let - version = "8.5pl1"; + version = "8.5pl2"; coq-version = "8.5"; buildIde = lablgtk != null; ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else ""; @@ -24,7 +24,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://coq.inria.fr/distrib/V${version}/files/coq-${version}.tar.gz"; - sha256 = "1w2xvm6w16khfn63bp95s25hnkn2ny3w0yqg3lq63gp11aqpbyjb"; + sha256 = "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3"; }; buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ]; @@ -34,7 +34,7 @@ stdenv.mkDerivation { RM=$(type -tp rm) substituteInPlace configure --replace "/bin/uname" "$UNAME" substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM" - substituteInPlace configure.ml --replace "if arch = \"Darwin\" then \"md5" "if arch = \"Darwinx\" then \"md5" + substituteInPlace configure.ml --replace "if arch = \"Darwin\" || arch = \"FreeBSD\" then \"md5" "if arch = \"Darwinx\" then \"md5" ${csdpPatch} ''; From 01753f247052ba83e4be8df8c8af662ce9993979 Mon Sep 17 00:00:00 2001 From: Wayne Scott Date: Mon, 18 Jul 2016 04:49:16 -0500 Subject: [PATCH 356/508] nixpkgs: update libtomcrypt url Signed-off-by: Austin Seipp --- pkgs/development/libraries/libtomcrypt/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libtomcrypt/default.nix b/pkgs/development/libraries/libtomcrypt/default.nix index e960f5ef57f..896c907bbc8 100644 --- a/pkgs/development/libraries/libtomcrypt/default.nix +++ b/pkgs/development/libraries/libtomcrypt/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "libtomcrypt-1.17"; src = fetchurl { - url = "http://libtom.org/files/crypt-1.17.tar.bz2"; + url = "https://github.com/libtom/libtomcrypt/releases/download/1.17/crypt-1.17.tar.bz2"; sha256 = "e33b47d77a495091c8703175a25c8228aff043140b2554c08a3c3cd71f79d116"; }; From a05e51d17aa75bde7038035606d2f9a33476271a Mon Sep 17 00:00:00 2001 From: Wayne Scott Date: Mon, 18 Jul 2016 04:49:44 -0500 Subject: [PATCH 357/508] nixpkgs: libtommath 0.39 -> 1.0 Signed-off-by: Austin Seipp --- pkgs/development/libraries/libtommath/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libtommath/default.nix b/pkgs/development/libraries/libtommath/default.nix index d76237e141d..8e9b79b39d3 100644 --- a/pkgs/development/libraries/libtommath/default.nix +++ b/pkgs/development/libraries/libtommath/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, libtool}: stdenv.mkDerivation { - name = "libtommath-0.39"; + name = "libtommath-1.0"; src = fetchurl { - url = http://math.libtomcrypt.com/files/ltm-0.39.tar.bz2; - sha256 = "1kjx8rrw62nanzc5qp8fj6r3ybhw8ca60ahkyb70f10aiij49zs2"; + url = https://github.com/libtom/libtommath/releases/download/v1.0/ltm-1.0.tar.xz; + sha256 = "0v5mpd8zqjfs2hr900w1mxifz23xylyjdqyx1i1wl7q9xvwpsflr"; }; buildInputs = [libtool]; From af056de900b82d7406925df13af9c87f3e4c49ae Mon Sep 17 00:00:00 2001 From: Wayne Scott Date: Mon, 18 Jul 2016 04:58:59 -0500 Subject: [PATCH 358/508] nixpkgs: add bitkeeper-7.3ce Closes #16928. Signed-off-by: Austin Seipp --- .../version-management/bitkeeper/default.nix | 52 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 54 insertions(+) create mode 100644 pkgs/applications/version-management/bitkeeper/default.nix diff --git a/pkgs/applications/version-management/bitkeeper/default.nix b/pkgs/applications/version-management/bitkeeper/default.nix new file mode 100644 index 00000000000..9b487643910 --- /dev/null +++ b/pkgs/applications/version-management/bitkeeper/default.nix @@ -0,0 +1,52 @@ +{ stdenv, fetchurl, perl, gperf, bison, groff +, pkgconfig, libXft, fontconfig, pcre +, libtomcrypt, libtommath, lz4, zlib }: + +stdenv.mkDerivation rec { + name = "bitkeeper-${version}"; + version = "7.3ce"; + + src = fetchurl { + url = "https://www.bitkeeper.org/downloads/${version}/bk-${version}.tar.gz"; + sha256 = "0lk4vydpq5bi52m81h327gvzdzybf8kkak7yjwmpj6kg1jn9blaz"; + }; + + enableParallelBuilding = true; + + buildInputs = [ + perl gperf bison groff libXft pkgconfig + pcre libtomcrypt libtommath lz4 + ]; + + postPatch = '' + substituteInPlace port/unix_platform.sh \ + --replace /bin/rm rm + substituteInPlace ./undo.c \ + --replace /bin/cat cat + ''; + + sourceRoot = "bk-${version}/src"; + buildPhase = '' + make -j6 V=1 p + make image + ''; + + installPhase = '' + ./utils/bk-* $out/bitkeeper + mkdir -p $out/bin + $out/bitkeeper/bk links $out/bin + chmod g-w $out + ''; + + meta = { + description = "A distributed version control system"; + longDescription = '' + BitKeeper is a fast, enterprise-ready, distributed SCM that + scales up to very large projects and down to tiny ones. + ''; + homepage = https://www.bitkeeper.org/; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.unix; + maintainers = with stdenv.lib.maintainers; [ wscott thoughtpolice ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5205492796d..6e7779bdd0d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12241,6 +12241,8 @@ in bibletime = callPackage ../applications/misc/bibletime { }; + bitkeeper = callPackage ../applications/version-management/bitkeeper { }; + bitlbee = callPackage ../applications/networking/instant-messengers/bitlbee { }; bitlbee-plugins = callPackage ../applications/networking/instant-messengers/bitlbee/plugins.nix { }; From 36459f19777c788ee4bdc0506aba713ff650815e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gammels=C3=A6ter?= Date: Mon, 18 Jul 2016 12:35:13 +0200 Subject: [PATCH 359/508] mypy-lang: 0.4.2 -> 0.4.3 (#17058) --- pkgs/development/tools/mypy-lang/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/mypy-lang/default.nix b/pkgs/development/tools/mypy-lang/default.nix index d5baf994944..ebce2b86c1f 100644 --- a/pkgs/development/tools/mypy-lang/default.nix +++ b/pkgs/development/tools/mypy-lang/default.nix @@ -2,14 +2,14 @@ python35Packages.buildPythonApplication rec { name = "mypy-lang-${version}"; - version = "0.4.2"; + version = "0.4.3"; # Tests not included in pip package. doCheck = false; src = fetchurl { url = "mirror://pypi/m/mypy-lang/${name}.tar.gz"; - sha256 = "12vwgzbpv0n403dvzas5ckw0f62slqk5j3024y65hi9n95r34rws"; + sha256 = "11d8195xg8hksyh2qapbv66jvjgfpjwkc61nwljcfq9si144f2nb"; }; propagatedBuildInputs = with python35Packages; [ lxml ]; From 86ad25625f7fb6867e515cb09d1da40834f75a9a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 7 Jul 2016 00:44:02 +0300 Subject: [PATCH 360/508] nixos stage-1: add custom pre failure dialog commands --- nixos/modules/system/boot/stage-1-init.sh | 2 ++ nixos/modules/system/boot/stage-1.nix | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index d4277ebd80c..7705dcb2d12 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -14,6 +14,8 @@ export LVM_SUPPRESS_FD_WARNINGS=true fail() { if [ -n "$panicOnFail" ]; then exit 1; fi + @preFailCommands@ + # If starting stage 2 failed, allow the user to repair the problem # in an interactive shell. cat < Date: Mon, 18 Jul 2016 13:42:26 +0300 Subject: [PATCH 361/508] plymouth service: style fixes --- nixos/modules/system/boot/plymouth.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix index 82c1032937c..1d4d52750e0 100644 --- a/nixos/modules/system/boot/plymouth.nix +++ b/nixos/modules/system/boot/plymouth.nix @@ -112,6 +112,7 @@ in sed -i '/loginctl/d' $out/71-seat.rules ''; + # We use `mkAfter` to ensure that LUKS password prompt would be shown earlier than the splash screen. boot.initrd.preLVMCommands = mkAfter '' mkdir -p /etc/plymouth ln -s ${configFile} /etc/plymouth/plymouthd.conf @@ -121,7 +122,7 @@ in ln -s $extraUtils/lib/plymouth /etc/plymouth/plugins plymouthd --mode=boot --pid-file=/run/plymouth/pid --attach-to-session - plymouth --show-splash + plymouth show-splash ''; }; From 7513a1d2f5b85d75e1d57bd18feb29a90a2f6f5d Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 18 Jul 2016 13:40:41 +0300 Subject: [PATCH 362/508] plymouth service: update root fs before stage 2 --- nixos/modules/system/boot/plymouth.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix index 1d4d52750e0..0552338bd2a 100644 --- a/nixos/modules/system/boot/plymouth.nix +++ b/nixos/modules/system/boot/plymouth.nix @@ -125,6 +125,10 @@ in plymouth show-splash ''; + boot.initrd.postMountCommands = '' + plymouth update-root-fs --new-root-dir="$targetRoot" + ''; + }; } From 3d69653d6b698928f225418e4a5e1b4f621b4dbe Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 18 Jul 2016 13:43:38 +0300 Subject: [PATCH 363/508] plymouth service: stop splash screen before a failure prompt --- nixos/modules/system/boot/plymouth.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix index 0552338bd2a..60a587af8e9 100644 --- a/nixos/modules/system/boot/plymouth.nix +++ b/nixos/modules/system/boot/plymouth.nix @@ -129,6 +129,11 @@ in plymouth update-root-fs --new-root-dir="$targetRoot" ''; + # `mkBefore` to ensure that any custom prompts would be visible. + boot.initrd.preFailCommands = mkBefore '' + plymouth quit --wait + ''; + }; } From 05274e53f8fc84df77ee64e853e73bd925eca819 Mon Sep 17 00:00:00 2001 From: kc1212 Date: Mon, 18 Jul 2016 22:46:47 +1200 Subject: [PATCH 364/508] syncthing: 0.13.9 -> 0.13.10 (#16912) --- pkgs/applications/networking/syncthing/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix index 87d74aeafd8..b6d318011aa 100644 --- a/pkgs/applications/networking/syncthing/default.nix +++ b/pkgs/applications/networking/syncthing/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchgit, go }: stdenv.mkDerivation rec { - version = "0.13.9"; + version = "0.13.10"; name = "syncthing-${version}"; src = fetchgit { url = https://github.com/syncthing/syncthing; rev = "refs/tags/v${version}"; - sha256 = "1ah3a86rjfqlx4mqyvn8j3r806i65mzhs5xnfg4aakzmwpr5zpx0"; + sha256 = "07q3j6mnrza719rnvbkdsmvlkyr2pch5sj2l204m5iy5mxaghpx7"; }; buildInputs = [ go ]; From f976ba1b88fc46ed55ded7026855d635a58baa4c Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Mon, 18 Jul 2016 03:49:08 -0700 Subject: [PATCH 365/508] etcd: 2.3.0 -> 2.3.7 (#16896) --- pkgs/servers/etcd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/etcd/default.nix b/pkgs/servers/etcd/default.nix index 782d7001dee..2c76dfc8e31 100644 --- a/pkgs/servers/etcd/default.nix +++ b/pkgs/servers/etcd/default.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "etcd-${version}"; - version = "2.3.0"; + version = "2.3.7"; rev = "v${version}"; goPackagePath = "github.com/coreos/etcd"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "coreos"; repo = "etcd"; - sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7"; + sha256 = "07rdnhcpnvnkxj5pqacxz669rzn5vw2i1zmf6dd4nv7wpfscdw9f"; }; goDeps = ./deps.json; From a89623339654e3ed316308043dbce086fad4d153 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 18 Jul 2016 07:11:18 -0400 Subject: [PATCH 366/508] jags: 3.4.0 -> 4.1.0 (#16804) * jags: 3.4.0 -> 4.1.0 * unbreak rjags and dependent packages --- .../science/math/jags/default.nix | 4 +-- pkgs/development/r-modules/default.nix | 27 +++---------------- 2 files changed, 5 insertions(+), 26 deletions(-) diff --git a/pkgs/applications/science/math/jags/default.nix b/pkgs/applications/science/math/jags/default.nix index 9d70d268691..ceebfa458a8 100644 --- a/pkgs/applications/science/math/jags/default.nix +++ b/pkgs/applications/science/math/jags/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl, gfortran, openblas}: stdenv.mkDerivation rec { - name = "JAGS-3.4.0"; + name = "JAGS-4.1.0"; src = fetchurl { url = "mirror://sourceforge/mcmc-jags/${name}.tar.gz"; - sha256 = "0ayqsz9kkmbss7mxlwr34ch2z1vsb65lryjzqpprab1ccyiaksib"; + sha256 = "08pmrnbwibc0brgn5cx860jcl0s2xaw4amw7g45649r1bcdz7v25"; }; buildInputs = [gfortran openblas]; configureFlags = [ "--with-blas=-lopenblas" "--with-lapack=-lopenblas" ]; diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index c7eeb431bb6..92b3dc3c71c 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -1137,18 +1137,7 @@ let "choroplethr" # depends on broken package acs "acs" # broken build "spray" # depends on broken package partitions - "simmr" # depends on broken package rjags - "morse" # depends on broken package rjags - "gemtc" # depends on broken package rjags - "EasyMARK" # depends on broken package rjags - "PVAClone" # depends on broken package rjags - "sharx" # depends on broken package rjags - "dcmle" # depends on broken package rjags - "dclone" # depends on broken package rjags - "CNVrd2" # depends on broken package rjags - "bayescount" # depends on broken package rjags - "BANOVA" # depends on broken package rjags - "rjags" # broken build + "CNVrd2" # broken build "proteoQC" # depends on broken package rTANDEM "PGA" # depends on broken package rTANDEM "MBESS" # depends on broken package OpenMx @@ -1211,13 +1200,11 @@ let "ARTool" # depends on broken package nlopt "AssetPricing" # broken build "AtelieR" # broken build - "auRoc" # depends on broken package rjags + "auRoc" # depends on broken package MBESS "AutoModel" # depends on broken package car "bamdit" # broken build - "BANOVA" # broken build "bapred" # depends on broken package lme4 "bartMachine" # depends on broken package nlopt - "bayescount" # broken build "bayesDem" # depends on broken package nlopt "bayesLife" # depends on broken package nlopt "BayesMed" # broken build @@ -1283,7 +1270,6 @@ let "covmat" # depends on broken package VIM "cplexAPI" # build is broken "cquad" # depends on broken package car - "crmPack" # depends on broken package rjags "CrypticIBDcheck" # depends on broken package nlopt "ctsem" # depends on broken package OpenMx "cudaBayesreg" # build is broken @@ -1293,7 +1279,7 @@ let "datafsm" # depends on broken package caret "dbConnect" # broken build "DBKGrad" # depends on broken package rpanel - "dcmle" # broken build + #"dcmle" # broken build "ddst" # broken build "Deducer" # depends on broken package nlopt "DeducerExtras" # depends on broken package nlopt @@ -1318,7 +1304,6 @@ let "drsmooth" # depends on broken package nlopt "dynlm" # depends on broken package nlopt "easyanova" # depends on broken package nlopt - "EasyMARK" # broken build "ecd" # depends on broken package polynom "edge" # depends on broken package nlopt "eeptools" # depends on broken package nlopt @@ -1370,7 +1355,6 @@ let "gcmr" # depends on broken package nlopt "GDAtools" # depends on broken package nlopt "gdtools" # broken build - "gemtc" # broken build "GENE_E" # depends on broken package rhdf5 "GENESIS" # broken build "genridge" # depends on broken package nlopt @@ -1499,7 +1483,6 @@ let "mlVAR" # depends on broken package nlopt "MM" # broken build "mongolite" # build is broken - "morse" # broken build "mosaic" # depends on broken package nlopt "mpoly" # broken build "mRMRe" # broken build @@ -1577,7 +1560,6 @@ let "PSAboot" # depends on broken package nlopt "ptw" # depends on broken nloptr "PurBayes" # broken build - "PVAClone" # broken build "pvca" # depends on broken package nlopt "PythonInR" # broken build "QFRM" # broken build @@ -1664,7 +1646,6 @@ let "Rgnuplot" # broken build "rhdf5" # build is broken "rjade" # depends on broken package V8 - "rjags" # broken build "rJPSGCS" # build is broken "rLindo" # build is broken "RLRsim" # depends on broken package lme4 @@ -1724,10 +1705,8 @@ let "seqHMM" # depends on broken package nloptr "seqTools" # build is broken "SharpeR" # broken build - "sharx" # broken build "shinyTANDEM" # depends on broken package rTANDEM "SIBER" # broken build - "simmr" # broken build "simPop" # depends on broken package VIM "simr" # depends on broken package lme4 "SJava" # broken build From b18dde4593fcf2789031ca185e4fe7e55670cb55 Mon Sep 17 00:00:00 2001 From: Johannes Bornhold Date: Mon, 18 Jul 2016 13:35:20 +0200 Subject: [PATCH 367/508] s3cmd: Fix file library path for darwin --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4d012da4f90..f1f4866e67a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12417,7 +12417,7 @@ in modules // { propagatedBuildInputs = with self; [ pkgs.file ]; patchPhase = '' - substituteInPlace magic.py --replace "ctypes.util.find_library('magic')" "'${pkgs.file}/lib/libmagic.so'" + substituteInPlace magic.py --replace "ctypes.util.find_library('magic')" "'${pkgs.file}/lib/libmagic.${if stdenv.isDarwin then "dylib" else "so"}'" ''; doCheck = false; From 32744b72e5a048fea7250c444e73d2c0b605d50b Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 21 Jun 2016 20:19:13 -0500 Subject: [PATCH 368/508] disper: repair missing libXrandr and libX11 dependencies --- pkgs/tools/misc/disper/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/disper/default.nix b/pkgs/tools/misc/disper/default.nix index 777f7b48675..449f0f20b80 100644 --- a/pkgs/tools/misc/disper/default.nix +++ b/pkgs/tools/misc/disper/default.nix @@ -1,14 +1,19 @@ -{stdenv, fetchurl, python}: +{stdenv, fetchurl, python, xorg, makeWrapper}: stdenv.mkDerivation rec { name = "disper-0.3.1"; - buildInputs = [python]; + buildInputs = [python makeWrapper]; preConfigure = '' export makeFlags="PREFIX=$out" ''; + postInstall = '' + wrapProgram $out/bin/disper \ + --prefix "LD_LIBRARY_PATH" : "${xorg.libXrandr.out}/lib:${xorg.libX11.out}/lib" + ''; + src = fetchurl { url = http://ppa.launchpad.net/disper-dev/ppa/ubuntu/pool/main/d/disper/disper_0.3.1.tar.gz; sha256 = "1l8brcpfn4iascb454ym0wrv5kqyz4f0h8k6db54nc3zhfwy7vvw"; From 4063834f92c6fa1ce6063c789ed33ba3a3d7b839 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Mon, 18 Jul 2016 15:40:05 +0200 Subject: [PATCH 369/508] vagrant: 1.8.1 -> 1.8.4 --- pkgs/development/tools/vagrant/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index c970b319a94..6dfbb6978db 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -4,7 +4,7 @@ assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"; let - version = "1.8.1"; + version = "1.8.4"; rake = buildRubyGem { inherit ruby; gemName = "rake"; @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { if stdenv.system == "x86_64-linux" then fetchurl { url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb"; - sha256 = "0gb999ql4kfxd9473cx3xn6a11094dm4iyrx1dzd9v2sygh1l3pd"; + sha256 = "fd38d8e00e494a617201facb42fc2cac627e5021db15e91c2a041eac6a2d8208"; } else fetchurl { url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_i686.deb"; - sha256 = "1nzg6i9i270xgaih381q096lb23rwxkif4ba9j62y3zjmj6az4xf"; + sha256 = "555351717cacaa8660821df8988cc40a39923b06b698fca6bb90621008aab06f"; }; meta = with stdenv.lib; { @@ -97,12 +97,12 @@ stdenv.mkDerivation rec { preFixup = '' # 'hide' the template file from shebang-patching - chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable + chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.12.5/lib/bundler/templates/Executable chmod -x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh ''; postFixup = '' - chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable + chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.12.5/lib/bundler/templates/Executable chmod +x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh ''; } From e90ab768ce10bca72215de95edaf71cdb5b645ae Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Fri, 27 May 2016 14:17:11 +0200 Subject: [PATCH 370/508] libinput: Use absolute paths in udev rules. Closes #17054 --- pkgs/development/libraries/libinput/default.nix | 6 +++++- .../libraries/libinput/udev-absolute-path.patch | 12 ++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/libinput/udev-absolute-path.patch diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index a8dc8f357a7..0efee5b94f7 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -3,6 +3,7 @@ , documentationSupport ? false, doxygen ? null, graphviz ? null # Documentation , eventGUISupport ? false, cairo ? null, glib ? null, gtk3 ? null # GUI event viewer support , testsSupport ? false, check ? null, valgrind ? null +, autoconf, automake }: assert documentationSupport -> doxygen != null && graphviz != null; @@ -32,13 +33,16 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ libevdev mtdev libwacom ] + buildInputs = [ libevdev mtdev libwacom autoconf automake ] ++ optionals eventGUISupport [ cairo glib gtk3 ] ++ optionals documentationSupport [ doxygen graphviz ] ++ optionals testsSupport [ check valgrind ]; propagatedBuildInputs = [ udev ]; + patches = [ ./udev-absolute-path.patch ]; + patchFlags = [ "-p0" ]; + meta = { description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver"; homepage = http://www.freedesktop.org/wiki/Software/libinput; diff --git a/pkgs/development/libraries/libinput/udev-absolute-path.patch b/pkgs/development/libraries/libinput/udev-absolute-path.patch new file mode 100644 index 00000000000..2d3fa966b29 --- /dev/null +++ b/pkgs/development/libraries/libinput/udev-absolute-path.patch @@ -0,0 +1,12 @@ +--- configure.ac 2016-05-27 14:00:25.248388226 +0200 ++++ configure.ac 2016-05-27 14:01:28.228943416 +0200 +@@ -214,7 +214,8 @@ AM_CONDITIONAL(BUILD_DOCS, [test "x$buil + # Used by the udev rules so we can use callouts during testing without + # installing everything first. Default is the empty string so the installed + # rule will use udev's default path. Override is in udev/Makefile.am +-AC_SUBST(UDEV_TEST_PATH, "") ++UDEV_TEST_PATH="${UDEV_DIR}/" ++AC_SUBST(UDEV_TEST_PATH) + AC_PATH_PROG(SED, [sed]) + + AC_CONFIG_FILES([Makefile From 6f893694401fa3048eed94c865ed3f0038deac44 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 18 Jul 2016 15:27:08 +0300 Subject: [PATCH 371/508] libinput service: add libinput to udev packages See #17054 --- nixos/modules/services/x11/hardware/libinput.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/x11/hardware/libinput.nix b/nixos/modules/services/x11/hardware/libinput.nix index 12cc1e7e646..14c7131e611 100644 --- a/nixos/modules/services/x11/hardware/libinput.nix +++ b/nixos/modules/services/x11/hardware/libinput.nix @@ -198,6 +198,8 @@ in { environment.systemPackages = [ pkgs.xorg.xf86inputlibinput ]; + services.udev.packages = [ pkgs.libinput ]; + services.xserver.config = '' # Automatically enable the libinput driver for all touchpads. From 1e510fd87c792e3228cd7025139dcb92fac195f2 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 18 Jul 2016 10:55:02 -0400 Subject: [PATCH 372/508] oh-my-zsh: 2016-07-05 -> 2016-07-15 --- pkgs/shells/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index 5a1c74fe442..5bb3b1de7ed 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-07-05"; + version = "2016-07-15"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "644bc641ad48c74c88631d79d48ec9b6f3f5a3e5"; - sha256 = "1lmblfcd68pnc38bn6yjqs7sap5qinj37xv881a1rx4q0w38an07"; + rev = "96a2092e377139fbcd95d7b7ac703b740daa22f6"; + sha256 = "0v3hzpfj98mfz0y06qch2hf14iz0vpb9pfysw8hc4mnp0jzh5vz1"; }; phases = "installPhase"; From d8516b0fe3396f5c18f00a81108957b4a872e737 Mon Sep 17 00:00:00 2001 From: Stephen Whitmore Date: Mon, 18 Jul 2016 09:50:51 -0700 Subject: [PATCH 373/508] youtube-dl: 2016.07.09.2 -> 2016.07.17 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index b6f55bdcc20..12ecf11517c 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -12,11 +12,11 @@ buildPythonApplication rec { name = "youtube-dl-${version}"; - version = "2016.07.09.2"; + version = "2016.07.16"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${name}.tar.gz"; - sha256 = "0qs99ss1w22apx3n2173j5mly7h0ngfgkkgz07bn30235saf0fd3"; + sha256 = "017x2hqc2bacypjmn9ac9f91y9y6afydl0z7dich5l627494hvfg"; }; buildInputs = [ makeWrapper zip pandoc ]; From 0ca5879b5a9c28bfe4c2bce1559b94995ee6b5f0 Mon Sep 17 00:00:00 2001 From: Brandon Kase Date: Sat, 9 Jul 2016 17:26:19 -0700 Subject: [PATCH 374/508] vimPlugins: fix youcompleteme on darwin --- pkgs/misc/vim-plugins/default.nix | 7 ++-- .../patches/youcompleteme/1-top-cmake.patch | 14 ++++++++ .../patches/youcompleteme/2-ycm-cmake.patch | 36 +++++++++++++++++++ .../vim2nix/additional-nix-code/youcompleteme | 7 ++-- 4 files changed, 60 insertions(+), 4 deletions(-) create mode 100644 pkgs/misc/vim-plugins/patches/youcompleteme/1-top-cmake.patch create mode 100644 pkgs/misc/vim-plugins/patches/youcompleteme/2-ycm-cmake.patch diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 6c20cd66df1..b06f609bffa 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1159,8 +1159,11 @@ rec { llvmPackages.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; - propagatedBuildInputs = [ - rustracerd + propagatedBuildInputs = stdenv.lib.optional (!stdenv.isDarwin) rustracerd; + + patches = [ + ./patches/youcompleteme/1-top-cmake.patch + ./patches/youcompleteme/2-ycm-cmake.patch ]; buildPhase = '' diff --git a/pkgs/misc/vim-plugins/patches/youcompleteme/1-top-cmake.patch b/pkgs/misc/vim-plugins/patches/youcompleteme/1-top-cmake.patch new file mode 100644 index 00000000000..fddf91b1c57 --- /dev/null +++ b/pkgs/misc/vim-plugins/patches/youcompleteme/1-top-cmake.patch @@ -0,0 +1,14 @@ + +--- ./third_party/ycmd/cpp/CMakeLists.txt ++++ ./third_party/ycmd/cpp/CMakeLists.txt +@@ -121,8 +121,8 @@ + set( CPP11_AVAILABLE true ) + endif() + elseif( COMPILER_IS_CLANG ) +- set( CPP11_AVAILABLE true ) +- set( CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11" ) ++ #set( CPP11_AVAILABLE true ) ++ # set( CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11" ) + set( CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++" ) + endif() + diff --git a/pkgs/misc/vim-plugins/patches/youcompleteme/2-ycm-cmake.patch b/pkgs/misc/vim-plugins/patches/youcompleteme/2-ycm-cmake.patch new file mode 100644 index 00000000000..a1c4b1b39a4 --- /dev/null +++ b/pkgs/misc/vim-plugins/patches/youcompleteme/2-ycm-cmake.patch @@ -0,0 +1,36 @@ +--- ./third_party/ycmd/cpp/ycm/CMakeLists.txt ++++ ./third_party/ycmd/cpp/ycm/CMakeLists.txt +@@ -335,7 +335,7 @@ + COMMAND ${CMAKE_COMMAND} -E copy "${LIBCLANG_TARGET}" "$" + ) + +- if( APPLE ) ++ #if( APPLE ) + # In OS X El Capitan, Apple introduced System Integrity Protection. + # Amongst other things, this introduces features to the dynamic loader + # (dyld) which cause it to "sanitise" (and complain about) embedded +@@ -354,15 +354,15 @@ + # simply strip the rpath entry from the dylib. There's no way any + # @executable_path that python might have could be in any way useful to + # libclang.dylib, so this seems perfectly safe. +- get_filename_component( LIBCLANG_TAIL ${LIBCLANG_TARGET} NAME ) +- add_custom_command( TARGET ${PROJECT_NAME} +- POST_BUILD +- COMMAND install_name_tool +- "-delete_rpath" +- "@executable_path/../lib" +- "$/${LIBCLANG_TAIL}" +- ) +- endif() ++ # get_filename_component( LIBCLANG_TAIL ${LIBCLANG_TARGET} NAME ) ++ #add_custom_command( TARGET ${PROJECT_NAME} ++ # POST_BUILD ++ # COMMAND install_name_tool ++ # "-delete_rpath" ++ # "@executable_path/../lib" ++ # "$/${LIBCLANG_TAIL}" ++ # ) ++ # endif() + endif() + endif() + diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme index eb7f6bedf49..4b81be5205b 100644 --- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme +++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme @@ -4,8 +4,11 @@ llvmPackages.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; - propagatedBuildInputs = [ - rustracerd + propagatedBuildInputs = stdenv.lib.optional (!stdenv.isDarwin) rustracerd; + + patches = [ + ./patches/youcompleteme/1-top-cmake.patch + ./patches/youcompleteme/2-ycm-cmake.patch ]; buildPhase = '' From cb40b4aafdd6593b9cddbd1b11c3d89ac2a7096f Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Mon, 18 Jul 2016 19:11:51 +0200 Subject: [PATCH 375/508] pythonPackages: dulwich disable tests on darwin --- 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 b8eefafa4ad..7bdf5491746 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9359,6 +9359,8 @@ in modules // { # Only test dependencies buildInputs = with self; [ pkgs.git gevent geventhttpclient pkgs.glibcLocales mock fastimport ]; + doCheck = !stdenv.isDarwin; + meta = { description = "Simple Python implementation of the Git file formats and protocols"; homepage = http://samba.org/~jelmer/dulwich/; From 028e3d82df2255f08161b9a3647617d68767b861 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Thu, 14 Jul 2016 14:47:23 -0400 Subject: [PATCH 376/508] qrupdate: fix installation (darwin) The issue is that the library files were not copied to $out with the existing `installTargets` definition. I noticed this problem on darwin, but I do not know if it is a darwin-only problem. --- pkgs/development/libraries/qrupdate/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qrupdate/default.nix b/pkgs/development/libraries/qrupdate/default.nix index aaa9ab8a61a..89cf865be25 100644 --- a/pkgs/development/libraries/qrupdate/default.nix +++ b/pkgs/development/libraries/qrupdate/default.nix @@ -28,7 +28,9 @@ stdenv.mkDerivation { buildFlags = [ "lib" "solib" ]; - installTargets = "install"; + installTargets = if stdenv.isDarwin + then ["install-staticlib" "install-shlib"] + else "install"; buildInputs = [ gfortran openblas ]; } From 31a8eee841ba85d05ebfdb286cfad6a8de948d6c Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Tue, 28 Jun 2016 14:32:22 +0100 Subject: [PATCH 377/508] prometheus: Bump all to newest Disable tests for prometheus-node-exporter because one megacli test fails. Closes #16575. --- .../monitoring/prometheus/alertmanager.nix | 4 ++-- pkgs/servers/monitoring/prometheus/default.nix | 4 ++-- .../monitoring/prometheus/haproxy-exporter.nix | 4 ++-- .../monitoring/prometheus/mysqld-exporter.nix | 4 ++-- .../monitoring/prometheus/nginx-exporter.nix | 2 +- .../monitoring/prometheus/node-exporter.nix | 11 +++++------ .../prometheus/node-exporter_deps.json | 18 ------------------ .../monitoring/prometheus/pushgateway.nix | 6 +++--- .../monitoring/prometheus/statsd-bridge.nix | 8 ++++---- 9 files changed, 21 insertions(+), 40 deletions(-) delete mode 100644 pkgs/servers/monitoring/prometheus/node-exporter_deps.json diff --git a/pkgs/servers/monitoring/prometheus/alertmanager.nix b/pkgs/servers/monitoring/prometheus/alertmanager.nix index 330a528ef2f..9af52e08375 100644 --- a/pkgs/servers/monitoring/prometheus/alertmanager.nix +++ b/pkgs/servers/monitoring/prometheus/alertmanager.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "alertmanager-${version}"; - version = "0.1.0"; + version = "0.2.1"; rev = "${version}"; goPackagePath = "github.com/prometheus/alertmanager"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "prometheus"; repo = "alertmanager"; - sha256 = "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7"; + sha256 = "11gas19k4m483rvnfhzmcbkzzs7cfrn9cw7n7aa0g9yxdk91a1cx"; }; # Tests exist, but seem to clash with the firewall. diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix index 1fbcd50d733..1fd12f84e9f 100644 --- a/pkgs/servers/monitoring/prometheus/default.nix +++ b/pkgs/servers/monitoring/prometheus/default.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "prometheus-${version}"; - version = "0.17.0"; + version = "0.20.0"; rev = "${version}"; goPackagePath = "github.com/prometheus/prometheus"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "prometheus"; repo = "prometheus"; - sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx"; + sha256 = "1w3249kvh0ps8hlxw93q4bmn2g76hvl0ynlra2pzkw2drk34xd06"; }; docheck = true; diff --git a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix index 7de99ecd395..f2afd2aa273 100644 --- a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "haproxy_exporter-${version}"; - version = "0.4.0"; + version = "0.7.0"; rev = version; goPackagePath = "github.com/prometheus/haproxy_exporter"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "prometheus"; repo = "haproxy_exporter"; - sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr"; + sha256 = "1jkijdawmnj5yps0yaj47nyfmcah0krwmqsjvicm3sl0dhwmac4w"; }; goDeps = ./haproxy-exporter_deps.json; diff --git a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix index f7256287955..64a9e6cc28e 100644 --- a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "mysqld_exporter-${version}"; - version = "0.1.0"; + version = "0.8.1"; rev = version; goPackagePath = "github.com/prometheus/mysqld_exporter"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "prometheus"; repo = "mysqld_exporter"; - sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9"; + sha256 = "0pwf2vii9n9zgad1lxgw28c2743yc9c3qc03516fiwvlqc1cpddr"; }; goDeps = ./mysqld-exporter_deps.json; diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix index c3b25e2fcc5..9adfdda1d07 100644 --- a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix @@ -4,7 +4,7 @@ buildGoPackage rec { name = "nginx_exporter-${version}"; version = "20160524-${stdenv.lib.strings.substring 0 7 rev}"; rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b"; - + goPackagePath = "github.com/discordianfish/nginx_exporter"; src = fetchgit { diff --git a/pkgs/servers/monitoring/prometheus/node-exporter.nix b/pkgs/servers/monitoring/prometheus/node-exporter.nix index a5dd161b55e..161b56c1d2d 100644 --- a/pkgs/servers/monitoring/prometheus/node-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/node-exporter.nix @@ -2,21 +2,20 @@ buildGoPackage rec { name = "node_exporter-${version}"; - version = "0.11.0"; + version = "0.12.0"; rev = version; - + goPackagePath = "github.com/prometheus/node_exporter"; src = fetchFromGitHub { inherit rev; owner = "prometheus"; repo = "node_exporter"; - sha256 = "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4"; + sha256 = "0ih8w9ji0fw1smsi45jgvrpqfzm3f5bvk9q3nwrl0my5xkksnr8g"; }; - goDeps = ./node-exporter_deps.json; - - doCheck = true; + # FIXME: megacli test fails + doCheck = false; meta = with stdenv.lib; { description = "Prometheus exporter for machine metrics"; diff --git a/pkgs/servers/monitoring/prometheus/node-exporter_deps.json b/pkgs/servers/monitoring/prometheus/node-exporter_deps.json deleted file mode 100644 index 68020e73b1c..00000000000 --- a/pkgs/servers/monitoring/prometheus/node-exporter_deps.json +++ /dev/null @@ -1,18 +0,0 @@ -[ - { - "include": "../../libs.json", - "packages": [ - "github.com/soundcloud/go-runit", - "github.com/beevik/ntp", - "github.com/prometheus/client_golang", - "github.com/prometheus/client_model", - "bitbucket.org/ww/goautoneg", - "github.com/Sirupsen/logrus", - "github.com/beorn7/perks", - "github.com/matttproud/golang_protobuf_extensions", - "github.com/prometheus/log", - "github.com/golang/protobuf", - "github.com/prometheus/procfs" - ] - } -] diff --git a/pkgs/servers/monitoring/prometheus/pushgateway.nix b/pkgs/servers/monitoring/prometheus/pushgateway.nix index a1944608ce0..65dda2403fc 100644 --- a/pkgs/servers/monitoring/prometheus/pushgateway.nix +++ b/pkgs/servers/monitoring/prometheus/pushgateway.nix @@ -2,16 +2,16 @@ buildGoPackage rec { name = "pushgateway-${version}"; - version = "0.1.1"; + version = "0.3.0"; rev = version; - + goPackagePath = "github.com/prometheus/pushgateway"; src = fetchFromGitHub { inherit rev; owner = "prometheus"; repo = "pushgateway"; - sha256 = "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230"; + sha256 = "1bj0s4s3gbcnlp2z2yx7jf3jx14cdg2v4pr0yciai0g6jwwg63hd"; }; goDeps = ./pushgateway_deps.json; diff --git a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix index 0d9f0bb9885..935692bfa2e 100644 --- a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix +++ b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix @@ -2,16 +2,16 @@ buildGoPackage rec { name = "statsd_bridge-${version}"; - version = "0.1.0"; + version = "0.3.0"; rev = version; - + goPackagePath = "github.com/prometheus/statsd_bridge"; src = fetchFromGitHub { inherit rev; owner = "prometheus"; - repo = "statsd_bridge"; - sha256 = "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr"; + repo = "statsd_exporter"; + sha256 = "1gg9v224n05khcwy27637w3rwh0cymm7hx6bginfxd7730rmpp2r"; }; goDeps = ./statsd-bridge_deps.json; From 5647521a2a619a310906821e3481d59850230507 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 18 Jul 2016 20:25:17 +0200 Subject: [PATCH 378/508] prometheus-alertmanager: 0.2.1 -> 0.3.0 --- pkgs/servers/monitoring/prometheus/alertmanager.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/alertmanager.nix b/pkgs/servers/monitoring/prometheus/alertmanager.nix index 9af52e08375..55ac38f2e37 100644 --- a/pkgs/servers/monitoring/prometheus/alertmanager.nix +++ b/pkgs/servers/monitoring/prometheus/alertmanager.nix @@ -2,8 +2,8 @@ buildGoPackage rec { name = "alertmanager-${version}"; - version = "0.2.1"; - rev = "${version}"; + version = "0.3.0"; + rev = "v${version}"; goPackagePath = "github.com/prometheus/alertmanager"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "prometheus"; repo = "alertmanager"; - sha256 = "11gas19k4m483rvnfhzmcbkzzs7cfrn9cw7n7aa0g9yxdk91a1cx"; + sha256 = "0ychc2qvn3lzs4rg5f5sslil7clvcpzclcmfj83qjqp8krpg72b5"; }; # Tests exist, but seem to clash with the firewall. From d9f9711f9f093026a02e6da1500bf5818d61c6d0 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 18 Jul 2016 20:25:35 +0200 Subject: [PATCH 379/508] prometheus-collectd-exporter: 0.1.0 -> 0.3.1 --- pkgs/servers/monitoring/prometheus/collectd-exporter.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix index bcb1889224c..dc9b6fd843e 100644 --- a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "collectd-exporter-${version}"; - version = "0.1.0"; + version = "0.3.1"; rev = version; goPackagePath = "github.com/prometheus/collectd_exporter"; @@ -11,14 +11,14 @@ buildGoPackage rec { inherit rev; owner = "prometheus"; repo = "collectd_exporter"; - sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1"; + sha256 = "1p0kb7c8g0r0sp5a6xrx8vnwbw14hhwlqzk4n2xx2y8pvnbivajz"; }; goDeps = ./collectd-exporter_deps.json; meta = with stdenv.lib; { description = "Relay server for exporting metrics from collectd to Prometheus"; - homepage = https://github.com/prometheus/alertmanager; + homepage = https://github.com/prometheus/collectd_exporter; license = licenses.asl20; maintainers = with maintainers; [ benley ]; platforms = platforms.unix; From 328a77f60b3aee558407d08525db34e06fbfafd7 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 18 Jul 2016 20:25:58 +0200 Subject: [PATCH 380/508] prometheus: 0.20.0 -> 1.0.0 --- pkgs/servers/monitoring/prometheus/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix index 1fd12f84e9f..ad9143ec33f 100644 --- a/pkgs/servers/monitoring/prometheus/default.nix +++ b/pkgs/servers/monitoring/prometheus/default.nix @@ -2,8 +2,8 @@ buildGoPackage rec { name = "prometheus-${version}"; - version = "0.20.0"; - rev = "${version}"; + version = "1.0.0"; + rev = "v${version}"; goPackagePath = "github.com/prometheus/prometheus"; @@ -11,7 +11,7 @@ buildGoPackage rec { inherit rev; owner = "prometheus"; repo = "prometheus"; - sha256 = "1w3249kvh0ps8hlxw93q4bmn2g76hvl0ynlra2pzkw2drk34xd06"; + sha256 = "0wb6aj2019b2bkaai94mxdy8gr6gs7jpkm7ms8h9n2ms041gdsff"; }; docheck = true; From f303a072c02d5659abc8b03e69f98f789745b4ab Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Mon, 18 Jul 2016 11:58:58 -0700 Subject: [PATCH 381/508] slic3r: Add LWP for "Send to printer" This patch adds a dependency on the LWP perl module so that Slic3r can make HTTP connections to Octoprint and send G-code to a remote printer. --- pkgs/applications/misc/slic3r/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/slic3r/default.nix b/pkgs/applications/misc/slic3r/default.nix index 6d7ec762e77..64bcb0e1921 100644 --- a/pkgs/applications/misc/slic3r/default.nix +++ b/pkgs/applications/misc/slic3r/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { EncodeLocale MathClipper ExtUtilsXSpp threads MathConvexHullMonotoneChain MathGeometryVoronoi MathPlanePath Moo IOStringy ClassXSAccessor Wx GrowlGNTP NetDBus ImportInto XMLSAX - ExtUtilsMakeMaker OpenGL WxGLCanvas ModuleBuild + ExtUtilsMakeMaker OpenGL WxGLCanvas ModuleBuild LWP ]; desktopItem = makeDesktopItem { From cf63016f0631de2c0e0564c29effe7e4d22f913d Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Mon, 18 Jul 2016 19:59:16 +0000 Subject: [PATCH 382/508] nixpkgs: build bitkeeper only on linux The OS X build fails due to the dependency on 'crypt' failing. Perhaps in future versions of BitKeeper this build can be re-enabled. Signed-off-by: Austin Seipp --- pkgs/applications/version-management/bitkeeper/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/bitkeeper/default.nix b/pkgs/applications/version-management/bitkeeper/default.nix index 9b487643910..76083292482 100644 --- a/pkgs/applications/version-management/bitkeeper/default.nix +++ b/pkgs/applications/version-management/bitkeeper/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { ''; homepage = https://www.bitkeeper.org/; license = stdenv.lib.licenses.asl20; - platforms = stdenv.lib.platforms.unix; + platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ wscott thoughtpolice ]; }; } From a7cb720bae8596fff6790ff99548443e1351dc33 Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Mon, 18 Jul 2016 16:09:25 -0500 Subject: [PATCH 383/508] travis: remount for larger tmp dir --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 07e8006aa9a..3f2e3a47302 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,8 @@ matrix: - os: linux sudo: required dist: trusty + before_script: + - sudo mount -o remount,exec,size=2G /run/user script: ./maintainers/scripts/travis-nox-review-pr.sh pr - os: osx osx_image: xcode7.3 From 50b690fd03dabb5c3e21c31e59ab2187d4b5f8a7 Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Wed, 13 Jul 2016 18:00:45 +0200 Subject: [PATCH 384/508] kmymoney: 4.7.2 -> 4.8.0 --- pkgs/applications/office/kmymoney/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/office/kmymoney/default.nix b/pkgs/applications/office/kmymoney/default.nix index 8884c78e883..2516cfd4597 100644 --- a/pkgs/applications/office/kmymoney/default.nix +++ b/pkgs/applications/office/kmymoney/default.nix @@ -3,11 +3,12 @@ , doxygen, aqbanking, gwenhywfar }: stdenv.mkDerivation rec { - name = "kmymoney-4.7.2"; + name = "kmymoney-${version}"; + version = "4.8.0"; src = fetchurl { - url = "mirror://sourceforge/kmymoney2/${name}.tar.xz"; - sha256 = "0g9rakjx7zmw4bf7m5516rrx0n3bl2by3nn24iiz9209yfgw5cmz"; + url = "mirror://kde/stable/kmymoney/${version}/src/${name}.tar.xz"; + sha256 = "1hlayhcmdfayma4hchv2bfyg82ry0h74hg4095d959mg19qkb9n2"; }; cmakeFlags = [ From 07fe6fa90e3ba01c415b3ff776c5399744845645 Mon Sep 17 00:00:00 2001 From: cransom Date: Mon, 18 Jul 2016 18:14:40 -0400 Subject: [PATCH 385/508] grafana: 3.0.1 -> 3.1.0 (#17084) --- pkgs/servers/monitoring/grafana/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix index 28bf83a247f..30b540c1d83 100644 --- a/pkgs/servers/monitoring/grafana/default.nix +++ b/pkgs/servers/monitoring/grafana/default.nix @@ -1,7 +1,8 @@ { lib, buildGoPackage, fetchurl, fetchFromGitHub }: buildGoPackage rec { - version = "3.0.1"; + version = "3.1.0"; + ts = "1468321182"; name = "grafana-v${version}"; goPackagePath = "github.com/grafana/grafana"; @@ -9,12 +10,12 @@ buildGoPackage rec { rev = "v${version}"; owner = "grafana"; repo = "grafana"; - sha256 = "1zykgf8xq7m040d4yljcbz23gh8ppaqnxj50ncj1cjyi5k88i3i9"; + sha256 = "1p3qp3p4wsb7m2lvdcrc1wz5mxqwqsj5xfqp28hkbfdqh3lblh42"; }; srcStatic = fetchurl { - url = "https://grafanarel.s3.amazonaws.com/builds/grafana-${version}-.linux-x64.tar.gz"; - sha256 = "14wq2cbf4djnwbbyfbhnwmwqpfh5g4yp1dckg5zzf2109ymkjrqd"; + url = "https://grafanarel.s3.amazonaws.com/builds/grafana-${version}-${ts}.linux-x64.tar.gz"; + sha256 = "174w0bx5cqriy77dyk9xsnmdskykzmgbyjczwb5kkp6j8vp7b0fs"; }; preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; From febcd39afa6dff017290d3c56b7c545c8e05659b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 15 Jul 2016 15:26:31 +0200 Subject: [PATCH 386/508] nixos/grafana: set plugins path, fix image generation Also add options to configure which organization should have anonymous access. --- nixos/modules/services/monitoring/grafana.nix | 17 +++++++++++++++++ pkgs/servers/monitoring/grafana/default.nix | 5 +++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index 0b7f3ce0a29..b9e4015c238 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -9,6 +9,7 @@ let envOptions = { PATHS_DATA = cfg.dataDir; + PATHS_PLUGINS = "${cfg.dataDir}/plugins"; PATHS_LOGS = "${cfg.dataDir}/log"; SERVER_PROTOCOL = cfg.protocol; @@ -37,6 +38,8 @@ let USERS_AUTO_ASSIGN_ORG_ROLE = cfg.users.autoAssignOrgRole; AUTH_ANONYMOUS_ENABLED = b2s cfg.auth.anonymous.enable; + AUTH_ANONYMOUS_ORG_NAME = cfg.auth.anonymous.org_name; + AUTH_ANONYMOUS_ORG_ROLE = cfg.auth.anonymous.org_role; ANALYTICS_REPORTING_ENABLED = b2s cfg.analytics.reporting.enable; } // cfg.extraOptions; @@ -196,6 +199,17 @@ in { default = false; type = types.bool; }; + org_name = mkOption { + description = "Which organization to allow anonymous access to"; + default = "Main Org."; + type = types.str; + }; + org_role = mkOption { + description = "Which role anonymous users have in the organization"; + default = "Viewer"; + type = types.str; + }; + }; analytics.reporting = { @@ -222,6 +236,8 @@ in { "Grafana passwords will be stored as plaintext in the Nix store!" ]; + environment.systemPackages = [ cfg.package ]; + systemd.services.grafana = { description = "Grafana Service Daemon"; wantedBy = ["multi-user.target"]; @@ -234,6 +250,7 @@ in { }; preStart = '' ln -fs ${cfg.package}/share/grafana/conf ${cfg.dataDir} + ln -fs ${cfg.package}/share/grafana/vendor ${cfg.dataDir} ''; }; diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix index 30b540c1d83..884785699a6 100644 --- a/pkgs/servers/monitoring/grafana/default.nix +++ b/pkgs/servers/monitoring/grafana/default.nix @@ -1,4 +1,4 @@ -{ lib, buildGoPackage, fetchurl, fetchFromGitHub }: +{ lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomjs2 }: buildGoPackage rec { version = "3.1.0"; @@ -22,7 +22,8 @@ buildGoPackage rec { postInstall = '' tar -xvf $srcStatic mkdir -p $bin/share/grafana - mv grafana-*/{public,conf} $bin/share/grafana/ + mv grafana-*/{public,conf,vendor} $bin/share/grafana/ + ln -sf ${phantomjs2}/bin/phantomjs $bin/share/grafana/vendor/phantomjs/phantomjs ''; meta = with lib; { From b5daad4268e487fdb2aaf2979667b56b99901bcd Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 19 Jul 2016 01:16:51 +0200 Subject: [PATCH 387/508] nginx: refactor and add mainline version Upstream calls the unstable version mainline. --- pkgs/servers/http/nginx/{default.nix => generic.nix} | 6 +++--- pkgs/servers/http/nginx/mainline.nix | 6 ++++++ .../nginx/{unstable.upstream => mainline.upstream} | 0 pkgs/servers/http/nginx/stable.nix | 6 ++++++ .../http/nginx/{default.upstream => stable.upstream} | 0 pkgs/top-level/all-packages.nix | 12 +++++++++--- 6 files changed, 24 insertions(+), 6 deletions(-) rename pkgs/servers/http/nginx/{default.nix => generic.nix} (94%) create mode 100644 pkgs/servers/http/nginx/mainline.nix rename pkgs/servers/http/nginx/{unstable.upstream => mainline.upstream} (100%) create mode 100644 pkgs/servers/http/nginx/stable.nix rename pkgs/servers/http/nginx/{default.upstream => stable.upstream} (100%) diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/generic.nix similarity index 94% rename from pkgs/servers/http/nginx/default.nix rename to pkgs/servers/http/nginx/generic.nix index 394a20420c7..6817f18bd1d 100644 --- a/pkgs/servers/http/nginx/default.nix +++ b/pkgs/servers/http/nginx/generic.nix @@ -3,17 +3,17 @@ , withStream ? false , modules ? [] , hardening ? true +, version, sha256, ... }: with stdenv.lib; -stdenv.mkDerivation rec { +stdenv.mkDerivation { name = "nginx-${version}"; - version = "1.10.1"; src = fetchurl { url = "http://nginx.org/download/nginx-${version}.tar.gz"; - sha256 = "00d8hxj8453c7989qd7z4f1mjp0k3ib8k29i1qyf11b4ar35ilqz"; + inherit sha256; }; diff --git a/pkgs/servers/http/nginx/mainline.nix b/pkgs/servers/http/nginx/mainline.nix new file mode 100644 index 00000000000..6e4c49abc5b --- /dev/null +++ b/pkgs/servers/http/nginx/mainline.nix @@ -0,0 +1,6 @@ +{ callPackage, ... }@args: + +callPackage ./generic.nix (args // { + version = "1.11.2"; + sha256 = "02khwad28ar2jjdfssysx262bgwgirm9967gnfhw9ga7wvipncm0"; +}) diff --git a/pkgs/servers/http/nginx/unstable.upstream b/pkgs/servers/http/nginx/mainline.upstream similarity index 100% rename from pkgs/servers/http/nginx/unstable.upstream rename to pkgs/servers/http/nginx/mainline.upstream diff --git a/pkgs/servers/http/nginx/stable.nix b/pkgs/servers/http/nginx/stable.nix new file mode 100644 index 00000000000..e677b181bb5 --- /dev/null +++ b/pkgs/servers/http/nginx/stable.nix @@ -0,0 +1,6 @@ +{ callPackage, ... } @ args: + +callPackage ./generic.nix (args // { + version = "1.10.1"; + sha256 = "00d8hxj8453c7989qd7z4f1mjp0k3ib8k29i1qyf11b4ar35ilqz"; +}) diff --git a/pkgs/servers/http/nginx/default.upstream b/pkgs/servers/http/nginx/stable.upstream similarity index 100% rename from pkgs/servers/http/nginx/default.upstream rename to pkgs/servers/http/nginx/stable.upstream diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b12f240938..eabc04a72f1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10208,13 +10208,19 @@ in neard = callPackage ../servers/neard { }; - nginx = callPackage ../servers/http/nginx { + nginx = callPackage ../servers/http/nginx/stable.nix { # We don't use `with` statement here on purpose! # See https://github.com/NixOS/nixpkgs/pull/10474/files#r42369334 modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders ]; }; - # nginxUnstable currently points to stable because that's newest: - nginxUnstable = nginx; + + nginxMainline = callPackage ../servers/http/nginx/mainline.nix { + # We don't use `with` statement here on purpose! + # See https://github.com/NixOS/nixpkgs/pull/10474/files#r42369334 + modules = [ nginxModules.dav nginxModules.moreheaders ]; + }; + + nginxUnstable = nginxMainline; nginxModules = callPackage ../servers/http/nginx/modules.nix { }; From 0dee86279d1aeeb8d9ca839355f5ff9d9d03819d Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Tue, 19 Jul 2016 02:27:21 +0300 Subject: [PATCH 388/508] gnome-software: propogated -> propagated (#17086) --- pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix index 424f6a4f541..51efc0446ef 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/gnome-software/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { buildInputs = [ gnome3.gtk packagekit appstream-glib libsoup gnome3.gsettings_desktop_schemas gnome3.gnome_desktop polkit attr acl libyaml ]; - propogatedBuildInputs = [ isocodes ]; + propagatedBuildInputs = [ isocodes ]; postInstall = '' mkdir -p $out/share/xml/ diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix index e05a28fcd8d..7c258e9cf21 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-software/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { gnome3.gsettings_desktop_schemas gnome3.gnome_desktop gtkspell3 json_glib polkit attr acl libyaml ]; - propogatedBuildInputs = [ isocodes ]; + propagatedBuildInputs = [ isocodes ]; postInstall = '' mkdir -p $out/share/xml/ From 60d32ff6cca3a19d1fb1565b07d948c3de45779e Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Tue, 19 Jul 2016 02:36:33 +0300 Subject: [PATCH 389/508] planner: init at 0.14.6 (#17078) --- pkgs/applications/office/planner/default.nix | 45 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/applications/office/planner/default.nix diff --git a/pkgs/applications/office/planner/default.nix b/pkgs/applications/office/planner/default.nix new file mode 100644 index 00000000000..9222ed5757c --- /dev/null +++ b/pkgs/applications/office/planner/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl +, pkgconfig +, intltool +, gnome +, libxslt +, python +}: + +let + version = "${major}.${minor}.${patch}"; + major = "0"; + minor = "14"; + patch = "6"; + +in stdenv.mkDerivation { + name = "planner-${version}"; + + src = fetchurl { + url = "http://ftp.gnome.org/pub/GNOME/sources/planner/${major}.${minor}/planner-${version}.tar.xz"; + sha256 = "15h6ps58giy5r1g66sg1l4xzhjssl362mfny2x09khdqsvk2j38k"; + }; + + buildInputs = [ + pkgconfig + intltool + gnome.GConf + gnome.gtk + gnome.libgnomecanvas + gnome.libgnomeui + gnome.libglade + gnome.scrollkeeper + libxslt + python + ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Planner/; + description = "Project management application for GNOME"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.rasendubi ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index eabc04a72f1..a1074ce7dbd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13869,6 +13869,8 @@ in pijul = callPackage ../applications/version-management/pijul { }; + planner = callPackage ../applications/office/planner { }; + playonlinux = callPackage ../applications/misc/playonlinux { stdenv = stdenv_32bit; }; From 60624a4625f8b191960b62518eac45cb912bbb4e Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Tue, 19 Jul 2016 07:47:33 +0800 Subject: [PATCH 390/508] nasty: add large file support (#17011) also fixes i686 build as a side-effect --- pkgs/tools/security/nasty/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/security/nasty/default.nix b/pkgs/tools/security/nasty/default.nix index 35bbb3bae48..fb078674ea7 100644 --- a/pkgs/tools/security/nasty/default.nix +++ b/pkgs/tools/security/nasty/default.nix @@ -9,6 +9,10 @@ stdenv.mkDerivation rec { sha256 = "1dznlxr728k1pgy1kwmlm7ivyl3j3rlvkmq34qpwbwbj8rnja1vn"; }; + # does not apply cleanly with patchPhase/fetchpatch + # https://sources.debian.net/src/nasty/0.6-3/debian/patches/02_add_largefile_support.patch + CFLAGS = "-D_FILE_OFFSET_BITS=64"; + buildInputs = [ gpgme ]; installPhase = '' From 28740462e7c03b607e5ea06c3acf5a2da772fb01 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 19 Jul 2016 04:37:14 +0300 Subject: [PATCH 391/508] busybox: fix static build --- pkgs/os-specific/linux/busybox/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix index b04f7855fef..92f24b9e9ae 100644 --- a/pkgs/os-specific/linux/busybox/default.nix +++ b/pkgs/os-specific/linux/busybox/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, musl +{ stdenv, lib, fetchurl, glibc, musl , enableStatic ? false , enableMinimal ? false , useMusl ? false @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { CONFIG_LFS y - ${stdenv.lib.optionalString enableStatic '' + ${lib.optionalString enableStatic '' CONFIG_STATIC y ''} @@ -64,10 +64,12 @@ stdenv.mkDerivation rec { EOF make oldconfig - '' + stdenv.lib.optionalString useMusl '' + '' + lib.optionalString useMusl '' makeFlagsArray+=("CC=gcc -isystem ${musl}/include -B${musl}/lib -L${musl}/lib") ''; + buildInputs = lib.optionals (enableStatic && !useMusl) [ glibc glibc.static ]; + crossAttrs = { extraCrossConfig = '' CONFIG_CROSS_COMPILER_PREFIX "${stdenv.cross.config}-" From 399db54e3514ceaee82ec217140975d77963359f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 5 Mar 2015 17:21:57 +0300 Subject: [PATCH 392/508] nixos/qemu: don't recreate extra disks --- nixos/modules/virtualisation/qemu-vm.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 9d9b725a805..b77b319f4a2 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -62,7 +62,9 @@ let idx=2 extraDisks="" ${flip concatMapStrings cfg.emptyDiskImages (size: '' - ${pkgs.qemu_kvm}/bin/qemu-img create -f qcow2 "empty$idx.qcow2" "${toString size}M" + if ! test -e "empty$idx.qcow2"; then + ${pkgs.qemu_kvm}/bin/qemu-img create -f qcow2 "empty$idx.qcow2" "${toString size}M" + fi extraDisks="$extraDisks -drive index=$idx,file=$(pwd)/empty$idx.qcow2,if=${cfg.qemu.diskInterface},werror=report" idx=$((idx + 1)) '')} From 9cc70b419cc75bbf7f3224ad9f6848760adac1fd Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 5 Mar 2015 17:21:27 +0300 Subject: [PATCH 393/508] nixos/tests: add hibernation test --- nixos/release.nix | 1 + nixos/tests/hibernate.nix | 42 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 nixos/tests/hibernate.nix diff --git a/nixos/release.nix b/nixos/release.nix index 1800122fa2e..184e340341f 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -231,6 +231,7 @@ in rec { tests.gnome3 = callTest tests/gnome3.nix {}; tests.gnome3-gdm = callTest tests/gnome3-gdm.nix {}; tests.grsecurity = callTest tests/grsecurity.nix {}; + tests.hibernate = callTest tests/hibernate.nix {}; tests.i3wm = callTest tests/i3wm.nix {}; tests.installer = callSubTests tests/installer.nix {}; tests.influxdb = callTest tests/influxdb.nix {}; diff --git a/nixos/tests/hibernate.nix b/nixos/tests/hibernate.nix new file mode 100644 index 00000000000..787929f8904 --- /dev/null +++ b/nixos/tests/hibernate.nix @@ -0,0 +1,42 @@ +# Test whether hibernation from partition works. + +import ./make-test.nix (pkgs: { + name = "hibernate"; + + nodes = { + machine = { config, lib, pkgs, ... }: with lib; { + virtualisation.emptyDiskImages = [ config.virtualisation.memorySize ]; + + systemd.services.backdoor.conflicts = [ "sleep.target" ]; + + swapDevices = mkOverride 0 [ { device = "/dev/vdb"; } ]; + + networking.firewall.allowedTCPPorts = [ 4444 ]; + + systemd.services.listener.serviceConfig.ExecStart = "${pkgs.netcat}/bin/nc -l -p 4444"; + }; + + probe = { config, lib, pkgs, ...}: { + environment.systemPackages = [ pkgs.netcat ]; + }; + }; + + # 9P doesn't support reconnection to virtio transport after a hibernation. + # Therefore, machine just hangs on any Nix store access. + # To work around it we run a daemon which listens to a TCP connection and + # try to connect to it as a test. + + testScript = + '' + $machine->waitForUnit("multi-user.target"); + $machine->succeed("mkswap /dev/vdb"); + $machine->succeed("swapon -a"); + $machine->startJob("listener"); + $machine->succeed("systemctl hibernate &"); + $machine->waitForShutdown; + $machine->start; + $probe->waitForUnit("network.target"); + $probe->waitUntilSucceeds("echo test | nc -c machine 4444"); + ''; + +}) From e18a91c47c7b27a17895fae29c1f9d914fa70813 Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Mon, 18 Jul 2016 23:00:22 -0500 Subject: [PATCH 394/508] travis: just use "unstable" channel for nix-shell --- maintainers/scripts/travis-nox-review-pr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 386868301a2..5b25e4f37c1 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -55,7 +55,7 @@ while test -n "$1"; do token="--token $GITHUB_TOKEN" fi - nix-shell --packages nox git --run "nox-review pr --slug $TRAVIS_REPO_SLUG $token $TRAVIS_PULL_REQUEST" -I nixpkgs=$TRAVIS_BUILD_DIR + nix-shell --packages nox git --run "nox-review pr --slug $TRAVIS_REPO_SLUG $token $TRAVIS_PULL_REQUEST" fi ;; From dd72c722bf058b627456498f2c382196bcca3cce Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Mon, 18 Jul 2016 23:09:04 -0500 Subject: [PATCH 395/508] travis: mount /run/user as 755 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3f2e3a47302..77881dbc492 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ matrix: sudo: required dist: trusty before_script: - - sudo mount -o remount,exec,size=2G /run/user + - sudo mount -o remount,exec,size=2G,mode=755 /run/user script: ./maintainers/scripts/travis-nox-review-pr.sh pr - os: osx osx_image: xcode7.3 From 24e9c0d7cc69a4194d47d3be50957d39ab2c9e6d Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:45:30 +0200 Subject: [PATCH 396/508] gnome-photos: 3.20.1 -> 3.20.2 --- pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix index 48d0cc38519..c24de8525a8 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "gnome-photos-3.20.1"; + name = "gnome-photos-3.20.2"; src = fetchurl { - url = mirror://gnome/sources/gnome-photos/3.20/gnome-photos-3.20.1.tar.xz; - sha256 = "7639cc9367aa0f4bbf54aa46edaeedb91fcce85d387e8ffb669470710e247e5a"; + url = mirror://gnome/sources/gnome-photos/3.20/gnome-photos-3.20.2.tar.xz; + sha256 = "ec6b95ad1c4aeeb065a65d2d48335036c0750761c7f6762bafcf874791272b46"; }; } From ec8396e0e2fc0b6e899586d9a2de41c48ccedc8a Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:45:45 +0200 Subject: [PATCH 397/508] dconf-editor: 3.20.2 -> 3.20.3 --- pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix b/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix index 5980c0fc6af..ee04b9cd463 100644 --- a/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "dconf-editor-3.20.2"; + name = "dconf-editor-3.20.3"; src = fetchurl { - url = mirror://gnome/sources/dconf-editor/3.20/dconf-editor-3.20.2.tar.xz; - sha256 = "486dcb60001b934186f3c3591897d986459bf240f35641fbb59ee957c15af2be"; + url = mirror://gnome/sources/dconf-editor/3.20/dconf-editor-3.20.3.tar.xz; + sha256 = "a8721499a277550b28d8dd94dafbea6efeb95fa153020da10603d0d4d628c579"; }; } From e28f82f818a4173883b19668524a34ff310e9a1e Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:46:00 +0200 Subject: [PATCH 398/508] eog: 3.20.2 -> 3.20.3 --- pkgs/desktops/gnome-3/3.20/core/eog/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/eog/src.nix b/pkgs/desktops/gnome-3/3.20/core/eog/src.nix index 90a4a8537fb..1aaf23319c4 100644 --- a/pkgs/desktops/gnome-3/3.20/core/eog/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/eog/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "eog-3.20.2"; + name = "eog-3.20.3"; src = fetchurl { - url = mirror://gnome/sources/eog/3.20/eog-3.20.2.tar.xz; - sha256 = "d7d022af85ea0046e90b02fc94672757300bbbdb422eef2be2afc99fc2cd87e7"; + url = mirror://gnome/sources/eog/3.20/eog-3.20.3.tar.xz; + sha256 = "16308c389deced3acb801dcc180c5e5e18b1db6ba5bd5835b5320cba9b0d2c26"; }; } From 050d534236f0957de4d2545dd5cf7178528df99a Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:46:10 +0200 Subject: [PATCH 399/508] epiphany: 3.20.2 -> 3.20.3 --- pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix b/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix index 1738b14e17b..457814913d6 100644 --- a/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "epiphany-3.20.2"; + name = "epiphany-3.20.3"; src = fetchurl { - url = mirror://gnome/sources/epiphany/3.20/epiphany-3.20.2.tar.xz; - sha256 = "d107ea1d621e91b1c5a7b51435fa81684d4cd4dd2c6fd71adf95e9a46fe6237a"; + url = mirror://gnome/sources/epiphany/3.20/epiphany-3.20.3.tar.xz; + sha256 = "4d9de1bdb44c14adf25aa6dc02ea3de60925cff5eb01fe89545e6032c9b424a2"; }; } From 09032af1cf39c33bdf2b25c268dddf609c9d2309 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:46:19 +0200 Subject: [PATCH 400/508] evince: 3.20.0 -> 3.20.1 --- pkgs/desktops/gnome-3/3.20/core/evince/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/evince/src.nix b/pkgs/desktops/gnome-3/3.20/core/evince/src.nix index 1f20db4a97e..6f924bbbc1b 100644 --- a/pkgs/desktops/gnome-3/3.20/core/evince/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/evince/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "evince-3.20.0"; + name = "evince-3.20.1"; src = fetchurl { - url = mirror://gnome/sources/evince/3.20/evince-3.20.0.tar.xz; - sha256 = "cf8358a453686c2a7f85d245f83fe918c0ce02eb6532339f3e02e31249a5a280"; + url = mirror://gnome/sources/evince/3.20/evince-3.20.1.tar.xz; + sha256 = "fc7ac23036939c24f02e9fed6dd6e28a85b4b00b60fa4b591b86443251d20055"; }; } From 0a42105fc0d139aab5179866128033b4664d0185 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:46:34 +0200 Subject: [PATCH 401/508] gnome-bluetooth: 3.18.3 -> 3.20.0 --- .../desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix index 6da79276afc..474d4722b4a 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix @@ -1,12 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update -fetchurl: rec { - major = "3.18"; - minor = "3"; - name = "gnome-bluetooth-${major}.${minor}"; +fetchurl: { + name = "gnome-bluetooth-3.20.0"; src = fetchurl { - url = "mirror://gnome/sources/gnome-bluetooth/${major}/${name}.tar.xz"; - sha256 = "1qwc9q7x22sc71zhqv4db78rqzxl6fqfw6d978ydqap54c2bg0g4"; + url = mirror://gnome/sources/gnome-bluetooth/3.20/gnome-bluetooth-3.20.0.tar.xz; + sha256 = "93b3ca16b348a168d044b3f777049b7dba2a9292c4adb2751a771e3bc5e4eb53"; }; } From d46f684a446e8e16bd115545cff0bfa3244afff4 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:46:48 +0200 Subject: [PATCH 402/508] gnome-screenshot: 3.18.0 -> 3.20.1 --- pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix index af6007fa233..d6b0e28a0c2 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "gnome-screenshot-3.18.0"; + name = "gnome-screenshot-3.20.1"; src = fetchurl { - url = mirror://gnome/sources/gnome-screenshot/3.18/gnome-screenshot-3.18.0.tar.xz; - sha256 = "eba64dbf4acf0ab8222fec549d0a4f2dd7dbd51c255e7978dedf1f5c06a98841"; + url = mirror://gnome/sources/gnome-screenshot/3.20/gnome-screenshot-3.20.1.tar.xz; + sha256 = "06a89b6887146cdbbeb64adf11bdae21acf22b0422337041c66eedb21ef7e143"; }; } From a0b973bd4e228120a561a61928e1b4820103d713 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:47:01 +0200 Subject: [PATCH 403/508] gnome-shell: 3.20.2 -> 3.20.3 --- pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix index 3033cdffa33..df4994cead0 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "gnome-shell-3.20.2"; + name = "gnome-shell-3.20.3"; src = fetchurl { - url = mirror://gnome/sources/gnome-shell/3.20/gnome-shell-3.20.2.tar.xz; - sha256 = "eaff6b177cc5bab16b252c45393a6c9305ad3837a288e738388c7b4d4bae13cd"; + url = mirror://gnome/sources/gnome-shell/3.20/gnome-shell-3.20.3.tar.xz; + sha256 = "b23fd558623bfdc726066be3f47bb5fb8ed9c0ad980a95d6afc6397b6d41171e"; }; } From 58d3e61b60fe1dbbe6e3384914363b4a13f81050 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:47:13 +0200 Subject: [PATCH 404/508] gtksourceview: 3.20.3 -> 3.20.4 --- pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix index 63de05e8820..4f80104cc3b 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "gtksourceview-3.20.3"; + name = "gtksourceview-3.20.4"; src = fetchurl { - url = mirror://gnome/sources/gtksourceview/3.20/gtksourceview-3.20.3.tar.xz; - sha256 = "53069c6e2645716d5dc3dc875b2fe7aacbe70e6560f8dc01c66597231886a8df"; + url = mirror://gnome/sources/gtksourceview/3.20/gtksourceview-3.20.4.tar.xz; + sha256 = "7a0e6ac95ff3862bd8ef77a40e95a942939e73cb407f2eb67af600d7ce533d01"; }; } From 3376ab560d4fe367de2ef593d9bcd1017150955a Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:47:33 +0200 Subject: [PATCH 405/508] mutter: 3.20.2 -> 3.20.3 --- pkgs/desktops/gnome-3/3.20/core/mutter/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix b/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix index 47acaa6b58e..89f05f8ed1b 100644 --- a/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "mutter-3.20.2"; + name = "mutter-3.20.3"; src = fetchurl { - url = mirror://gnome/sources/mutter/3.20/mutter-3.20.2.tar.xz; - sha256 = "1e8c46a81e21f382f56729282fcd0bb1c3a2067135f4b0f3651b307bf7a5b454"; + url = mirror://gnome/sources/mutter/3.20/mutter-3.20.3.tar.xz; + sha256 = "142c5271df4bde968c725ed09026173292c07b4dd7ba75f19c4b14fc363af916"; }; } From bb85d3fc0224edd4bc8fe11dd8f157db3aedc955 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:47:44 +0200 Subject: [PATCH 406/508] gnome-mines: 3.20.0 -> 3.20.1 --- pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix index 5dbae647661..9894d501122 100644 --- a/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "gnome-mines-3.20.0"; + name = "gnome-mines-3.20.1"; src = fetchurl { - url = mirror://gnome/sources/gnome-mines/3.20/gnome-mines-3.20.0.tar.xz; - sha256 = "7775c8d19cda9663a3e6b69d921c9de869278aeff93e249099af2d3c19b970a6"; + url = mirror://gnome/sources/gnome-mines/3.20/gnome-mines-3.20.1.tar.xz; + sha256 = "5815e886d92817d4127b9e94bf63cb91e2bf371029d18efdf9f195e2400e2b3b"; }; } From f7054319333ae5409ac7ee8162d9b20d7982d7e1 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 18 Jul 2016 08:47:58 +0200 Subject: [PATCH 407/508] gitg: 3.20.0 -> 3.20.1 --- pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix index ad05a219b25..805380c9d60 100644 --- a/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix +++ b/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "gitg-3.20.0"; + name = "gitg-3.20.1"; src = fetchurl { - url = mirror://gnome/sources/gitg/3.20/gitg-3.20.0.tar.xz; - sha256 = "1f09f61208349d003f228e51dc9709bd3426960f5585c0e38197bd02b51f3346"; + url = mirror://gnome/sources/gitg/3.20/gitg-3.20.1.tar.xz; + sha256 = "104420bcdd765fa2196a7b146ba1e0fa82a5686ed5ba9af40e31e88e601aa585"; }; } From 039f0e5cb044a3610252f139283cef32850091e2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 19 Jul 2016 07:54:30 +0200 Subject: [PATCH 408/508] firmwareLinuxNonfree: 2016-05-18 -> 2016-07-12 --- .../linux/firmware/firmware-linux-nonfree/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix index 992d42e2e12..8e0f807e08e 100644 --- a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix +++ b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "firmware-linux-nonfree-${version}"; - version = "2016-05-18"; + version = "2016-07-12"; # This repo is built by merging the latest versions of # http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ @@ -14,8 +14,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "wkennington"; repo = "linux-firmware"; - rev = "19495832c6899bd811874439376d513290773c31"; - sha256 = "1700a24sfw6xa3q3r8aa5wfhydgix83m57plpfirdmc9qr4isrr0"; + rev = "cccb6a0da98372bd66787710249727ad6b0aaf72"; + sha256 = "1c7h8i37nbyy37zqhybxd3y6aqabfv4nrdkjg789w67mdnn6hka0"; }; preInstall = '' @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { homepage = http://packages.debian.org/sid/firmware-linux-nonfree; license = licenses.unfreeRedistributableFirmware; platforms = platforms.linux; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ wkennington fpletz ]; priority = 6; # give precedence to kernel firmware }; From ba0224fa17c0520555ffde9d1c540c4623d22e6a Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Tue, 19 Jul 2016 09:07:44 +0300 Subject: [PATCH 409/508] geany-with-vte: fix desktop shortcut and man pages (#16759) --- pkgs/applications/editors/geany/with-vte.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/geany/with-vte.nix b/pkgs/applications/editors/geany/with-vte.nix index ffffed1b853..679125b5ec4 100644 --- a/pkgs/applications/editors/geany/with-vte.nix +++ b/pkgs/applications/editors/geany/with-vte.nix @@ -2,5 +2,7 @@ let name = builtins.replaceStrings ["geany-"] ["geany-with-vte-"] geany.name; in runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; } " + mkdir -p $out + ln -s ${geany}/share $out makeWrapper ${geany}/bin/geany $out/bin/geany --prefix LD_LIBRARY_PATH : ${gnome.vte}/lib " From e2199205c7012fc9cfeaf89e85fe3bb8084b82a4 Mon Sep 17 00:00:00 2001 From: Miguel Madrid Date: Tue, 19 Jul 2016 08:10:13 +0200 Subject: [PATCH 410/508] libmsgpack: 1.1.0 -> 2.0.0 (#16722) --- pkgs/development/libraries/libmsgpack/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libmsgpack/default.nix b/pkgs/development/libraries/libmsgpack/default.nix index 5b2c7902c3c..2af7e31c889 100644 --- a/pkgs/development/libraries/libmsgpack/default.nix +++ b/pkgs/development/libraries/libmsgpack/default.nix @@ -1,12 +1,12 @@ { callPackage, fetchFromGitHub, ... } @ args: callPackage ./generic.nix (args // rec { - version = "1.1.0"; + version = "2.0.0"; src = fetchFromGitHub { owner = "msgpack"; repo = "msgpack-c"; rev = "cpp-${version}"; - sha256 = "1hnpnin6gjiilbzfd75871kamfn9grrf53qpbs061sflvz56fddq"; + sha256 = "189m44pwpcpf7g4yhzfla4djqyp2kl54wxmwfaj94gwgj5s370i7"; }; }) From eb92804f914a8a40339473ebd641f0a93d8576b9 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Mon, 18 Jul 2016 23:13:06 -0700 Subject: [PATCH 411/508] nixos-containers: init package (#16959) This moves nixos-containers into its own package so that it can be relied upon by other packages/systems. This should make development using dynamic containers much easier. --- nixos/modules/virtualisation/containers.nix | 20 ++----------------- .../nixos-container/default.nix | 17 ++++++++++++++++ .../nixos-container-completion.sh | 0 .../nixos-container}/nixos-container.pl | 0 pkgs/top-level/all-packages.nix | 2 ++ 5 files changed, 21 insertions(+), 18 deletions(-) create mode 100644 pkgs/tools/virtualization/nixos-container/default.nix rename {nixos/modules/virtualisation => pkgs/tools/virtualization/nixos-container}/nixos-container-completion.sh (100%) rename {nixos/modules/virtualisation => pkgs/tools/virtualization/nixos-container}/nixos-container.pl (100%) diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix index 13ecb8e25ed..b3870caece0 100644 --- a/nixos/modules/virtualisation/containers.nix +++ b/nixos/modules/virtualisation/containers.nix @@ -4,22 +4,6 @@ with lib; let - nixos-container = pkgs.substituteAll { - name = "nixos-container"; - dir = "bin"; - isExecutable = true; - src = ./nixos-container.pl; - perl = "${pkgs.perl}/bin/perl -I${pkgs.perlPackages.FileSlurp}/lib/perl5/site_perl"; - su = "${pkgs.shadow.su}/bin/su"; - inherit (pkgs) utillinux; - - postInstall = '' - t=$out/etc/bash_completion.d - mkdir -p $t - cp ${./nixos-container-completion.sh} $t/nixos-container - ''; - }; - # The container's init script, a small wrapper around the regular # NixOS stage-2 init script. containerInit = pkgs.writeScript "container-init" @@ -410,7 +394,7 @@ in ExecReload = pkgs.writeScript "reload-container" '' #! ${pkgs.stdenv.shell} -e - ${nixos-container}/bin/nixos-container run "$INSTANCE" -- \ + ${pkgs.nixos-container}/bin/nixos-container run "$INSTANCE" -- \ bash --login -c "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/bin/switch-to-configuration test" ''; @@ -498,6 +482,6 @@ in networking.dhcpcd.denyInterfaces = [ "ve-*" ]; - environment.systemPackages = [ nixos-container ]; + environment.systemPackages = [ pkgs.nixos-container ]; }); } diff --git a/pkgs/tools/virtualization/nixos-container/default.nix b/pkgs/tools/virtualization/nixos-container/default.nix new file mode 100644 index 00000000000..0763536533f --- /dev/null +++ b/pkgs/tools/virtualization/nixos-container/default.nix @@ -0,0 +1,17 @@ +{ substituteAll, perl, perlPackages, shadow, utillinux }: + +substituteAll { + name = "nixos-container"; + dir = "bin"; + isExecutable = true; + src = ./nixos-container.pl; + perl = "${perl}/bin/perl -I${perlPackages.FileSlurp}/lib/perl5/site_perl"; + su = "${shadow.su}/bin/su"; + inherit utillinux; + + postInstall = '' + t=$out/etc/bash_completion.d + mkdir -p $t + cp ${./nixos-container-completion.sh} $t/nixos-container + ''; +} diff --git a/nixos/modules/virtualisation/nixos-container-completion.sh b/pkgs/tools/virtualization/nixos-container/nixos-container-completion.sh similarity index 100% rename from nixos/modules/virtualisation/nixos-container-completion.sh rename to pkgs/tools/virtualization/nixos-container/nixos-container-completion.sh diff --git a/nixos/modules/virtualisation/nixos-container.pl b/pkgs/tools/virtualization/nixos-container/nixos-container.pl similarity index 100% rename from nixos/modules/virtualisation/nixos-container.pl rename to pkgs/tools/virtualization/nixos-container/nixos-container.pl diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a1074ce7dbd..6ef41432b18 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16979,6 +16979,8 @@ in nixos-artwork = callPackage ../data/misc/nixos-artwork { }; + nixos-container = callPackage ../tools/virtualization/nixos-container { }; + norwester-font = callPackage ../data/fonts/norwester {}; nut = callPackage ../applications/misc/nut { }; From 77fcccf7d70636c1aede4907e308a1a7b03ce120 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 19 Jul 2016 08:47:43 +0200 Subject: [PATCH 412/508] wikicurses: init at 1.3 (#16916) --- pkgs/applications/misc/wikicurses/default.nix | 22 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/misc/wikicurses/default.nix diff --git a/pkgs/applications/misc/wikicurses/default.nix b/pkgs/applications/misc/wikicurses/default.nix new file mode 100644 index 00000000000..54e56785071 --- /dev/null +++ b/pkgs/applications/misc/wikicurses/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pythonPackages }: + +pythonPackages.buildPythonApplication rec { + version = "1.3"; + name = "wikicurses-${version}"; + + src = fetchurl { + url = "http://github.com/ids1024/wikicurses/archive/v${version}.tar.gz"; + sha256 = "1yxgafk1sczg1xi2p6nhrvr3hchp7ydw98n48lp3qzwnryn1kxv8"; + }; + + propagatedBuildInputs = with pythonPackages; [ urwid beautifulsoup4 lxml ]; + + meta = { + description = "A simple curses interface for MediaWiki sites such as Wikipedia"; + homepage = "https://github.com/ids1024/wikicurses/"; + license = stdenv.lib.licenses.mit; + platforms = stdenv.lib.platforms.unix; + }; + +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6ef41432b18..6c76d75c7fd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17251,6 +17251,10 @@ in webfs = callPackage ../servers/http/webfs { }; + wikicurses = callPackage ../applications/misc/wikicurses { + pythonPackages = python3Packages; + }; + wineMinimal = callPackage ../misc/emulators/wine { wineRelease = config.wine.release or "stable"; wineBuild = config.wine.build or "wine32"; From 5c534b2186ce08c7e3ea9dc25d7b7d435904b668 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 19 Jul 2016 09:02:14 +0200 Subject: [PATCH 413/508] phpPackages.composer: 1.0.0-alpha11 -> 1.2.0 --- pkgs/top-level/php-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix index f08117903be..1e042bedb4f 100644 --- a/pkgs/top-level/php-packages.nix +++ b/pkgs/top-level/php-packages.nix @@ -209,11 +209,11 @@ let composer = pkgs.stdenv.mkDerivation rec { name = "composer-${version}"; - version = "1.0.0-alpha11"; + version = "1.2.0"; src = pkgs.fetchurl { url = "https://getcomposer.org/download/${version}/composer.phar"; - sha256 = "1b41ad352p4296c2j7cdq27wp06w28080bjxnjpmw536scb7yd27"; + sha256 = "15chwfsqmwmhry3bv13a5y4ih1vzb0j8h1dfd49pnzzd8lai706w"; }; phases = [ "installPhase" ]; From c09338d037002c769b03950c22d744b5a1593fe2 Mon Sep 17 00:00:00 2001 From: Miguel Madrid Date: Tue, 19 Jul 2016 09:25:35 +0200 Subject: [PATCH 414/508] p7zip: 15.14.1 -> 16.02 (#17025) --- pkgs/tools/archivers/p7zip/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/archivers/p7zip/default.nix b/pkgs/tools/archivers/p7zip/default.nix index 63487b46034..7c952a8f729 100644 --- a/pkgs/tools/archivers/p7zip/default.nix +++ b/pkgs/tools/archivers/p7zip/default.nix @@ -1,14 +1,12 @@ { stdenv, fetchurl }: -let - version = "15.14.1"; -in stdenv.mkDerivation rec { name = "p7zip-${version}"; + version = "16.02"; src = fetchurl { url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2"; - sha256 = "1m15iwglyjpiw82m7dbpykz8s55imch34w20w09l34116vdb97b9"; + sha256 = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f"; }; preConfigure = '' From c6ba4cbde90ce7198ab5b0de06f25fc2d6014e9d Mon Sep 17 00:00:00 2001 From: Andrew Jamison Date: Tue, 19 Jul 2016 03:31:09 -0400 Subject: [PATCH 415/508] compton: add xwininfo dependency for compton-trans; clean up (#16877) --- .../window-managers/compton/default.nix | 38 +++++++++++++------ .../window-managers/compton/git.nix | 6 ++- 2 files changed, 31 insertions(+), 13 deletions(-) diff --git a/pkgs/applications/window-managers/compton/default.nix b/pkgs/applications/window-managers/compton/default.nix index 7efacafd6a1..5a79c0829b5 100644 --- a/pkgs/applications/window-managers/compton/default.nix +++ b/pkgs/applications/window-managers/compton/default.nix @@ -1,10 +1,8 @@ -{ stdenv, fetchurl, pkgconfig -, dbus, libconfig, libdrm, libxml2, mesa, pcre -, libXcomposite, libXfixes, libXdamage, libXinerama -, libXrandr, libXrender, libXext }: +{ stdenv, fetchurl, pkgconfig, dbus, libconfig, libdrm, libxml2, mesa, pcre, + libXcomposite, libXfixes, libXdamage, libXinerama, libXrandr, libXrender, + libXext, xwininfo }: stdenv.mkDerivation rec { - name = "compton-0.1_beta2"; src = fetchurl { @@ -12,18 +10,36 @@ stdenv.mkDerivation rec { sha256 = "1mpgn1d98dv66xs2j8gaxjiw26nzwl9a641lrday7h40g3k45g9v"; }; - buildInputs = [ pkgconfig dbus libconfig libdrm libxml2 mesa pcre - libXcomposite libXfixes libXdamage libXinerama libXrandr libXrender libXext ]; + buildInputs = [ + pkgconfig + dbus + libconfig + libdrm + libxml2 + mesa + pcre + libXcomposite + libXfixes + libXdamage + libXinerama + libXrandr + libXrender + libXext + ]; + + propagatedBuildInputs = [ xwininfo ]; + installFlags = "PREFIX=$(out)"; meta = with stdenv.lib; { homepage = https://github.com/chjj/compton/; description = "A fork of XCompMgr, a sample compositing manager for X servers"; longDescription = '' - A fork of XCompMgr, which is a sample compositing manager for X servers - supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE extensions. It enables - basic eye-candy effects. This fork adds additional features, such as additional - effects, and a fork at a well-defined and proper place. + A fork of XCompMgr, which is a sample compositing manager for X + servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE + extensions. It enables basic eye-candy effects. This fork adds + additional features, such as additional effects, and a fork at a + well-defined and proper place. ''; license = licenses.mit; platforms = platforms.linux; diff --git a/pkgs/applications/window-managers/compton/git.nix b/pkgs/applications/window-managers/compton/git.nix index f4907f881af..afa7d123107 100644 --- a/pkgs/applications/window-managers/compton/git.nix +++ b/pkgs/applications/window-managers/compton/git.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, asciidoc, dbus, docbook_xml_dtd_45, docbook_xml_xslt, libconfig, libdrm, libxml2, libxslt, mesa, pcre, pkgconfig, libXcomposite, libXdamage, libXext, libXfixes, libXinerama, - libXrandr, libXrender }: + libXrandr, libXrender, xwininfo }: stdenv.mkDerivation { name = "compton-git-2015-09-21"; @@ -37,6 +37,8 @@ stdenv.mkDerivation { pcre ]; + propagatedBuildInputs = [ xwininfo ]; + installFlags = "PREFIX=$(out)"; meta = with stdenv.lib; { @@ -47,7 +49,7 @@ stdenv.mkDerivation { longDescription = '' A fork of XCompMgr, which is a sample compositing manager for X servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE - extensions. It enables basic eye-candy effects. This fork adds + extensions. It enables basic eye-candy effects. This fork adds additional features, such as additional effects, and a fork at a well-defined and proper place. ''; From a9728c279659ea5f9c2674373dcec4ac2ae615c1 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Tue, 19 Jul 2016 00:31:52 -0700 Subject: [PATCH 416/508] rkt: install stage1 ACIs to expected path (#17079) Makes rkt's `--stage1-from-dir` CLI argument work. --- pkgs/applications/virtualization/rkt/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 17c7f7e2928..18e5d6dd4db 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -50,7 +50,11 @@ in stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp -Rv $BUILDDIR/target/bin/* $out/bin + cp -Rv $BUILDDIR/target/bin/rkt $out/bin + + mkdir -p $out/lib/rkt/stage1-images/ + cp -Rv $BUILDDIR/target/bin/stage1-*.aci $out/lib/rkt/stage1-images/ + wrapProgram $out/bin/rkt \ --prefix LD_LIBRARY_PATH : ${systemd}/lib \ --prefix PATH : ${iptables}/bin From a6e3a53229ae8e4e4008feb04eeb91be6852d436 Mon Sep 17 00:00:00 2001 From: Matthew Maurer Date: Tue, 19 Jul 2016 03:36:34 -0400 Subject: [PATCH 417/508] ocaml-bitstring: git -> 2.0.4 (#17002) Google Code no longer supports git cloning. We could restore this revision by exporting the repository to github and working from there, but barring a request for it, we can just use the released version. --- .../ocaml-modules/bitstring/camlp4-git.patch | 44 ------------------- .../ocaml-modules/bitstring/default.nix | 28 ------------ pkgs/top-level/all-packages.nix | 8 +--- 3 files changed, 1 insertion(+), 79 deletions(-) delete mode 100644 pkgs/development/ocaml-modules/bitstring/camlp4-git.patch delete mode 100644 pkgs/development/ocaml-modules/bitstring/default.nix diff --git a/pkgs/development/ocaml-modules/bitstring/camlp4-git.patch b/pkgs/development/ocaml-modules/bitstring/camlp4-git.patch deleted file mode 100644 index 24d2e362dfa..00000000000 --- a/pkgs/development/ocaml-modules/bitstring/camlp4-git.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff --git a/Makefile.in b/Makefile.in -index d040f4c..cc1a8f5 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -40,7 +40,7 @@ pkg_extlib = @OCAML_PKG_extlib@ - enable_coverage = @enable_coverage@ - - OCAMLCFLAGS = -g --OCAMLCPACKAGES = -+OCAMLCPACKAGES = -package camlp4 - OCAMLCLIBS = -linkpkg - OCAMLOPTFLAGS = $(OCAMLCFLAGS) - OCAMLOPTPACKAGES = $(OCAMLCPACKAGES) -@@ -110,12 +110,13 @@ bitstring_persistent.cmi: bitstring_persistent.mli - -I +camlp4 -pp camlp4of -c $< - - pa_bitstring.cmo: pa_bitstring.ml bitstring.cma bitstring_persistent.cma -- $(OCAMLFIND) ocamlc bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \ -+ $(OCAMLFIND) ocamlc $(OCAMLCPACKAGES) \ -+ bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \ - -pp camlp4of -c $< -o $@ - - bitstring-objinfo: bitstring_objinfo.cmo bitstring.cma bitstring_persistent.cma - $(OCAMLFIND) ocamlc -I +camlp4 unix.cma dynlink.cma camlp4lib.cma \ -- $(OCAMLCFLAGS) $(OCAMLCLIBS) \ -+ $(OCAMLCFLAGS) $(OCAMLCLIBS) $(OCAMLCPACKAGES) \ - bitstring.cma bitstring_persistent.cma \ - $< -o $@ - -@@ -158,12 +159,13 @@ tests/test.bmpp: create_test_pattern - - create_test_pattern: create_test_pattern.cmo - $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \ -- unix.cma -I +camlp4 dynlink.cma camlp4lib.cma \ -+ unix.cma -I `ocamlfind query camlp4` dynlink.cma camlp4lib.cma \ - $(OCAMLCLIBS) \ - -I . bitstring.cma bitstring_persistent.cma $< -o $@ - - create_test_pattern.cmo: create_test_pattern.ml - $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \ -+ $(OCAMLCPACKAGES) \ - unix.cma -I +camlp4 \ - -I . -c $< -o $@ - diff --git a/pkgs/development/ocaml-modules/bitstring/default.nix b/pkgs/development/ocaml-modules/bitstring/default.nix deleted file mode 100644 index 2dc1b515c03..00000000000 --- a/pkgs/development/ocaml-modules/bitstring/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{stdenv, fetchgit, buildOcaml, time, autoconf, automake}: - -buildOcaml rec { - name = "bitstring"; - version = "f1673f8"; - src = fetchgit { - url = "https://code.google.com/p/bitstring/"; - rev = "f1673f8"; - sha256 = "1lh97qf1b7mq64pxkphr2w91ri5hfwg58cpjb2xd8a453c9jylw4"; - }; - - patches = [ ./camlp4-git.patch ./meta.patch ./srcdir.patch ]; - - buildInputs = [time autoconf automake]; - doCheck = true; - - createFindlibDestdir = true; - hasSharedObjects = true; - - preConfigure = "./bootstrap"; - - meta = with stdenv.lib; { - description = "This library adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml"; - homepage = http://code.google.com/p/bitstring/; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.maurer ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6c76d75c7fd..4a707de5717 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4974,13 +4974,7 @@ in bolt = callPackage ../development/ocaml-modules/bolt { }; - bitstring_2_0_4 = callPackage ../development/ocaml-modules/bitstring/2.0.4.nix { }; - bitstring_git = callPackage ../development/ocaml-modules/bitstring { }; - - bitstring = - if lib.versionOlder "4.02" ocaml_version - then bitstring_git - else bitstring_2_0_4; + bitstring = callPackage ../development/ocaml-modules/bitstring/2.0.4.nix { }; camlidl = callPackage ../development/tools/ocaml/camlidl { }; From 3530f3f20a934ed1d3df35fe3c8041d197f8b41e Mon Sep 17 00:00:00 2001 From: Christian Kauhaus Date: Tue, 19 Jul 2016 09:42:53 +0200 Subject: [PATCH 418/508] systemd: make ctrl-alt-del target configurable. (#16911) We currently only allow upstream's default of "reboot.target" due to the way the symlinks are initialized. I made this configurable similar to the default unit. --- nixos/modules/system/boot/systemd-lib.nix | 2 +- nixos/modules/system/boot/systemd.nix | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/nixos/modules/system/boot/systemd-lib.nix b/nixos/modules/system/boot/systemd-lib.nix index 8acaa5212f5..2e93693cbfc 100644 --- a/nixos/modules/system/boot/systemd-lib.nix +++ b/nixos/modules/system/boot/systemd-lib.nix @@ -176,7 +176,7 @@ rec { ${optionalString (type == "system") '' # Stupid misc. symlinks. ln -s ${cfg.defaultUnit} $out/default.target - + ln -s ${cfg.ctrlAltDelUnit} $out/ctrl-alt-del.target ln -s rescue.target $out/kbrequest.target mkdir -p $out/getty.target.wants/ diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 5c8cce5066a..df72be1b4be 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -120,7 +120,6 @@ let "systemd-poweroff.service" "halt.target" "systemd-halt.service" - "ctrl-alt-del.target" "shutdown.target" "umount.target" "final.target" @@ -162,7 +161,6 @@ let "systemd-hostnamed.service" "systemd-binfmt.service" ] - ++ cfg.additionalUpstreamSystemUnits; upstreamSystemWants = @@ -485,6 +483,15 @@ in description = "Default unit started when the system boots."; }; + systemd.ctrlAltDelUnit = mkOption { + default = "reboot.target"; + type = types.str; + example = "poweroff.target"; + description = '' + Target that should be started when Ctrl-Alt-Delete is pressed. + ''; + }; + systemd.globalEnvironment = mkOption { type = types.attrs; default = {}; From e54ec2f907e8980027ba040f11375adac478cc84 Mon Sep 17 00:00:00 2001 From: Renzo Carbonara Date: Tue, 19 Jul 2016 04:48:36 -0300 Subject: [PATCH 419/508] fetchMavenArtifact: init (#16825) fetchMavenArtifact downloads a Maven artifact given a group id, an artifact id, and a version. Example usage: org_apache_httpcomponents_httpclient_4_5_2 = fetchMavenArtifact { groupId = "org.apache.httpcomponents"; artifactId = "httpclient"; version = "4.5.2"; sha256 = "0ms00zc28pwqk83nwwbafhq6p8zci9mrjzbqalpn6v0d80hwdzqd"; # Optionally: repos = [ ... urls to some Maven repos to use ... ]; # Optionally: url, urls - pointing directly to a specific jar url. }; Now `org_apache_httpcomponents_httpclient_4_5_2.jar` points to the downloaded JAR file, while `org_apache_httpcomponents_httpclient_4_5_2` refers to a derivation that when used used in `buildInputs` will be automatically added to the Java classpath. --- .../fetchmavenartifact/default.nix | 75 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 77 insertions(+) create mode 100644 pkgs/build-support/fetchmavenartifact/default.nix diff --git a/pkgs/build-support/fetchmavenartifact/default.nix b/pkgs/build-support/fetchmavenartifact/default.nix new file mode 100644 index 00000000000..a9c53249ae8 --- /dev/null +++ b/pkgs/build-support/fetchmavenartifact/default.nix @@ -0,0 +1,75 @@ +# Adaptation of the MIT-licensed work on `sbt2nix` done by Charles O'Farrell + +{ fetchurl, stdenv }: +let + defaultRepos = [ + http://central.maven.org/maven2 + http://oss.sonatype.org/content/repositories/releases + http://oss.sonatype.org/content/repositories/public + http://repo.typesafe.com/typesafe/releases + ]; +in + +args@ +{ # Example: "org.apache.httpcomponents" + groupId +, # Example: "httpclient" + artifactId +, # Example: "4.3.6" + version +, # List of maven repositories from where to fetch the artifact. + # Example: [ http://oss.sonatype.org/content/repositories/public ]. + repos ? defaultRepos + # The `url` and `urls` parameters, if specified should point to the JAR + # file and will take precedence over the `repos` parameter. Only one of `url` + # and `urls` can be specified, not both. +, url ? "" +, urls ? [] +, # The rest of the arguments are just forwarded to `fetchurl`. + ... +}: + +# only one of url and urls can be specified at a time. +assert (url == "") || (urls == []); +# if repos is empty, then url or urls must be specified. +assert (repos != []) || (url != "") || (urls != []); + + +let + name_ = + with stdenv.lib; concatStrings [ + (replaceChars ["."] ["_"] groupId) "_" + (replaceChars ["."] ["_"] artifactId) "-" + version + ]; + mkJarUrl = repoUrl: + with stdenv.lib; concatStringsSep "/" [ + (removeSuffix "/" repoUrl) + (replaceChars ["."] ["/"] groupId) + artifactId + version + "${artifactId}-${version}.jar" + ]; + urls_ = + if url != "" then [url] + else if urls != [] then urls + else map mkJarUrl repos; + jar = + fetchurl ( + builtins.removeAttrs args ["groupId" "artifactId" "version" "repos" "url" ] + // { urls = urls_; name = "${name_}.jar"; } + ); +in + stdenv.mkDerivation { + name = name_; + phases = "installPhase fixupPhase"; + # By moving the jar to $out/share/java we make it discoverable by java + # packages packages that mention this derivation in their buildInputs. + installPhase = '' + mkdir -p $out/share/java + ln -s ${jar} $out/share/java + ''; + # We also add a `jar` attribute that can be used to easily obtain the path + # to the downloaded jar file. + passthru.jar = jar; + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4a707de5717..f694349f9a3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -167,6 +167,8 @@ in fetchmtn = callPackage ../build-support/fetchmtn (config.fetchmtn or {}); + fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { }; + packer = callPackage ../development/tools/packer { }; fetchpatch = callPackage ../build-support/fetchpatch { }; From 9a8e0d1c2ef11a2ae0b7b5669ff28059db1dde4f Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Tue, 19 Jul 2016 08:57:13 +0100 Subject: [PATCH 420/508] zfs: Force sync on shutdown (#16903) --- nixos/modules/tasks/filesystems/zfs.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 19292bd1ef7..80aec1bba0f 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -270,7 +270,23 @@ in ("$zpool_cmd" list "${pool}" >/dev/null) || "$zpool_cmd" import -d ${cfgZfs.devNodes} -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}" ''; }; - in listToAttrs (map createImportService dataPools) // { + + # This forces a sync of any ZFS pools prior to poweroff, even if they're set + # to sync=disabled. + createSyncService = pool: + nameValuePair "zfs-sync-${pool}" { + description = "Sync ZFS pool \"${pool}\""; + wantedBy = [ "shutdown.target" ]; + serviceConfig = { + Type = "oneshot"; + RemainAfterExit = true; + }; + script = '' + ${zfsUserPkg}/sbin/zfs set nixos:shutdown-time="$(date)" "${pool}" + ''; + }; + + in listToAttrs (map createImportService dataPools ++ map createSyncService allPools) // { "zfs-mount" = { after = [ "systemd-modules-load.service" ]; }; "zfs-share" = { after = [ "systemd-modules-load.service" ]; }; "zed" = { after = [ "systemd-modules-load.service" ]; }; From afa69e14dbc63792f541e2b6b2a8eca8e429c342 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 19 Jul 2016 10:04:32 +0200 Subject: [PATCH 421/508] Revert "ocaml-bitstring: git -> 2.0.4 (#17002)" This reverts commit a6e3a53229ae8e4e4008feb04eeb91be6852d436. See #17002. --- .../ocaml-modules/bitstring/camlp4-git.patch | 44 +++++++++++++++++++ .../ocaml-modules/bitstring/default.nix | 28 ++++++++++++ pkgs/top-level/all-packages.nix | 8 +++- 3 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/ocaml-modules/bitstring/camlp4-git.patch create mode 100644 pkgs/development/ocaml-modules/bitstring/default.nix diff --git a/pkgs/development/ocaml-modules/bitstring/camlp4-git.patch b/pkgs/development/ocaml-modules/bitstring/camlp4-git.patch new file mode 100644 index 00000000000..24d2e362dfa --- /dev/null +++ b/pkgs/development/ocaml-modules/bitstring/camlp4-git.patch @@ -0,0 +1,44 @@ +diff --git a/Makefile.in b/Makefile.in +index d040f4c..cc1a8f5 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -40,7 +40,7 @@ pkg_extlib = @OCAML_PKG_extlib@ + enable_coverage = @enable_coverage@ + + OCAMLCFLAGS = -g +-OCAMLCPACKAGES = ++OCAMLCPACKAGES = -package camlp4 + OCAMLCLIBS = -linkpkg + OCAMLOPTFLAGS = $(OCAMLCFLAGS) + OCAMLOPTPACKAGES = $(OCAMLCPACKAGES) +@@ -110,12 +110,13 @@ bitstring_persistent.cmi: bitstring_persistent.mli + -I +camlp4 -pp camlp4of -c $< + + pa_bitstring.cmo: pa_bitstring.ml bitstring.cma bitstring_persistent.cma +- $(OCAMLFIND) ocamlc bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \ ++ $(OCAMLFIND) ocamlc $(OCAMLCPACKAGES) \ ++ bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \ + -pp camlp4of -c $< -o $@ + + bitstring-objinfo: bitstring_objinfo.cmo bitstring.cma bitstring_persistent.cma + $(OCAMLFIND) ocamlc -I +camlp4 unix.cma dynlink.cma camlp4lib.cma \ +- $(OCAMLCFLAGS) $(OCAMLCLIBS) \ ++ $(OCAMLCFLAGS) $(OCAMLCLIBS) $(OCAMLCPACKAGES) \ + bitstring.cma bitstring_persistent.cma \ + $< -o $@ + +@@ -158,12 +159,13 @@ tests/test.bmpp: create_test_pattern + + create_test_pattern: create_test_pattern.cmo + $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \ +- unix.cma -I +camlp4 dynlink.cma camlp4lib.cma \ ++ unix.cma -I `ocamlfind query camlp4` dynlink.cma camlp4lib.cma \ + $(OCAMLCLIBS) \ + -I . bitstring.cma bitstring_persistent.cma $< -o $@ + + create_test_pattern.cmo: create_test_pattern.ml + $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \ ++ $(OCAMLCPACKAGES) \ + unix.cma -I +camlp4 \ + -I . -c $< -o $@ + diff --git a/pkgs/development/ocaml-modules/bitstring/default.nix b/pkgs/development/ocaml-modules/bitstring/default.nix new file mode 100644 index 00000000000..2dc1b515c03 --- /dev/null +++ b/pkgs/development/ocaml-modules/bitstring/default.nix @@ -0,0 +1,28 @@ +{stdenv, fetchgit, buildOcaml, time, autoconf, automake}: + +buildOcaml rec { + name = "bitstring"; + version = "f1673f8"; + src = fetchgit { + url = "https://code.google.com/p/bitstring/"; + rev = "f1673f8"; + sha256 = "1lh97qf1b7mq64pxkphr2w91ri5hfwg58cpjb2xd8a453c9jylw4"; + }; + + patches = [ ./camlp4-git.patch ./meta.patch ./srcdir.patch ]; + + buildInputs = [time autoconf automake]; + doCheck = true; + + createFindlibDestdir = true; + hasSharedObjects = true; + + preConfigure = "./bootstrap"; + + meta = with stdenv.lib; { + description = "This library adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml"; + homepage = http://code.google.com/p/bitstring/; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.maurer ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f694349f9a3..11f2783eabf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4976,7 +4976,13 @@ in bolt = callPackage ../development/ocaml-modules/bolt { }; - bitstring = callPackage ../development/ocaml-modules/bitstring/2.0.4.nix { }; + bitstring_2_0_4 = callPackage ../development/ocaml-modules/bitstring/2.0.4.nix { }; + bitstring_git = callPackage ../development/ocaml-modules/bitstring { }; + + bitstring = + if lib.versionOlder "4.02" ocaml_version + then bitstring_git + else bitstring_2_0_4; camlidl = callPackage ../development/tools/ocaml/camlidl { }; From 7c75fa4bc20492ac52c0b978a777d55e5844c9a2 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Sat, 16 Jul 2016 08:15:24 +0100 Subject: [PATCH 422/508] python: add alpha release of 3.6 This might be jumping the gun a little, but I needed to use 3.6 locally and thought I may as well push it upstream. --- .../interpreters/python/3.6/default.nix | 138 ++++++++++++++++++ .../interpreters/python/3.6/setup-hook.sh | 15 ++ pkgs/top-level/all-packages.nix | 9 ++ pkgs/top-level/python-packages.nix | 4 +- 4 files changed, 165 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/interpreters/python/3.6/default.nix create mode 100644 pkgs/development/interpreters/python/3.6/setup-hook.sh diff --git a/pkgs/development/interpreters/python/3.6/default.nix b/pkgs/development/interpreters/python/3.6/default.nix new file mode 100644 index 00000000000..4af46f2533b --- /dev/null +++ b/pkgs/development/interpreters/python/3.6/default.nix @@ -0,0 +1,138 @@ +{ stdenv, fetchurl +, glibc +, bzip2 +, db +, gdbm +, libX11, xproto +, lzma +, ncurses +, openssl +, readline +, sqlite +, tcl, tk +, zlib +, callPackage +, self +, python36Packages + +, CF, configd +}: + +assert readline != null -> ncurses != null; + +with stdenv.lib; + +let + majorVersion = "3.6"; + pythonVersion = majorVersion; + version = "${majorVersion}.0a3"; + fullVersion = "${version}"; + + buildInputs = filter (p: p != null) [ + glibc + zlib + bzip2 + lzma + gdbm + sqlite + db + readline + ncurses + openssl + tcl + tk + libX11 + xproto + ] ++ optionals stdenv.isDarwin [ CF configd ]; +in +stdenv.mkDerivation { + name = "python3-${fullVersion}"; + pythonVersion = majorVersion; + inherit majorVersion version; + + inherit buildInputs; + + src = fetchurl { + url = "https://www.python.org/ftp/python/${majorVersion}.0/Python-${fullVersion}.tar.xz"; + sha256 = "08c3598bwihibwca9lwxq923sjq9shvgv3wxv4vkga2n6hf63l1c"; + }; + + NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s"; + + prePatch = optionalString stdenv.isDarwin '' + substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"' + ''; + + preConfigure = '' + for i in /usr /sw /opt /pkg; do # improve purity + substituteInPlace ./setup.py --replace $i /no-such-path + done + ${optionalString stdenv.isDarwin '' + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2" + export MACOSX_DEPLOYMENT_TARGET=10.6 + ''} + + substituteInPlace ./Lib/plat-generic/regen --replace "/usr/include" ${glibc}/include + + configureFlagsArray=( --enable-shared --with-threads + 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"}" + ) + ''; + + setupHook = ./setup-hook.sh; + + postInstall = '' + # needed for some packages, especially packages that backport functionality + # to 2.x from 3.x + for item in $out/lib/python${majorVersion}/test/*; do + if [[ "$item" != */test_support.py* ]]; then + rm -rf "$item" + else + echo $item + fi + done + touch $out/lib/python${majorVersion}/test/__init__.py + + ln -s "$out/include/python${majorVersion}m" "$out/include/python${majorVersion}" + paxmark E $out/bin/python${majorVersion} + ''; + + passthru = rec { + zlibSupport = zlib != null; + sqliteSupport = sqlite != null; + dbSupport = db != null; + readlineSupport = readline != null; + opensslSupport = openssl != null; + tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null); + libPrefix = "python${majorVersion}"; + executable = "python${majorVersion}m"; + buildEnv = callPackage ../wrapper.nix { python = self; }; + withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python36Packages; }; + isPy3 = true; + isPy35 = true; + is_py3k = true; # deprecated + sitePackages = "lib/${libPrefix}/site-packages"; + interpreter = "${self}/bin/${executable}"; + }; + + enableParallelBuilding = true; + + meta = { + homepage = http://python.org; + description = "A high-level dynamically-typed programming language"; + longDescription = '' + Python is a remarkably powerful dynamic programming language that + is used in a wide variety of application domains. Some of its key + distinguishing features include: clear, readable syntax; strong + introspection capabilities; intuitive object orientation; natural + expression of procedural code; full modularity, supporting + hierarchical packages; exception-based error handling; and very + high level dynamic data types. + ''; + license = licenses.psfl; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ chaoflow domenkozar cstrahan kragniz ]; + }; +} diff --git a/pkgs/development/interpreters/python/3.6/setup-hook.sh b/pkgs/development/interpreters/python/3.6/setup-hook.sh new file mode 100644 index 00000000000..26a0d57bc87 --- /dev/null +++ b/pkgs/development/interpreters/python/3.6/setup-hook.sh @@ -0,0 +1,15 @@ +addPythonPath() { + addToSearchPathWithCustomDelimiter : PYTHONPATH $1/lib/python3.6/site-packages +} + +toPythonPath() { + local paths="$1" + local result= + for i in $paths; do + p="$i/lib/python3.6/site-packages" + result="${result}${result:+:}$p" + done + echo $result +} + +envHooks+=(addPythonPath) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 11f2783eabf..0da2c025201 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5850,6 +5850,10 @@ in inherit (darwin) CF configd; self = python35; }); + python36 = callPackage ../development/interpreters/python/3.6 { + inherit (darwin) CF configd; + self = python36; + }; pypy = callPackage ../development/interpreters/pypy { self = pypy; }; @@ -9899,6 +9903,11 @@ in self = python35Packages; }); + python36Packages = (callPackage ./python-packages.nix { + python = python36; + self = python36Packages; + }); + pypyPackages = callPackage ./python-packages.nix { python = pypy; self = pypyPackages; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7bdf5491746..f8ca093b1bf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10,6 +10,7 @@ let isPy33 = python.majorVersion == "3.3"; isPy34 = python.majorVersion == "3.4"; isPy35 = python.majorVersion == "3.5"; + isPy36 = python.majorVersion == "3.6"; isPyPy = python.executable == "pypy"; isPy3k = strings.substring 0 1 python.majorVersion == "3"; @@ -30,6 +31,7 @@ let if isPy33 then "python33" else if isPy34 then "python34" else if isPy35 then "python35" else + if isPy36 then "python36" else if isPyPy then "pypy" else ""; modules = python.modules or { @@ -42,7 +44,7 @@ let in modules // { - inherit python bootstrapped-pip isPy26 isPy27 isPy33 isPy34 isPy35 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication; + inherit python bootstrapped-pip isPy26 isPy27 isPy33 isPy34 isPy35 isPy36 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication; # helpers From 773f6225cbcb33cacd729d5308b8813d6618674d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 10:13:21 +0200 Subject: [PATCH 423/508] Python 3.6: add less --- pkgs/development/interpreters/python/3.6/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/interpreters/python/3.6/default.nix b/pkgs/development/interpreters/python/3.6/default.nix index 4af46f2533b..9515e1587d7 100644 --- a/pkgs/development/interpreters/python/3.6/default.nix +++ b/pkgs/development/interpreters/python/3.6/default.nix @@ -3,6 +3,7 @@ , bzip2 , db , gdbm +, less , libX11, xproto , lzma , ncurses @@ -44,6 +45,11 @@ let libX11 xproto ] ++ optionals stdenv.isDarwin [ CF configd ]; + + propagatedBuildInputs = [ + less + ]; + in stdenv.mkDerivation { name = "python3-${fullVersion}"; @@ -51,6 +57,7 @@ stdenv.mkDerivation { inherit majorVersion version; inherit buildInputs; + inherit propagatedBuildInputs; src = fetchurl { url = "https://www.python.org/ftp/python/${majorVersion}.0/Python-${fullVersion}.tar.xz"; From e261818c687af3fee9caa77b349d6f74a9e6aa93 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 10:13:43 +0200 Subject: [PATCH 424/508] Python 3.5: add less --- pkgs/development/interpreters/python/3.5/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index e0adad2bae2..21716c87386 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -2,6 +2,7 @@ , bzip2 , db , gdbm +, less , libX11, xproto , lzma , ncurses @@ -42,6 +43,11 @@ let libX11 xproto ] ++ optionals stdenv.isDarwin [ CF configd ]; + + propagatedBuildInputs = [ + less + ]; + in stdenv.mkDerivation { name = "python3-${fullVersion}"; @@ -49,6 +55,7 @@ stdenv.mkDerivation { inherit majorVersion version; inherit buildInputs; + inherit propagatedBuildInputs; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; From b410631d6ddc455b5652abafa63d2f77c895d0ef Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 10:13:51 +0200 Subject: [PATCH 425/508] Python 3.4: add less --- pkgs/development/interpreters/python/3.4/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 1cd7f58e95e..7ea6adc4370 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -2,6 +2,7 @@ , bzip2 , db , gdbm +, less , libX11, xproto , lzma , ncurses @@ -42,6 +43,11 @@ let libX11 xproto ] ++ optionals stdenv.isDarwin [ CF configd ]; + + propagatedBuildInputs = [ + less + ]; + in stdenv.mkDerivation { name = "python3-${fullVersion}"; @@ -49,6 +55,7 @@ stdenv.mkDerivation { inherit majorVersion version; inherit buildInputs; + inherit propagatedBuildInputs; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; From c59d211b4b528ff17f422b564382225adde917e8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 10:13:57 +0200 Subject: [PATCH 426/508] Python 3.3: add less --- pkgs/development/interpreters/python/3.3/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index 8c16995d5cc..8a36e03c784 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -2,6 +2,7 @@ , bzip2 , db , gdbm +, less , libX11, xproto , lzma , ncurses @@ -27,6 +28,11 @@ let buildInputs = filter (p: p != null) [ zlib bzip2 lzma gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto ]; + + propagatedBuildInputs = [ + less + ]; + in stdenv.mkDerivation { name = "python3-${version}"; @@ -34,6 +40,7 @@ stdenv.mkDerivation { inherit majorVersion version; inherit buildInputs; + inherit propagatedBuildInputs; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"; From bce5a51a9f33a16bf91e7d72a927c3382f333442 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 10:14:03 +0200 Subject: [PATCH 427/508] Python 2.7: add less --- pkgs/development/interpreters/python/2.7/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index e47fc82f4e8..db9135ea2ab 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, self, callPackage, python27Packages , bzip2, openssl, gettext +, less , includeModules ? false @@ -108,7 +109,7 @@ let ++ optional zlibSupport zlib ++ optional stdenv.isDarwin CF; - propagatedBuildInputs = optional stdenv.isDarwin configd; + propagatedBuildInputs = [ less ] ++ optional stdenv.isDarwin configd; mkPaths = paths: { C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths; From 6bcf1944494973029071411bb378d4262ce2a678 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 19 Jul 2016 10:48:39 +0200 Subject: [PATCH 428/508] tarball: Only check nix files for nixpkgs references Fixes travis build failure. --- pkgs/top-level/make-tarball.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index da3579a6595..b664dceaa95 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -40,7 +40,7 @@ releaseTools.sourceTarball rec { echo 'abort "Illegal use of in Nixpkgs."' > $TMPDIR/barf.nix # Make sure that Nixpkgs does not use - if grep -r ' to refer to itself." exit 1 fi From 4463f9f3d461615601b0280740f550e96026d129 Mon Sep 17 00:00:00 2001 From: schneefux Date: Fri, 17 Jun 2016 17:38:40 +0200 Subject: [PATCH 429/508] hugo: init at 0.16 Closes #16299. --- pkgs/applications/misc/hugo/default.nix | 18 +++ pkgs/applications/misc/hugo/deps.json | 44 ++++++ pkgs/development/go-modules/libs.json | 198 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 262 insertions(+) create mode 100644 pkgs/applications/misc/hugo/default.nix create mode 100644 pkgs/applications/misc/hugo/deps.json diff --git a/pkgs/applications/misc/hugo/default.nix b/pkgs/applications/misc/hugo/default.nix new file mode 100644 index 00000000000..c183f70a289 --- /dev/null +++ b/pkgs/applications/misc/hugo/default.nix @@ -0,0 +1,18 @@ +{ stdenv, buildGoPackage, fetchFromGitHub }: + +buildGoPackage rec { + name = "hugo-${version}"; + version = "v0.16"; + rev = "8b54843a0db694facbaf368af4e777d0ae5fb992"; + + goPackagePath = "github.com/spf13/hugo"; + + src = fetchFromGitHub { + inherit rev; + owner = "spf13"; + repo = "hugo"; + sha256 = "135mrdi8i56z9m2sihjrdfab6lrczbfgavwvfrngvi1zxnx7scmv"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/applications/misc/hugo/deps.json b/pkgs/applications/misc/hugo/deps.json new file mode 100644 index 00000000000..47f67d4269c --- /dev/null +++ b/pkgs/applications/misc/hugo/deps.json @@ -0,0 +1,44 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "gopkg.in/yaml.v2", + "github.com/hashicorp/hcl", + "github.com/pkg/sftp", + "golang.org/x/sys", + "github.com/hashicorp/go-multierror", + "golang.org/x/crypto", + "github.com/pkg/errors", + "github.com/kr/fs", + "github.com/kyokomi/emoji", + "github.com/bep/inflect", + "github.com/BurntSushi/toml", + "github.com/PuerkitoBio/purell", + "github.com/PuerkitoBio/urlesc", + "github.com/dchest/cssmin", + "github.com/eknkc/amber", + "github.com/gorilla/websocket", + "github.com/kardianos/osext", + "github.com/miekg/mmark", + "github.com/mitchellh/mapstructure", + "github.com/russross/blackfriday", + "github.com/shurcooL/sanitized_anchor_name", + "github.com/spf13/afero", + "github.com/spf13/cast", + "github.com/spf13/jwalterweatherman", + "github.com/spf13/cobra", + "github.com/cpuguy83/go-md2man", + "github.com/inconshreveable/mousetrap", + "github.com/spf13/pflag", + "github.com/spf13/fsync", + "github.com/spf13/viper", + "github.com/kr/pretty", + "github.com/kr/text", + "github.com/magiconair/properties", + "golang.org/x/text", + "github.com/yosssi/ace", + "github.com/spf13/nitro", + "github.com/fsnotify/fsnotify" + ] + } +] diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 98a9374c4e4..9e1b4369136 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1601,6 +1601,42 @@ "sha256": "0dmc8iar9685ks1ba3vnycjsx8qxwyqv51jb7677dvwnzbqhgw6f" } }, + { + "goPackagePath": "github.com/yosssi/ace", + "fetch": { + "type": "git", + "url": "https://github.com/yosssi/ace", + "rev": "71afeb714739f9d5f7e1849bcd4a0a5938e1a70d", + "sha256": "15k7ji8m3nqbwhnsvp82j4qa45sgvwv2giliw2xkdwi2g7mfrn8k" + } + }, + { + "goPackagePath": "github.com/spf13/viper", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/viper", + "rev": "c1ccc378a054ea8d4e38d8c67f6938d4760b53dd", + "sha256": "0lpdzalqhqp9pwsg63inkxwjji7m0pp42ryw1499bqbjp97hriq0" + } + }, + { + "goPackagePath": "github.com/spf13/pflag", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/pflag", + "rev": "367864438f1b1a3c7db4da06a2f55b144e6784e0", + "sha256": "03c6654hv4v1fj79i5sri3p9q2afqgicka4nicb6fr4kcfkkgbfp" + } + }, + { + "goPackagePath": "github.com/spf13/jwalterweatherman", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/jwalterweatherman", + "rev": "33c24e77fb80341fe7130ee7c594256ff08ccc46", + "sha256": "1knvzspqzc2bh58q16zggzc8gcabjp5gr7zk4k7nx5ij4092cg0z" + } + }, { "goPackagePath": "github.com/fsnotify/fsnotify", "fetch": { @@ -1618,5 +1654,167 @@ "rev": "45c278ab3607870051a2ea9040bb85fcb8557481", "sha256": "0620v75wppfd84d95n312wpngcb73cph4q3ivs1h0waljfnsrd5l" } + }, + { + "goPackagePath": "github.com/magiconair/properties", + "fetch": { + "type": "git", + "url": "https://github.com/magiconair/properties", + "rev": "c265cfa48dda6474e208715ca93e987829f572f8", + "sha256": "1ab9ywwsrdq5mvrcwl7m3276y1q4dfwinbv88vgpqwcqai9wkpp3" + } + }, + { + "goPackagePath": "github.com/bep/inflect", + "fetch": { + "type": "git", + "url": "https://github.com/bep/inflect", + "rev": "b896c45f5af983b1f416bdf3bb89c4f1f0926f69", + "sha256": "0drv6in94n7lmap4ajvgqlvdcbpn8alinfdzywzpihvzbx21b3h3" + } + }, + { + "goPackagePath": "github.com/eknkc/amber", + "fetch": { + "type": "git", + "url": "https://github.com/eknkc/amber", + "rev": "91774f050c1453128146169b626489e60108ec03", + "sha256": "1rb8bm35h8a77q4py6r3818cpwh7kpq1kh2ib2rb4i5s7z75ciis" + } + }, + { + "goPackagePath": "github.com/spf13/afero", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/afero", + "rev": "1a8ecf8b9da1fb5306e149e83128fc447957d2a8", + "sha256": "1nrg0gmqnl4h6zjmi4mdhrwnl3l34nzxpq2hsr3nizfvrx5gqbzw" + } + }, + { + "goPackagePath": "github.com/spf13/cast", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/cast", + "rev": "27b586b42e29bec072fe7379259cc719e1289da6", + "sha256": "1y73pfxdvm1bfpghwsfxj8gl4miv6fpzi9azxcknp6rcjn1gmq0x" + } + }, + { + "goPackagePath": "github.com/spf13/cobra", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/cobra", + "rev": "bc81c21bd0d8be5ba2d6630a505d79d4467566e7", + "sha256": "1sp8gl25cjx0yibh6q1i8d5rbxpwaal3z8vz372wfmbz002say8r" + } + }, + { + "goPackagePath": "github.com/dchest/cssmin", + "fetch": { + "type": "git", + "url": "https://github.com/dchest/cssmin", + "rev": "fb8d9b44afdc258bfff6052d3667521babcb2239", + "sha256": "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s" + } + }, + { + "goPackagePath": "github.com/spf13/fsync", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/fsync", + "rev": "eefee59ad7de621617d4ff085cf768aab4b919b1", + "sha256": "0d56xdczawikyczc12i661qc79dbv4q8ihlj4p20zsjkyxxym59p" + } + }, + { + "goPackagePath": "github.com/cpuguy83/go-md2man", + "fetch": { + "type": "git", + "url": "https://github.com/cpuguy83/go-md2man", + "rev": "2724a9c9051aa62e9cca11304e7dd518e9e41599", + "sha256": "1j2bigs7ixy20cdqd246nxr417md2qcyvkfk3x94992cr88d0vyj" + } + }, + { + "goPackagePath": "github.com/miekg/mmark", + "fetch": { + "type": "git", + "url": "https://github.com/miekg/mmark", + "rev": "adb5c3e2e9f3e7da9bd25291edda8e66c0045a2a", + "sha256": "0fycz17fj37fh95lfshdrfwrgkzi3hl1kgnily0cxc9zwfbap3qa" + } + }, + { + "goPackagePath": "github.com/spf13/nitro", + "fetch": { + "type": "git", + "url": "https://github.com/spf13/nitro", + "rev": "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8", + "sha256": "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib" + } + }, + { + "goPackagePath": "github.com/PuerkitoBio/purell", + "fetch": { + "type": "git", + "url": "https://github.com/PuerkitoBio/purell", + "rev": "1d5d1cfad45d42ec5f81fa8ef23de09cebc6dcc3", + "sha256": "12k82576ka21c6572yy2v81kxpjrgf9mffjlz469g3vs0g3nkwlb" + } + }, + { + "goPackagePath": "github.com/opennota/urlesc", + "fetch": { + "type": "git", + "url": "https://github.com/opennota/urlesc", + "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587", + "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni" + } + }, + { + "goPackagePath": "github.com/pkg/sftp", + "fetch": { + "type": "git", + "url": "https://github.com/pkg/sftp", + "rev": "d4c18e7ffdc496a38de67dde6e29b2f364afc472", + "sha256": "0cnl83k317gxskayfj3xwr4bl0vcbjvlwi3q0vjwvircynb6xscj" + } + }, + { + "goPackagePath": "github.com/kr/fs", + "fetch": { + "type": "git", + "url": "https://github.com/kr/fs", + "rev": "2788f0dbd16903de03cb8186e5c7d97b69ad387b", + "sha256": "1c0fipl4rsh0v5liq1ska1dl83v3llab4k6lm8mvrx9c4dyp71ly" + } + }, + { + "goPackagePath": "github.com/kyokomi/emoji", + "fetch": { + "type": "git", + "url": "https://github.com/kyokomi/emoji", + "rev": "17c5e7085c9d59630aa578df67f4469481fbe7a9", + "sha256": "0qs4mi7z1lghiyiw7s2bz5y959wj9ifmhyqh39xwqk69d690jwlp" + } + }, + { + "goPackagePath": "github.com/pkg/errors", + "fetch": { + "type": "git", + "url": "https://github.com/pkg/errors", + "rev": "494e70f7620561491c2ca11e185bbef4b70060da", + "sha256": "0a0961ixl67vryhnzyzhai357c9n9a7v3vpkpqrh32spn033gjd9" + } + }, + { + "goPackagePath": "github.com/PuerkitoBio/urlesc", + "fetch": { + "type": "git", + "url": "https://github.com/PuerkitoBio/urlesc", + "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587", + "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni" + } } ] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0da2c025201..6037ba3f6e3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13279,6 +13279,8 @@ in hugin = callPackage ../applications/graphics/hugin { }; + hugo = callPackage ../applications/misc/hugo { }; + hydrogen = callPackage ../applications/audio/hydrogen { }; slack = callPackage ../applications/networking/instant-messengers/slack { }; From ae3896061b7d86223652250c46991df57d0698e5 Mon Sep 17 00:00:00 2001 From: Renzo Carbonara Date: Tue, 19 Jul 2016 06:09:20 -0300 Subject: [PATCH 430/508] gpg-mpd: init at 0.7.4 (#16527) --- pkgs/applications/misc/gpg-mdp/default.nix | 34 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/applications/misc/gpg-mdp/default.nix diff --git a/pkgs/applications/misc/gpg-mdp/default.nix b/pkgs/applications/misc/gpg-mdp/default.nix new file mode 100644 index 00000000000..fe58fa92d07 --- /dev/null +++ b/pkgs/applications/misc/gpg-mdp/default.nix @@ -0,0 +1,34 @@ +{ fetchurl, stdenv, ncurses, gnupg }: + +let version = "0.7.4"; +in stdenv.mkDerivation { + # mdp renamed to gpg-mdp because there is a mdp package already. + name = "gpg-mdp-${version}"; + meta = { + homepage = https://tamentis.com/projects/mdp/; + license = [stdenv.lib.licenses.isc]; + description = "Manage your passwords with GnuPG and a text editor"; + }; + src = fetchurl { + url = "https://tamentis.com/projects/mdp/files/mdp-${version}.tar.gz"; + sha256 = "04mdnx4ccpxf9m2myy9nvpl9ma4jgzmv9bkrzv2b9affzss3r34g"; + }; + buildInputs = [ ncurses ]; + prePatch = '' + substituteInPlace ./configure \ + --replace "alias echo=/bin/echo" "" + + substituteInPlace ./src/config.c \ + --replace "/usr/bin/gpg" "${gnupg}/bin/gpg2" \ + --replace "/usr/bin/vi" "vi" + + substituteInPlace ./mdp.1 \ + --replace "/usr/bin/gpg" "${gnupg}/bin/gpg2" + ''; + # we add symlinks to the binary and man page with the name 'gpg-mdp', in case + # the completely unrelated program also named 'mdp' is already installed. + postFixup = '' + ln -s $out/bin/mdp $out/bin/gpg-mdp + ln -s $out/share/man/man1/mdp.1.gz $out/share/man/man1/gpg-mdp.1.gz + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6037ba3f6e3..72901ffc8bc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12831,6 +12831,8 @@ in evopedia = callPackage ../applications/misc/evopedia { }; + gpg-mdp = callPackage ../applications/misc/gpg-mdp { }; + keepassx = callPackage ../applications/misc/keepassx { }; keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { }; From 6b11c96c86e907e9c2e107cf54133223c32dc009 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 11:02:33 +0200 Subject: [PATCH 431/508] Python 2.6: add less --- pkgs/development/interpreters/python/2.6/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 48712cc21b9..6641eb24b24 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, includeModules ? false +{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, less, includeModules ? false , sqlite, tcl, tk, xlibsWrapper, openssl, readline, db, ncurses, gdbm, self, callPackage , python26Packages }: @@ -53,6 +53,8 @@ let [ bzip2 openssl ]++ optionals includeModules [ db openssl ncurses gdbm readline xlibsWrapper tcl tk sqlite ] ++ optional zlibSupport zlib; + propagatedBuildInputs = [ less ]; + mkPaths = paths: { C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths; LIBRARY_PATH = makeLibraryPath paths; @@ -64,8 +66,8 @@ let name = "python${if includeModules then "" else "-minimal"}-${version}"; pythonVersion = majorVersion; - inherit majorVersion version src patches buildInputs preConfigure - configureFlags; + inherit majorVersion version src patches buildInputs propagatedBuildInputs + preConfigure configureFlags; inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH; From 537404c3b2c4db6c228696efe49f20a36c6c4dd6 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 19 Jul 2016 11:11:22 +0200 Subject: [PATCH 432/508] x42-plugins: 2015-07-02 -> 20160619 --- pkgs/applications/audio/x42-plugins/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/x42-plugins/default.nix b/pkgs/applications/audio/x42-plugins/default.nix index 1090ee4a61e..f3a72050810 100644 --- a/pkgs/applications/audio/x42-plugins/default.nix +++ b/pkgs/applications/audio/x42-plugins/default.nix @@ -3,12 +3,12 @@ , lv2, mesa, gtk2, cairo, pango, fftwFloat, zita-convolver }: stdenv.mkDerivation rec { - version = "2015-07-02"; + version = "20160619"; name = "x42-plugins-${version}"; src = fetchurl { - url = "http://gareus.org/misc/x42-plugins/x42-plugins-20150702.tar.xz"; - sha256 = "1mq0grabzbl9xsd53v2qajhr8nngk0d4lx9n0n3nwy95y2gmy6sm"; + url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz"; + sha256 = "1ald0c5xbfkdq6g5xwyy8wmbi636m3k3gqrq16kbh46g0kld1as9"; }; buildInputs = [ mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 mesa gtk2 cairo pango fftwFloat pkgconfig zita-convolver]; From 2e8c21e4dd9e6720f7add945d179808f233437ad Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Tue, 19 Jul 2016 12:27:17 +0300 Subject: [PATCH 433/508] libjpeg-drop: init at 9b (#16671) --- .../libraries/libjpeg-drop/default.nix | 36 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 37 insertions(+) create mode 100644 pkgs/development/libraries/libjpeg-drop/default.nix diff --git a/pkgs/development/libraries/libjpeg-drop/default.nix b/pkgs/development/libraries/libjpeg-drop/default.nix new file mode 100644 index 00000000000..ed1b5f5bdb0 --- /dev/null +++ b/pkgs/development/libraries/libjpeg-drop/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, static ? true }: + +with stdenv.lib; + +stdenv.mkDerivation rec { + name = "libjpeg-drop-9b"; + + srcs = [ + (fetchurl { + url = http://www.ijg.org/files/jpegsrc.v9b.tar.gz; + sha256 = "0lnhpahgdwlrkd41lx6cr90r199f8mc6ydlh7jznj5klvacd63r4"; + }) + (fetchurl { + url = http://jpegclub.org/droppatch.v9b.tar.gz; + sha256 = "022bnvpird7w5pwbfqpq7j7pwja5kp6x9k3sdypcy3g2nwwy2wwk"; + }) + ]; + + postUnpack = '' + rm jpegtran + mv jpegtran.c jpeg-9b/jpegtran.c + mv transupp.c jpeg-9b/transupp.c + mv transupp.h jpeg-9b/transupp.h + ''; + + configureFlags = [] + ++ optional static [ "--enable-static" "--disable-shared" ]; + + outputs = [ "dev" "out" "man" "bin" ]; + + meta = { + homepage = http://jpegclub.org/jpegtran/; + description = "Experimental lossless crop 'n' drop (cut & paste) patches for libjpeg"; + license = stdenv.lib.licenses.free; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 72901ffc8bc..ff3e31623fe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8186,6 +8186,7 @@ in libjpeg_original = callPackage ../development/libraries/libjpeg { }; libjpeg_turbo = callPackage ../development/libraries/libjpeg-turbo { }; + libjpeg_drop = callPackage ../development/libraries/libjpeg-drop { }; libjpeg = if stdenv.isLinux then self.libjpeg_turbo else self.libjpeg_original; # some problems, both on FreeBSD and Darwin libjpeg62 = callPackage ../development/libraries/libjpeg/62.nix { From 1c39145bc2703689063abe0ce2016ab3064e15f5 Mon Sep 17 00:00:00 2001 From: Christine Koppelt Date: Tue, 19 Jul 2016 11:34:39 +0200 Subject: [PATCH 434/508] nodejs-5_x: 5.11.1 -> 5.12.0 (#16657) --- pkgs/development/web/nodejs/nodejs.nix | 2 +- pkgs/development/web/nodejs/v5.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix index cae7648e6e9..debc571ea41 100644 --- a/pkgs/development/web/nodejs/nodejs.nix +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -52,7 +52,7 @@ in stdenv.mkDerivation { description = "Event-driven I/O framework for the V8 JavaScript engine"; homepage = http://nodejs.org; license = licenses.mit; - maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan ]; + maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan maintainers.cko ]; platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index 12d0dca4503..2398ae4e739 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -4,9 +4,9 @@ }@args: import ./nodejs.nix (args // rec { - version = "5.11.1"; + version = "5.12.0"; src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz"; - sha256 = "07v60mhswj77m7516zakj3p1py7ixa5jbgj0m7zlr9vygrrc66zi"; + sha256 = "4f926373f11f2a25156eee1804ec012eb912c42e5d34fc2909889da22efdadfe"; }; }) From b49bedd75b39f732600f96210120cc3fa098155f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 11:46:11 +0200 Subject: [PATCH 435/508] Python 2.7.11 -> 2.7.12 --- .../interpreters/python/2.7/default.nix | 4 ++-- .../interpreters/python/2.7/no-ldconfig.patch | 20 ++++++++++--------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index db9135ea2ab..aca88f504a0 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -23,11 +23,11 @@ with stdenv.lib; let majorVersion = "2.7"; - version = "${majorVersion}.11"; + version = "${majorVersion}.12"; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"; - sha256 = "0iiz844riiznsyhhyy962710pz228gmhv8qi3yk4w4jhmx2lqawn"; + sha256 = "0y7rl603vmwlxm6ilkhc51rx2mfj14ckcz40xxgs0ljnvlhp30yp"; }; patches = diff --git a/pkgs/development/interpreters/python/2.7/no-ldconfig.patch b/pkgs/development/interpreters/python/2.7/no-ldconfig.patch index 10284c7b374..44c38fb2953 100644 --- a/pkgs/development/interpreters/python/2.7/no-ldconfig.patch +++ b/pkgs/development/interpreters/python/2.7/no-ldconfig.patch @@ -1,7 +1,8 @@ -diff -ru -x '*~' Python-2.7.11-orig/Lib/ctypes/util.py Python-2.7.11/Lib/ctypes/util.py ---- Python-2.7.11-orig/Lib/ctypes/util.py 2015-12-05 20:46:56.000000000 +0100 -+++ Python-2.7.11/Lib/ctypes/util.py 2016-07-01 14:24:50.714223450 +0200 -@@ -212,31 +212,7 @@ +diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py +index b2c514d..a6eca81 100644 +--- a/Lib/ctypes/util.py ++++ b/Lib/ctypes/util.py +@@ -207,31 +207,7 @@ elif os.name == "posix": else: def _findSoname_ldconfig(name): @@ -21,7 +22,7 @@ diff -ru -x '*~' Python-2.7.11-orig/Lib/ctypes/util.py Python-2.7.11/Lib/ctypes/ - - # XXX assuming GLIBC's ldconfig (with option -p) - expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type) -- f = os.popen('/sbin/ldconfig -p 2>/dev/null') +- f = os.popen('LC_ALL=C LANG=C /sbin/ldconfig -p 2>/dev/null') - try: - data = f.read() - finally: @@ -34,10 +35,11 @@ diff -ru -x '*~' Python-2.7.11-orig/Lib/ctypes/util.py Python-2.7.11/Lib/ctypes/ def find_library(name): return _findSoname_ldconfig(name) or _get_soname(_findLib_gcc(name)) -diff -ru -x '*~' Python-2.7.11-orig/Lib/uuid.py Python-2.7.11/Lib/uuid.py ---- Python-2.7.11-orig/Lib/uuid.py 2015-12-05 20:47:09.000000000 +0100 -+++ Python-2.7.11/Lib/uuid.py 2016-07-01 14:33:14.360446897 +0200 -@@ -437,57 +437,7 @@ +diff --git a/Lib/uuid.py b/Lib/uuid.py +index 7432032..9829d18 100644 +--- a/Lib/uuid.py ++++ b/Lib/uuid.py +@@ -437,57 +437,7 @@ def _netbios_getnode(): return ((bytes[0]<<40L) + (bytes[1]<<32L) + (bytes[2]<<24L) + (bytes[3]<<16L) + (bytes[4]<<8L) + bytes[5]) From 4aea0ba917cf4b6f86c31183f395db8f5a692c98 Mon Sep 17 00:00:00 2001 From: leenaars Date: Tue, 19 Jul 2016 12:23:09 +0200 Subject: [PATCH 436/508] liberationsansnarrow: init at 1.07.3 (#17080) --- .../fonts/liberationsansnarrow/binary.nix | 22 +++++++++++ .../fonts/liberationsansnarrow/default.nix | 39 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 ++ 3 files changed, 64 insertions(+) create mode 100644 pkgs/data/fonts/liberationsansnarrow/binary.nix create mode 100644 pkgs/data/fonts/liberationsansnarrow/default.nix diff --git a/pkgs/data/fonts/liberationsansnarrow/binary.nix b/pkgs/data/fonts/liberationsansnarrow/binary.nix new file mode 100644 index 00000000000..c7afc91af84 --- /dev/null +++ b/pkgs/data/fonts/liberationsansnarrow/binary.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, liberationsansnarrow }: + +stdenv.mkDerivation rec { + version = "1.07.3"; + name = "liberationsansnarrow-${version}"; + src = fetchurl { + url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz"; + sha256 = "0qkr7n97jmj4q85jr20nsf6n5b48j118l9hr88vijn22ikad4wsp"; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp -v $(find . -name '*Narrow*.ttf') $out/share/fonts/truetype + + mkdir -p "$out/doc/${name}" + cp -v AUTHORS ChangeLog COPYING License.txt README "$out/doc/${name}" || true + ''; + + inherit (liberationsansnarrow) meta; +} diff --git a/pkgs/data/fonts/liberationsansnarrow/default.nix b/pkgs/data/fonts/liberationsansnarrow/default.nix new file mode 100644 index 00000000000..6a5e81cd3c7 --- /dev/null +++ b/pkgs/data/fonts/liberationsansnarrow/default.nix @@ -0,0 +1,39 @@ +{stdenv, fetchurl, fontforge, pythonPackages, python}: + +stdenv.mkDerivation rec { + pname = "liberationsansnarrow"; + version = "1.07.3"; + name = "${pname}"; + + src = fetchurl { + url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz"; + sha256 = "0qkr7n97jmj4q85jr20nsf6n5b48j118l9hr88vijn22ikad4wsp"; + }; + + buildInputs = [ fontforge pythonPackages.fonttools python ]; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp -v $(find . -name '*Narrow*.ttf') $out/share/fonts/truetype + + mkdir -p "$out/doc/${name}" + cp -v AUTHORS ChangeLog COPYING License.txt README "$out/doc/${name}" || true + ''; + + meta = with stdenv.lib; { + description = "Liberation Sans Narrow Font Family is a replacement for Arial Narrow"; + longDescription = '' + Liberation Sans Narrow is a font originally created by Ascender + Inc and licensed to Oracle Corporation under a GPLv2 license. It is + metrically compatible with the commonly used Arial Narrow fonts + on Microsoft systems. It is no longer distributed with the + latest versions of the Liberation Fonts, as Red Hat has changed the + license to the Open Font License. + ''; + + license = licenses.gpl2; + homepage = https://fedorahosted.org/liberation-fonts/; + maintainers = [ maintainers.leenaars + ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ff3e31623fe..86e4d949292 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11892,6 +11892,9 @@ in liberation_ttf_binary = callPackage ../data/fonts/redhat-liberation-fonts/binary.nix { }; liberation_ttf = self.liberation_ttf_binary; + liberationsansnarrow = callPackage ../data/fonts/liberationsansnarrow { }; + liberationsansnarrow_binary = callPackage ../data/fonts/liberationsansnarrow/binary.nix { }; + libertine = callPackage ../data/fonts/libertine { }; lmmath = callPackage ../data/fonts/lmodern/lmmath.nix {}; From c40a0b50f759be0160eb7e16931f6de394c4939b Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Tue, 19 Jul 2016 12:30:35 +0200 Subject: [PATCH 437/508] doctl: init at 1.3.1 (#17066) --- lib/maintainers.nix | 1 + pkgs/development/tools/doctl/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 26 insertions(+) create mode 100644 pkgs/development/tools/doctl/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index a3540deb407..56816bb206c 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -357,6 +357,7 @@ sheganinans = "Aistis Raulinaitis "; shell = "Shell Turner "; shlevy = "Shea Levy "; + siddharthist = "Langston Barrett "; simonvandel = "Simon Vandel Sillesen "; sjagoe = "Simon Jagoe "; sjmackenzie = "Stewart Mackenzie "; diff --git a/pkgs/development/tools/doctl/default.nix b/pkgs/development/tools/doctl/default.nix new file mode 100644 index 00000000000..4a7d1bf87e3 --- /dev/null +++ b/pkgs/development/tools/doctl/default.nix @@ -0,0 +1,23 @@ +{ stdenv, buildGoPackage, fetchFromGitHub }: + +buildGoPackage rec { + name = "doctl-${version}"; + version = "1.3.1"; + rev = "a57555c195d06bc7aa5037af77fde0665ad1231f"; + goPackagePath = "github.com/digitalocean/doctl"; + + src = fetchFromGitHub { + owner = "digitalocean"; + repo = "doctl"; + rev = "${rev}"; + sha256 = "03z652fw0a628gv666w8vpi05a4sdilvs1j5scjhcbi82zsbkvma"; + }; + + meta = { + description = "A command line tool for DigitalOcean services"; + homepage = "https://github.com/digitalocean/doctl"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.all; + maintainers = [ stdenv.lib.maintainers.siddharthist ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 86e4d949292..685c4200991 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6286,6 +6286,8 @@ in docutils = pythonPackages.docutils; + doctl = callPackage ../development/tools/doctl { }; + dot2tex = pythonPackages.dot2tex; doxygen = callPackage ../development/tools/documentation/doxygen { From b54009fdfb7951bb5423c4fabcb28b70581b5ba8 Mon Sep 17 00:00:00 2001 From: Carl Sverre Date: Tue, 19 Jul 2016 03:34:51 -0700 Subject: [PATCH 438/508] keybase-go: init at 1.0.16 (#17094) Build the official keybase go client from source. The client includes both a CLI for performing keybase operations and a service which will start automatically when needed. Keybase is a service which combines social proof with encryption. Learn more at their site: http://keybase.io --- pkgs/tools/security/keybase/default.nix | 28 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/tools/security/keybase/default.nix diff --git a/pkgs/tools/security/keybase/default.nix b/pkgs/tools/security/keybase/default.nix new file mode 100644 index 00000000000..87a0596f6f0 --- /dev/null +++ b/pkgs/tools/security/keybase/default.nix @@ -0,0 +1,28 @@ +{ stdenv, buildGoPackage, fetchFromGitHub }: + +buildGoPackage rec { + name = "keybase-${version}"; + version = "1.0.16"; + rev = "v${version}"; + + goPackagePath = "github.com/keybase/client"; + subPackages = [ "go/keybase" ]; + + dontRenameImports = true; + + src = fetchFromGitHub { + owner = "keybase"; + repo = "client"; + inherit rev; + sha256 = "0p62cqpfgx9b5kfnviqpig27i20yv9bg5mq61am5xrmkp68jk35b"; + }; + + buildFlags = [ "-tags production" ]; + + meta = with stdenv.lib; { + homepage = https://www.keybase.io/; + description = "The Keybase official command-line utility and service."; + platforms = platforms.linux; + maintainers = with maintainers; [ carlsverre ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 685c4200991..91f0e2f07e7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2172,6 +2172,8 @@ in keybase = callPackage ../applications/misc/keybase { }; + keybase-go = callPackage ../tools/security/keybase { }; + keychain = callPackage ../tools/misc/keychain { }; keyfuzz = callPackage ../tools/inputmethods/keyfuzz { }; From 20bb5402dcc000c442a0d83b4f855fac05549c1e Mon Sep 17 00:00:00 2001 From: Azul Date: Tue, 19 Jul 2016 12:24:47 +0100 Subject: [PATCH 439/508] pythonPackages.pygit2: 0.23.1 -> 0.24.0 (#15986) --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f8ca093b1bf..ef41756becc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17617,18 +17617,18 @@ in modules // { }; pygit2 = buildPythonPackage rec { - name = "pygit2-0.23.1"; + name = "pygit2-0.24.0"; src = pkgs.fetchurl { url = "mirror://pypi/p/pygit2/${name}.tar.gz"; - sha256 = "04201vcal7jq8lbpk9ylscrhjxdcf2aihiw25k4imjjqgfmvldf7"; + sha256 = "01c155ls0h5pvpdkrk8ld6fscshmz4fchcwxrg488dbij1zdjxms"; }; preConfigure = ( if stdenv.isDarwin then '' export DYLD_LIBRARY_PATH="${pkgs.libgit2}/lib" '' else "" ); - propagatedBuildInputs = with self; [ pkgs.libgit2 ] ++ optionals (!isPyPy) [ cffi ]; + propagatedBuildInputs = with self; [ pkgs.libgit2 six ] ++ optionals (!isPyPy) [ cffi ]; preCheck = '' # disable tests that require networking From 4a1ffadcdbfc02b828e42c10bf2c43f75787bb31 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Tue, 19 Jul 2016 13:39:19 +0200 Subject: [PATCH 440/508] gtkspell3: 3.0.7 -> 3.0.8 --- pkgs/development/libraries/gtkspell/3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix index b9f2f3c77e5..1b28477f1e0 100644 --- a/pkgs/development/libraries/gtkspell/3.nix +++ b/pkgs/development/libraries/gtkspell/3.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gtkspell-${version}"; - version = "3.0.7"; + version = "3.0.8"; src = fetchurl { url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz"; - sha256 = "1hiwzajf18v9ik4nai3s7frps4ccn9s20nggad1c4k2mwb9ydwhk"; + sha256 = "1zrz5pz4ryvcssk898liynmy2wyxgj95ak7mp2jv7x62yzihq6h1"; }; buildInputs = [ aspell pkgconfig gtk3 enchant intltool ]; From 3b61bfe4cc86bebc0fbc3b578264788ca4cb208d Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Tue, 19 Jul 2016 13:39:57 +0200 Subject: [PATCH 441/508] gtkspellmm: 3.0.3 -> 3.0.4 --- pkgs/development/libraries/gtkspellmm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gtkspellmm/default.nix b/pkgs/development/libraries/gtkspellmm/default.nix index 44bb8051ea6..be2ae044022 100644 --- a/pkgs/development/libraries/gtkspellmm/default.nix +++ b/pkgs/development/libraries/gtkspellmm/default.nix @@ -4,7 +4,7 @@ }: let - version = "3.0.3"; + version = "3.0.4"; in @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://sourceforge/project/gtkspell/gtkspellmm/" + "${name}.tar.gz"; - sha256 = "f9dcc0991621c08e7a972f33487afd6b37491468f0b654f50c741a7e6d810624"; + sha256 = "0x6zx928dl62f0c0x6b2s32i06lvn18wx7crrgs1j9yjgkim4k4k"; }; propagatedBuildInputs = [ From 47b2d50f833723a675f2b04aa448b26b5e5e6ca0 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 19 Jul 2016 15:43:01 +0400 Subject: [PATCH 442/508] nodePackages.rollup: init at 0.31.2 (#16432) --- pkgs/top-level/node-packages-generated.nix | 39 ++++++++++++++++++++++ pkgs/top-level/node-packages.json | 1 + 2 files changed, 40 insertions(+) diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix index 0ec4731a947..808a197ad3d 100644 --- a/pkgs/top-level/node-packages-generated.nix +++ b/pkgs/top-level/node-packages-generated.nix @@ -42094,6 +42094,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."rollup"."*" = + self.by-version."rollup"."0.31.2"; + by-version."rollup"."0.31.2" = self.buildNodePackage { + name = "rollup-0.31.2"; + version = "0.31.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/rollup/-/rollup-0.31.2.tgz"; + name = "rollup-0.31.2.tgz"; + sha1 = "b479fe0a5faf7c310b8cc963da4dd0eb0a6174d0"; + }; + deps = { + "source-map-support-0.4.0" = self.by-version."source-map-support"."0.4.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "rollup" = self.by-version."rollup"."0.31.2"; by-spec."root"."^2.0.0" = self.by-version."root"."2.0.0"; by-version."root"."2.0.0" = self.buildNodePackage { @@ -45396,6 +45417,24 @@ os = [ ]; cpu = [ ]; }; + by-version."source-map-support"."0.4.0" = self.buildNodePackage { + name = "source-map-support-0.4.0"; + version = "0.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.0.tgz"; + name = "source-map-support-0.4.0.tgz"; + sha1 = "cb92292bc05455ce48691de545ac2690bb1cc976"; + }; + deps = { + "source-map-0.1.32" = self.by-version."source-map"."0.1.32"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."sparkles"."^1.0.0" = self.by-version."sparkles"."1.0.0"; by-version."sparkles"."1.0.0" = self.buildNodePackage { diff --git a/pkgs/top-level/node-packages.json b/pkgs/top-level/node-packages.json index 447fd30060b..a8bd2e05ec0 100644 --- a/pkgs/top-level/node-packages.json +++ b/pkgs/top-level/node-packages.json @@ -150,6 +150,7 @@ , "react-tools" , "redis" , "rethinkdb" +, "rollup" , "s3http" , "selenium-webdriver" , "semver" From 5ba8341ddcfc12130bdb2ac131e042d850b6b8cb Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 19 Jul 2016 13:52:46 +0200 Subject: [PATCH 443/508] sooperlooper: git version fixes build. (#17095) see: https://github.com/essej/sooperlooper/pull/6 --- .../audio/sooperlooper/default.nix | 21 +++++++++++-------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/audio/sooperlooper/default.nix b/pkgs/applications/audio/sooperlooper/default.nix index 372339474a5..a11f37a6d52 100644 --- a/pkgs/applications/audio/sooperlooper/default.nix +++ b/pkgs/applications/audio/sooperlooper/default.nix @@ -1,18 +1,21 @@ -{ stdenv, fetchurl, liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx -,libsamplerate, rubberband, pkgconfig, ncurses +{ stdenv, fetchFromGitHub , liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx + ,libsamplerate, rubberband, pkgconfig, autoconf, automake, libtool, gettext, ncurses, which }: stdenv.mkDerivation rec { - name = "sooperlooper-${version}"; - version = "1.7.3"; - src = fetchurl { - url = "http://essej.net/sooperlooper/${name}.tar.gz"; - sha256 = "0n2gdxw1fx8nxxnpzf4sj0kp6k6zi1yq59cbz6qqzcnsnpnvszbs"; + name = "sooperlooper-git-${version}"; + version = "19-07-2016"; + + src = fetchFromGitHub { + owner = "essej"; + repo = "sooperlooper"; + rev = "3bdfe184cd59b51c757b8048536abc1146fb0de4"; + sha256 = "0qz25h4idv79m97ici2kzx72fwzks3lysyksk3p3rx72lsijhf3g"; }; buildInputs = [ - liblo libxml2 libjack2 libsndfile wxGTK libsigcxx - libsamplerate rubberband pkgconfig ncurses + liblo libxml2 libjack2 libsndfile wxGTK libsigcxx + libsamplerate rubberband pkgconfig autoconf automake libtool gettext ncurses which ]; meta = { From 802a700373ff2d933d65bd6a8546d14905dd912d Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Tue, 19 Jul 2016 06:55:44 -0500 Subject: [PATCH 444/508] virtualbox: fix virtualbox guest additions (#16964) --- nixos/modules/virtualisation/virtualbox-guest.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/virtualbox-guest.nix b/nixos/modules/virtualisation/virtualbox-guest.nix index 59bac24a753..d253e9eab62 100644 --- a/nixos/modules/virtualisation/virtualbox-guest.nix +++ b/nixos/modules/virtualisation/virtualbox-guest.nix @@ -49,7 +49,7 @@ in serviceConfig.ExecStart = "@${kernel.virtualboxGuestAdditions}/bin/VBoxService VBoxService --foreground"; }; - services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" ]; + services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" "modesetting" ]; services.xserver.config = '' From c20e20c060f27ab22efe0c6403906cbb3122b2b6 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 07:56:24 -0400 Subject: [PATCH 445/508] pythonPackages.jsonnet: init at same version as standalone --- pkgs/development/compilers/jsonnet/default.nix | 2 +- pkgs/top-level/python-packages.nix | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/jsonnet/default.nix b/pkgs/development/compilers/jsonnet/default.nix index da91bd3a547..d31654cdf2d 100644 --- a/pkgs/development/compilers/jsonnet/default.nix +++ b/pkgs/development/compilers/jsonnet/default.nix @@ -5,7 +5,7 @@ let version = "0.8.7"; in stdenv.mkDerivation { name = "jsonnet-${version}"; - srcs = fetchFromGitHub { + src = fetchFromGitHub { rev = "v${version}"; owner = "google"; repo = "jsonnet"; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ef41756becc..d054cd2f4c7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11804,6 +11804,10 @@ in modules // { }; }; + jsonnet = buildPythonPackage { + inherit (pkgs.jsonnet) name src; + }; + jupyter_client = buildPythonPackage rec { version = "4.2.2"; name = "jupyter_client-${version}"; From b1bab4c93fb66a91a40f95a1f8dd5e08b349c348 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 07:57:15 -0400 Subject: [PATCH 446/508] pythonPackages.httpretty: update to 0.8.10 It's not the newest version, but it's newer and the patch still applied so I left it alone. --- 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 d054cd2f4c7..fa7d649ed3f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11211,12 +11211,12 @@ in modules // { httpretty = buildPythonPackage rec { name = "httpretty-${version}"; - version = "0.8.6"; + version = "0.8.10"; doCheck = false; src = pkgs.fetchurl { url = "mirror://pypi/h/httpretty/${name}.tar.gz"; - sha256 = "0f295zj272plr9lhf80kgz19dxkargwv3ar83rwavrcy516mgg9n"; + sha256 = "1nmdk6d89z14x3wg4yxywlxjdip16zc8bqnfb471z1365mr74jj7"; }; buildInputs = with self; [ tornado requests2 httplib2 sure nose coverage certifi ]; From bb1e00dcb57cdc0e6fc7100f57acc38539bb0ed9 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 07:57:42 -0400 Subject: [PATCH 447/508] pythonPackages.cffi: remove unnecessary compiler flag I thought this was necessary but it doesn't appear to be after all --- pkgs/top-level/python-packages.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fa7d649ed3f..0887cf084c7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4379,8 +4379,6 @@ in modules // { substituteInPlace testing/cffi0/test_ownlib.py --replace "gcc" "cc" ''; - NIX_CFLAGS_COMPILE="-Wno-shift-negative-value"; - checkPhase = '' py.test ''; From 46378eb128b3e64152a75bdb36eef8399e87558d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 12:07:23 +0200 Subject: [PATCH 448/508] hdf5: propagate optional zlib dependency --- pkgs/tools/misc/hdf5/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/hdf5/default.nix b/pkgs/tools/misc/hdf5/default.nix index 84945d27dd1..11e1609ff0e 100644 --- a/pkgs/tools/misc/hdf5/default.nix +++ b/pkgs/tools/misc/hdf5/default.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { buildInputs = [] ++ optional (gfortran != null) gfortran - ++ optional (zlib != null) zlib ++ optional (szip != null) szip; propagatedBuildInputs = [] + ++ optional (zlib != null) zlib ++ optional (mpi != null) mpi; configureFlags = [] From 47e66f08e12aba48a7bc1e76fd9010bde0371e9e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 12:07:47 +0200 Subject: [PATCH 449/508] netcdf: remove zlib since its propagated now by hdf5 --- pkgs/development/libraries/netcdf/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/netcdf/default.nix b/pkgs/development/libraries/netcdf/default.nix index a65b41c0261..70426c00237 100644 --- a/pkgs/development/libraries/netcdf/default.nix +++ b/pkgs/development/libraries/netcdf/default.nix @@ -1,6 +1,5 @@ { stdenv , fetchurl -, zlib , hdf5 , m4 , curl # for DAP @@ -16,7 +15,7 @@ in stdenv.mkDerivation rec { sha256 = "06ds8zm4qvjlqvv4qb637cqr0xgvbhnghrddisad5vj81s5kvpmx"; }; - buildInputs = [ hdf5 zlib m4 curl mpi]; + buildInputs = [ hdf5 m4 curl mpi]; passthru = { mpiSupport = mpiSupport; From c51b8dc2249974177d50d7b2662615f78abc4929 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 12:30:31 +0200 Subject: [PATCH 450/508] pythonPackages.{h5py, h5py-mpi}: simplify expression/assertions --- pkgs/development/python-modules/h5py/default.nix | 15 +++++++-------- pkgs/top-level/python-packages.nix | 6 ++---- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix index 5b1ca192790..37265a88e2c 100644 --- a/pkgs/development/python-modules/h5py/default.nix +++ b/pkgs/development/python-modules/h5py/default.nix @@ -1,17 +1,16 @@ { stdenv, fetchurl, python, buildPythonPackage , numpy, hdf5, cython, six, pkgconfig -, mpiSupport ? false, mpi4py ? null, mpi ? null }: +, mpi4py ? null }: -assert mpiSupport == hdf5.mpiSupport; -assert mpiSupport -> mpi != null - && mpi4py != null - && mpi == mpi4py.mpi - && mpi == hdf5.mpi - ; +assert hdf5.mpiSupport -> mpi4py != null && hdf5.mpi == mpi4py.mpi; with stdenv.lib; -buildPythonPackage rec { +let + mpi = hdf5.mpi; + mpiSupport = hdf5.mpiSupport; + +in buildPythonPackage rec { name = "h5py-${version}"; version = "2.5.0"; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0887cf084c7..783578b1f1a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -227,13 +227,11 @@ in modules // { }; h5py = callPackage ../development/python-modules/h5py { - hdf5 = pkgs.hdf5.override { mpi = null; }; + hdf5 = pkgs.hdf5; }; h5py-mpi = self.h5py.override { - mpiSupport = true; - mpi = pkgs.openmpi; - hdf5 = pkgs.hdf5.override { mpi = pkgs.openmpi; enableShared = true; }; + hdf5 = pkgs.hdf5-mpi; }; mpi4py = callPackage ../development/python-modules/mpi4py { From 6e3137adca79e0ebf200aec7417fdf8a4836a97d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 19 Jul 2016 14:01:59 +0200 Subject: [PATCH 451/508] gnuk: use gcc-arm-embedded 4.9 The default gcc-arm-embedded version will soon be 5.x, and that breaks gnuk. --- pkgs/top-level/all-packages.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fc1d3d862be..fe10a829d96 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16924,9 +16924,15 @@ in gnome-breeze = callPackage ../misc/themes/gnome-breeze { }; - gnuk = callPackage ../misc/gnuk { }; - gnuk-unstable = lowPrio (callPackage ../misc/gnuk/unstable.nix { }); - gnuk-git = lowPrio (callPackage ../misc/gnuk/git.nix { }); + gnuk = callPackage ../misc/gnuk { + gcc-arm-embedded = gcc-arm-embedded-4_9; + }; + gnuk-unstable = lowPrio (callPackage ../misc/gnuk/unstable.nix { + gcc-arm-embedded = gcc-arm-embedded-4_9; + }); + gnuk-git = lowPrio (callPackage ../misc/gnuk/git.nix { + gcc-arm-embedded = gcc-arm-embedded-4_9; + }); greybird = callPackage ../misc/themes/greybird { }; From d0de6344492e3f813c61d55b761af94d282f0d30 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Tue, 19 Jul 2016 12:58:41 +0300 Subject: [PATCH 452/508] gcc-arm-embedded: 5.2 -> 5.4 --- pkgs/top-level/all-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fe10a829d96..f14b19418b4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4632,12 +4632,12 @@ in releaseType = "update"; sha256 = "c5e0025b065750bbd76b5357b4fc8606d88afbac9ff55b8a82927b4b96178154"; }; - gcc-arm-embedded-5_2 = pkgs.callPackage_i686 ../development/compilers/gcc-arm-embedded { + gcc-arm-embedded-5 = pkgs.callPackage_i686 ../development/compilers/gcc-arm-embedded { dirName = "5.0"; - subdirName = "5-2015-q4-major"; - version = "5.2-2015q4-20151219"; - releaseType = "major"; - sha256 = "12mbwl9iwbw7h6gwwkvyvfmrsz7vgjz27jh2cz9z006ihzigi50y"; + subdirName = "5-2016-q2-update"; + version = "5.4-2016q2-20160622"; + releaseType = "update"; + sha256 = "1r0rqbnw7rf94f5bsa3gi8bick4xb7qnp1dkvdjfbvqjvysvc44r"; }; gcc-arm-embedded = self.gcc-arm-embedded-4_9; From 486445169fec17d74a622475b957d23b5123a111 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Tue, 19 Jul 2016 12:59:21 +0300 Subject: [PATCH 453/508] gcc-arm-embedded: change default 4.9 -> 5.4 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f14b19418b4..c723433bf51 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4639,7 +4639,7 @@ in releaseType = "update"; sha256 = "1r0rqbnw7rf94f5bsa3gi8bick4xb7qnp1dkvdjfbvqjvysvc44r"; }; - gcc-arm-embedded = self.gcc-arm-embedded-4_9; + gcc-arm-embedded = self.gcc-arm-embedded-5; gforth = callPackage ../development/compilers/gforth {}; From 34b5d283cd2a8bbc05b798599120e53024865f08 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Tue, 19 Jul 2016 13:00:03 +0300 Subject: [PATCH 454/508] gcc-arm-embedded: update license According to https://launchpad.net/gcc-arm-embedded: > Licence: > Simplified BSD Licence, GNU GPL v2, GNU GPL v3, GNU LGPL v2.1, GNU > LGPL v3, MIT / X / Expat Licence --- .../compilers/gcc-arm-embedded/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/gcc-arm-embedded/default.nix b/pkgs/development/compilers/gcc-arm-embedded/default.nix index 85d8d37b21c..65c0f2ea1c5 100644 --- a/pkgs/development/compilers/gcc-arm-embedded/default.nix +++ b/pkgs/development/compilers/gcc-arm-embedded/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { }; buildInputs = [ bzip2 patchelf ]; - + dontPatchELF = true; - + phases = "unpackPhase patchPhase installPhase"; - + installPhase = '' mkdir -pv $out cp -r ./* $out @@ -42,8 +42,9 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4, Cortex-R4/R5/R7)"; - homepage = "https://launchpad.net/gcc-arm-embedded"; - license = licenses.gpl3; + homepage = https://launchpad.net/gcc-arm-embedded; + license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ]; + maintainers = [ maintainers.rasendubi ]; platforms = platforms.linux; }; } From 450fa8d9a03c120500ca9c5cda3ccf7bda16fb67 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 14 Jul 2016 23:46:10 +0200 Subject: [PATCH 455/508] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v2.0-11-gcec8f95 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/19ec8f3a6d22036c2f0940213648fd16d5c444fa - LTS Haskell: https://github.com/fpco/lts-haskell/commit/a5a99cf17698741e56c8efdf50989692c2e363e0 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/bf146896f35132bf340fe59b27feb0f796c867b2 --- .../haskell-modules/configuration-lts-0.0.nix | 15 + .../haskell-modules/configuration-lts-0.1.nix | 15 + .../haskell-modules/configuration-lts-0.2.nix | 15 + .../haskell-modules/configuration-lts-0.3.nix | 15 + .../haskell-modules/configuration-lts-0.4.nix | 15 + .../haskell-modules/configuration-lts-0.5.nix | 15 + .../haskell-modules/configuration-lts-0.6.nix | 15 + .../haskell-modules/configuration-lts-0.7.nix | 15 + .../haskell-modules/configuration-lts-1.0.nix | 15 + .../haskell-modules/configuration-lts-1.1.nix | 15 + .../configuration-lts-1.10.nix | 15 + .../configuration-lts-1.11.nix | 15 + .../configuration-lts-1.12.nix | 15 + .../configuration-lts-1.13.nix | 15 + .../configuration-lts-1.14.nix | 15 + .../configuration-lts-1.15.nix | 15 + .../haskell-modules/configuration-lts-1.2.nix | 15 + .../haskell-modules/configuration-lts-1.4.nix | 15 + .../haskell-modules/configuration-lts-1.5.nix | 15 + .../haskell-modules/configuration-lts-1.7.nix | 15 + .../haskell-modules/configuration-lts-1.8.nix | 15 + .../haskell-modules/configuration-lts-1.9.nix | 15 + .../haskell-modules/configuration-lts-2.0.nix | 16 + .../haskell-modules/configuration-lts-2.1.nix | 16 + .../configuration-lts-2.10.nix | 17 + .../configuration-lts-2.11.nix | 17 + .../configuration-lts-2.12.nix | 17 + .../configuration-lts-2.13.nix | 17 + .../configuration-lts-2.14.nix | 17 + .../configuration-lts-2.15.nix | 17 + .../configuration-lts-2.16.nix | 17 + .../configuration-lts-2.17.nix | 17 + .../configuration-lts-2.18.nix | 17 + .../configuration-lts-2.19.nix | 17 + .../haskell-modules/configuration-lts-2.2.nix | 16 + .../configuration-lts-2.20.nix | 17 + .../configuration-lts-2.21.nix | 17 + .../configuration-lts-2.22.nix | 17 + .../haskell-modules/configuration-lts-2.3.nix | 16 + .../haskell-modules/configuration-lts-2.4.nix | 16 + .../haskell-modules/configuration-lts-2.5.nix | 16 + .../haskell-modules/configuration-lts-2.6.nix | 16 + .../haskell-modules/configuration-lts-2.7.nix | 16 + .../haskell-modules/configuration-lts-2.8.nix | 16 + .../haskell-modules/configuration-lts-2.9.nix | 17 + .../haskell-modules/configuration-lts-3.0.nix | 18 + .../haskell-modules/configuration-lts-3.1.nix | 18 + .../configuration-lts-3.10.nix | 20 + .../configuration-lts-3.11.nix | 20 + .../configuration-lts-3.12.nix | 21 + .../configuration-lts-3.13.nix | 21 + .../configuration-lts-3.14.nix | 21 + .../configuration-lts-3.15.nix | 21 + .../configuration-lts-3.16.nix | 21 + .../configuration-lts-3.17.nix | 21 + .../configuration-lts-3.18.nix | 21 + .../configuration-lts-3.19.nix | 21 + .../haskell-modules/configuration-lts-3.2.nix | 19 + .../configuration-lts-3.20.nix | 21 + .../configuration-lts-3.21.nix | 21 + .../configuration-lts-3.22.nix | 21 + .../haskell-modules/configuration-lts-3.3.nix | 19 + .../haskell-modules/configuration-lts-3.4.nix | 19 + .../haskell-modules/configuration-lts-3.5.nix | 20 + .../haskell-modules/configuration-lts-3.6.nix | 20 + .../haskell-modules/configuration-lts-3.7.nix | 20 + .../haskell-modules/configuration-lts-3.8.nix | 20 + .../haskell-modules/configuration-lts-3.9.nix | 20 + .../haskell-modules/configuration-lts-4.0.nix | 24 + .../haskell-modules/configuration-lts-4.1.nix | 24 + .../haskell-modules/configuration-lts-4.2.nix | 25 + .../haskell-modules/configuration-lts-5.0.nix | 25 + .../haskell-modules/configuration-lts-5.1.nix | 25 + .../configuration-lts-5.10.nix | 29 + .../configuration-lts-5.11.nix | 30 + .../configuration-lts-5.12.nix | 30 + .../configuration-lts-5.13.nix | 30 + .../configuration-lts-5.14.nix | 31 + .../configuration-lts-5.15.nix | 31 + .../configuration-lts-5.16.nix | 31 + .../configuration-lts-5.17.nix | 31 + .../configuration-lts-5.18.nix | 33 + .../haskell-modules/configuration-lts-5.2.nix | 26 + .../haskell-modules/configuration-lts-5.3.nix | 26 + .../haskell-modules/configuration-lts-5.4.nix | 26 + .../haskell-modules/configuration-lts-5.5.nix | 26 + .../haskell-modules/configuration-lts-5.6.nix | 27 + .../haskell-modules/configuration-lts-5.7.nix | 29 + .../haskell-modules/configuration-lts-5.8.nix | 29 + .../haskell-modules/configuration-lts-5.9.nix | 29 + .../haskell-modules/configuration-lts-6.0.nix | 39 + .../haskell-modules/configuration-lts-6.1.nix | 39 + .../haskell-modules/configuration-lts-6.2.nix | 40 + .../haskell-modules/configuration-lts-6.3.nix | 45 + .../haskell-modules/configuration-lts-6.4.nix | 46 + .../haskell-modules/configuration-lts-6.5.nix | 47 + .../haskell-modules/configuration-lts-6.6.nix | 51 + .../haskell-modules/configuration-lts-6.7.nix | 52 + .../haskell-modules/hackage-packages.nix | 1685 ++++++++++++++--- 99 files changed, 3591 insertions(+), 246 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index a4b6af3eb6b..fe80fc5aad3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -800,6 +800,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1830,6 +1831,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3123,6 +3125,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3610,6 +3613,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4527,6 +4531,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4913,6 +4918,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5231,6 +5237,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5469,6 +5476,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6126,6 +6134,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6372,6 +6381,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6837,6 +6847,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7294,6 +7305,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7801,6 +7813,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8056,6 +8069,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8488,6 +8502,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 04204e40226..c9b8a0406e9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -800,6 +800,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1830,6 +1831,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3123,6 +3125,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3610,6 +3613,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4527,6 +4531,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4913,6 +4918,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5231,6 +5237,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5469,6 +5476,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6126,6 +6134,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6372,6 +6381,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6837,6 +6847,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7294,6 +7305,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7801,6 +7813,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8056,6 +8069,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8488,6 +8502,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index eae18df92cd..0f2b41e0e52 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -800,6 +800,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1830,6 +1831,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3123,6 +3125,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3610,6 +3613,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4527,6 +4531,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4913,6 +4918,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5231,6 +5237,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5469,6 +5476,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6126,6 +6134,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6372,6 +6381,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6837,6 +6847,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7294,6 +7305,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7801,6 +7813,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8056,6 +8069,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8488,6 +8502,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 3ced309e08b..81a840f0c11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -800,6 +800,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1830,6 +1831,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3123,6 +3125,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3610,6 +3613,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4527,6 +4531,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4913,6 +4918,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5231,6 +5237,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5469,6 +5476,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6126,6 +6134,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6372,6 +6381,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6837,6 +6847,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7294,6 +7305,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7801,6 +7813,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8056,6 +8069,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8488,6 +8502,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 48042705f5f..3c8e119baae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -800,6 +800,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1830,6 +1831,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3123,6 +3125,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3610,6 +3613,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4525,6 +4529,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4911,6 +4916,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5229,6 +5235,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5467,6 +5474,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6124,6 +6132,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6370,6 +6379,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6835,6 +6845,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7292,6 +7303,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7798,6 +7810,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8053,6 +8066,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8485,6 +8499,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 5c246287aed..0654ab1a9b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -800,6 +800,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1830,6 +1831,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3123,6 +3125,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3610,6 +3613,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4525,6 +4529,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4911,6 +4916,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5229,6 +5235,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5467,6 +5474,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6124,6 +6132,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6370,6 +6379,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6835,6 +6845,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7292,6 +7303,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7798,6 +7810,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8053,6 +8066,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8485,6 +8499,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 220a14bf4a1..a63516c5307 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -799,6 +799,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1829,6 +1830,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3122,6 +3124,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3609,6 +3612,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4523,6 +4527,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4909,6 +4914,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5227,6 +5233,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5465,6 +5472,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6122,6 +6130,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6368,6 +6377,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6833,6 +6843,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7290,6 +7301,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7795,6 +7807,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8050,6 +8063,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8482,6 +8496,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 7c3349d29e1..4e358f38324 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -799,6 +799,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1829,6 +1830,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; @@ -3122,6 +3124,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3609,6 +3612,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4523,6 +4527,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4909,6 +4914,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5227,6 +5233,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_2_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5465,6 +5472,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6122,6 +6130,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6368,6 +6377,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6833,6 +6843,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7290,6 +7301,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7795,6 +7807,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8050,6 +8063,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8482,6 +8496,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index d56ee1e4932..6a2c203a850 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -796,6 +796,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1827,6 +1828,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3116,6 +3118,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3604,6 +3607,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4518,6 +4522,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4903,6 +4908,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5221,6 +5227,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_0"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5459,6 +5466,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6116,6 +6124,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6362,6 +6371,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6827,6 +6837,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7284,6 +7295,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7788,6 +7800,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8043,6 +8056,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8474,6 +8488,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index b576738f7a9..c3616d56856 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -796,6 +796,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1827,6 +1828,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3113,6 +3115,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3601,6 +3604,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4514,6 +4518,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4897,6 +4902,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5215,6 +5221,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_0"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5453,6 +5460,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6109,6 +6117,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6355,6 +6364,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6820,6 +6830,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7277,6 +7288,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7781,6 +7793,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8035,6 +8048,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8465,6 +8479,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 5902d3d2d0a..f1e1efe2b4a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3593,6 +3596,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4503,6 +4507,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4886,6 +4891,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5199,6 +5205,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5437,6 +5444,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6092,6 +6100,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6337,6 +6346,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6801,6 +6811,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7258,6 +7269,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7762,6 +7774,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8014,6 +8027,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8444,6 +8458,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index a488786d3ad..7290bbd9afe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3592,6 +3595,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4502,6 +4506,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4885,6 +4890,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5197,6 +5203,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5434,6 +5441,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6089,6 +6097,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6334,6 +6343,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6798,6 +6808,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7255,6 +7266,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7759,6 +7771,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8011,6 +8024,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8441,6 +8455,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 3ae2f86b854..7ebad80925b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3592,6 +3595,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4502,6 +4506,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4885,6 +4890,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5197,6 +5203,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5434,6 +5441,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6089,6 +6097,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6334,6 +6343,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6798,6 +6808,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7255,6 +7266,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7759,6 +7771,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8011,6 +8024,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8441,6 +8455,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 6fdfa9b2af2..a24b8baa1af 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3592,6 +3595,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4501,6 +4505,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4884,6 +4889,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5196,6 +5202,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5433,6 +5440,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6088,6 +6096,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6333,6 +6342,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6797,6 +6807,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7254,6 +7265,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7758,6 +7770,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8010,6 +8023,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8440,6 +8454,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index fba79cca9bd..cbf9665b20d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -794,6 +794,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1824,6 +1825,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3106,6 +3108,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3589,6 +3592,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4498,6 +4502,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4881,6 +4886,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5193,6 +5199,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5430,6 +5437,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6085,6 +6093,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6330,6 +6339,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6794,6 +6804,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7250,6 +7261,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7754,6 +7766,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8006,6 +8019,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8436,6 +8450,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index df51f615b27..062eee5fcc4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -794,6 +794,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1823,6 +1824,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3103,6 +3105,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3586,6 +3589,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4495,6 +4499,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4878,6 +4883,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5190,6 +5196,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5427,6 +5434,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6082,6 +6090,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6325,6 +6334,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6789,6 +6799,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7244,6 +7255,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7748,6 +7760,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8000,6 +8013,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8429,6 +8443,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 17a5abbc529..49b84cd61e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -796,6 +796,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1827,6 +1828,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3111,6 +3113,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3599,6 +3602,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4511,6 +4515,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4894,6 +4899,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5212,6 +5218,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_0"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5450,6 +5457,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6106,6 +6114,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6352,6 +6361,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6816,6 +6826,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7273,6 +7284,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7777,6 +7789,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8030,6 +8043,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8460,6 +8474,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 45e8cd33c16..2cbac473b07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3110,6 +3112,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3597,6 +3600,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4508,6 +4512,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4891,6 +4896,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5209,6 +5215,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_0"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5447,6 +5454,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6103,6 +6111,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6348,6 +6357,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6812,6 +6822,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7269,6 +7280,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7773,6 +7785,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8026,6 +8039,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8456,6 +8470,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 2456073a420..f2c7261a578 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3596,6 +3599,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4507,6 +4511,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4890,6 +4895,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5208,6 +5214,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_0"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5446,6 +5453,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6102,6 +6110,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6347,6 +6356,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6811,6 +6821,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7268,6 +7279,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7772,6 +7784,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8025,6 +8038,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8455,6 +8469,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 75985a07aef..f61382ad830 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3596,6 +3599,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4507,6 +4511,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4890,6 +4895,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5203,6 +5209,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_0"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5441,6 +5448,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6097,6 +6105,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6342,6 +6351,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6806,6 +6816,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7263,6 +7274,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7767,6 +7779,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8020,6 +8033,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8450,6 +8464,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index a588ecaeff9..1b632c3715f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3594,6 +3597,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4504,6 +4508,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4887,6 +4892,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5200,6 +5206,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_0"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5438,6 +5445,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6093,6 +6101,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6338,6 +6347,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6802,6 +6812,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7259,6 +7270,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7763,6 +7775,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8016,6 +8029,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8446,6 +8460,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 7a8aa5bc545..01ad3efffae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -795,6 +795,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1826,6 +1827,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3109,6 +3111,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3593,6 +3596,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4503,6 +4507,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4886,6 +4891,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5199,6 +5205,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5437,6 +5444,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6092,6 +6100,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6337,6 +6346,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6801,6 +6811,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7258,6 +7269,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7762,6 +7774,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_2"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -8015,6 +8028,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = dontDistribute super."smoothie"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8445,6 +8459,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index bbe9bb5c785..473962c25a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1815,6 +1816,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3094,6 +3096,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3576,6 +3579,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4482,6 +4486,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4863,6 +4868,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5171,6 +5177,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5406,6 +5413,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6055,6 +6063,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6107,6 +6116,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6293,6 +6303,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6754,6 +6765,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7209,6 +7221,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7713,6 +7726,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7963,6 +7977,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8387,6 +8402,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 9c133a7d90e..641f292420a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1815,6 +1816,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3094,6 +3096,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3576,6 +3579,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4482,6 +4486,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4863,6 +4868,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5171,6 +5177,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5406,6 +5413,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6055,6 +6063,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6107,6 +6116,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6293,6 +6303,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6754,6 +6765,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7209,6 +7221,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7713,6 +7726,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7963,6 +7977,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8387,6 +8402,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 2bf1ca1242c..159f38dac4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1809,6 +1810,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3084,6 +3086,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3563,6 +3566,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4468,6 +4472,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4849,6 +4854,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5155,6 +5161,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5388,6 +5395,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6036,6 +6044,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6088,6 +6097,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6275,6 +6285,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6734,6 +6745,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7188,6 +7200,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7690,6 +7703,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7940,6 +7954,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8137,6 +8152,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8356,6 +8372,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index dce16c62c95..69342cf7876 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1808,6 +1809,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3083,6 +3085,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3562,6 +3565,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4467,6 +4471,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4848,6 +4853,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5154,6 +5160,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5387,6 +5394,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6035,6 +6043,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6087,6 +6096,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6274,6 +6284,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6732,6 +6743,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7186,6 +7198,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7687,6 +7700,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7937,6 +7951,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8134,6 +8149,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8352,6 +8368,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 5d6a40dc3dd..150235f3022 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1808,6 +1809,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3083,6 +3085,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3562,6 +3565,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4467,6 +4471,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4848,6 +4853,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5154,6 +5160,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5387,6 +5394,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6035,6 +6043,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6087,6 +6096,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6274,6 +6284,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6732,6 +6743,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7186,6 +7198,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7686,6 +7699,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7936,6 +7950,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8133,6 +8148,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8351,6 +8367,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 68e7a0c544b..68ab563ffd3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1808,6 +1809,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3083,6 +3085,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3562,6 +3565,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4467,6 +4471,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4848,6 +4853,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5153,6 +5159,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5386,6 +5393,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6034,6 +6042,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6086,6 +6095,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6273,6 +6283,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6731,6 +6742,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7185,6 +7197,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7685,6 +7698,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7935,6 +7949,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8132,6 +8147,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8350,6 +8366,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index b9fb7d6f8a5..1e253e9cf1c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1808,6 +1809,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3083,6 +3085,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3561,6 +3564,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4466,6 +4470,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4847,6 +4852,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5151,6 +5157,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5384,6 +5391,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6032,6 +6040,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6084,6 +6093,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6271,6 +6281,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6729,6 +6740,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7183,6 +7195,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7683,6 +7696,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7933,6 +7947,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8130,6 +8145,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8348,6 +8364,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 18a31397b64..a95ec6caccf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1808,6 +1809,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3082,6 +3084,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3560,6 +3563,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4465,6 +4469,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4846,6 +4851,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5150,6 +5156,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5383,6 +5390,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6031,6 +6039,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6083,6 +6092,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6269,6 +6279,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6727,6 +6738,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7181,6 +7193,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7681,6 +7694,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7931,6 +7945,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8127,6 +8142,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8345,6 +8361,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index fb751d3e2f9..da9ce2a0bce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1808,6 +1809,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3080,6 +3082,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3557,6 +3560,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4462,6 +4466,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4843,6 +4848,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5147,6 +5153,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5380,6 +5387,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6027,6 +6035,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6079,6 +6088,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6265,6 +6275,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6723,6 +6734,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7177,6 +7189,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7677,6 +7690,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7927,6 +7941,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8123,6 +8138,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8341,6 +8357,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 90ca70be0eb..184948230fc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1807,6 +1808,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3079,6 +3081,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3554,6 +3557,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4459,6 +4463,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4840,6 +4845,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5144,6 +5150,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5377,6 +5384,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6024,6 +6032,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6076,6 +6085,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6262,6 +6272,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6719,6 +6730,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7173,6 +7185,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7673,6 +7686,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7923,6 +7937,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8119,6 +8134,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8337,6 +8353,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 83cef991962..d22dac32860 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1807,6 +1808,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3077,6 +3079,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3552,6 +3555,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4457,6 +4461,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4838,6 +4843,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5142,6 +5148,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5375,6 +5382,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6022,6 +6030,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6074,6 +6083,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6260,6 +6270,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6716,6 +6727,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7170,6 +7182,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7670,6 +7683,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7920,6 +7934,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8116,6 +8131,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8334,6 +8350,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index f4452f3e69b..841b28f07f6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1807,6 +1808,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3077,6 +3079,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3551,6 +3554,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4456,6 +4460,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4837,6 +4842,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5141,6 +5147,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5374,6 +5381,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6021,6 +6029,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6073,6 +6082,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6259,6 +6269,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6715,6 +6726,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7169,6 +7181,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7669,6 +7682,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7919,6 +7933,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8115,6 +8130,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8333,6 +8349,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 18a5fc3ef85..576d5a9afe1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1814,6 +1815,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3092,6 +3094,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3574,6 +3577,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4480,6 +4484,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4861,6 +4866,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5169,6 +5175,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5404,6 +5411,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6053,6 +6061,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6105,6 +6114,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6291,6 +6301,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6752,6 +6763,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7207,6 +7219,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7711,6 +7724,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7961,6 +7975,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8385,6 +8400,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 1d03c9d5b80..7e2b5906980 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1807,6 +1808,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3077,6 +3079,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3551,6 +3554,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4456,6 +4460,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4837,6 +4842,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5141,6 +5147,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5374,6 +5381,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6021,6 +6029,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6073,6 +6082,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6259,6 +6269,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6715,6 +6726,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7169,6 +7181,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7669,6 +7682,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7918,6 +7932,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8114,6 +8129,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8332,6 +8348,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index e5f16f9bbb2..28f96f44662 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1807,6 +1808,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3077,6 +3079,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3551,6 +3554,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4456,6 +4460,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4837,6 +4842,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5141,6 +5147,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5374,6 +5381,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6021,6 +6029,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6073,6 +6082,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6259,6 +6269,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6715,6 +6726,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7168,6 +7180,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7668,6 +7681,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7917,6 +7931,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8113,6 +8128,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8331,6 +8347,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 66c6adc3881..c2990d8b810 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1807,6 +1808,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3077,6 +3079,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3551,6 +3554,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4456,6 +4460,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4836,6 +4841,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5140,6 +5146,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5373,6 +5380,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6020,6 +6028,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6072,6 +6081,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6258,6 +6268,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6714,6 +6725,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7167,6 +7179,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7667,6 +7680,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7916,6 +7930,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8112,6 +8127,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8330,6 +8346,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index eb35a0931db..96a4ea2c990 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1814,6 +1815,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3092,6 +3094,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3573,6 +3576,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4479,6 +4483,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4860,6 +4865,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5167,6 +5173,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5402,6 +5409,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6051,6 +6059,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6103,6 +6112,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6289,6 +6299,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6750,6 +6761,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7205,6 +7217,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7709,6 +7722,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7959,6 +7973,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8383,6 +8398,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 35bf5af61ff..172f6b5c2f9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1814,6 +1815,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3092,6 +3094,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3573,6 +3576,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4479,6 +4483,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4860,6 +4865,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5167,6 +5173,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5402,6 +5409,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6051,6 +6059,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6103,6 +6112,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6289,6 +6299,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6749,6 +6760,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7204,6 +7216,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7707,6 +7720,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7957,6 +7971,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8381,6 +8396,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index c0754e8c86e..1203e9c1938 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1814,6 +1815,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3091,6 +3093,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3572,6 +3575,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4478,6 +4482,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4859,6 +4864,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5166,6 +5172,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5401,6 +5408,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6050,6 +6058,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6102,6 +6111,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6288,6 +6298,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6748,6 +6759,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7203,6 +7215,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7706,6 +7719,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7956,6 +7970,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8380,6 +8395,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 5f6fb229a54..a6e59be4b6b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1812,6 +1813,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3089,6 +3091,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3570,6 +3573,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4475,6 +4479,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4856,6 +4861,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5163,6 +5169,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5398,6 +5405,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6047,6 +6055,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6099,6 +6108,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6285,6 +6295,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6744,6 +6755,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7199,6 +7211,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7702,6 +7715,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7952,6 +7966,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8376,6 +8391,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 741603cc89d..4fe69666932 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -789,6 +789,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1812,6 +1813,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3089,6 +3091,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3570,6 +3573,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4475,6 +4479,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4856,6 +4861,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5163,6 +5169,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5398,6 +5405,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6047,6 +6055,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6099,6 +6108,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6286,6 +6296,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6745,6 +6756,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7200,6 +7212,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7703,6 +7716,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7953,6 +7967,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8377,6 +8392,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index aaf7d8ed806..dbe8f6baef2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1811,6 +1812,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3088,6 +3090,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3568,6 +3571,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4473,6 +4477,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4854,6 +4859,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5161,6 +5167,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5396,6 +5403,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6045,6 +6053,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6097,6 +6106,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6284,6 +6294,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6743,6 +6754,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7198,6 +7210,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7700,6 +7713,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7950,6 +7964,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8371,6 +8386,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index e894b57599c..54ccf254af5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -788,6 +788,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1809,6 +1810,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; @@ -3085,6 +3087,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3564,6 +3567,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4469,6 +4473,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4850,6 +4855,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5156,6 +5162,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5391,6 +5398,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -6039,6 +6047,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; "missing-py2" = dontDistribute super."missing-py2"; @@ -6091,6 +6100,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -6278,6 +6288,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6737,6 +6748,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -7192,6 +7204,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7694,6 +7707,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0"; "semigroupoids" = doDistribute super."semigroupoids_4_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; @@ -7944,6 +7958,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_1_3"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -8141,6 +8156,7 @@ self: super: { "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; "stackage-curator" = doDistribute super."stackage-curator_0_7_4"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-metadata" = dontDistribute super."stackage-metadata"; "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; @@ -8361,6 +8377,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index c9f4481be8f..9395ee0ccf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -777,6 +777,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1764,6 +1765,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3015,6 +3017,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3480,6 +3483,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4376,6 +4380,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4752,6 +4757,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5046,6 +5052,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5274,6 +5281,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5908,6 +5916,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5958,6 +5967,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6140,6 +6150,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6590,6 +6601,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6670,6 +6682,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -7035,6 +7048,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7538,6 +7552,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7780,6 +7795,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_0_2"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7973,6 +7989,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -8185,6 +8202,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 4ca49045ed8..8910bb011b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -777,6 +777,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1763,6 +1764,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3014,6 +3016,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3478,6 +3481,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4374,6 +4378,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4750,6 +4755,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5044,6 +5050,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5272,6 +5279,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5905,6 +5913,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5955,6 +5964,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6137,6 +6147,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6587,6 +6598,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6666,6 +6678,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -7031,6 +7044,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7533,6 +7547,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_3"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7775,6 +7790,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_0_2"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7968,6 +7984,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -8180,6 +8197,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 93738600458..3912438ff7a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1756,6 +1757,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3003,6 +3005,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3179,6 +3182,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3465,6 +3469,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4357,6 +4362,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4731,6 +4737,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5023,6 +5030,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5251,6 +5259,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5881,6 +5890,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5931,6 +5941,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6112,6 +6123,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6560,6 +6572,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6639,6 +6652,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6982,6 +6996,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7000,6 +7015,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7502,6 +7518,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7744,6 +7761,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7934,6 +7952,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8145,6 +8164,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 0f0c6837104..6e95124cc29 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1756,6 +1757,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3003,6 +3005,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3178,6 +3181,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3464,6 +3468,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4356,6 +4361,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4730,6 +4736,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5022,6 +5029,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5250,6 +5258,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5880,6 +5889,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5930,6 +5940,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6111,6 +6122,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6559,6 +6571,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6638,6 +6651,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6981,6 +6995,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6999,6 +7014,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7501,6 +7517,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7743,6 +7760,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7933,6 +7951,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8144,6 +8163,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 372de3cace5..8768024efef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1756,6 +1757,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2044,6 +2046,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -3002,6 +3005,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3177,6 +3181,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3463,6 +3468,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4354,6 +4360,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4728,6 +4735,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5020,6 +5028,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5248,6 +5257,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5878,6 +5888,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5928,6 +5939,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6109,6 +6121,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6556,6 +6569,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6635,6 +6649,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6978,6 +6993,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6996,6 +7012,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7498,6 +7515,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7740,6 +7758,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7930,6 +7949,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8141,6 +8161,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index bcd60522489..01594754b65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1756,6 +1757,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2044,6 +2046,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -3002,6 +3005,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3177,6 +3181,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3463,6 +3468,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4353,6 +4359,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4727,6 +4734,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5019,6 +5027,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5247,6 +5256,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5876,6 +5886,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5926,6 +5937,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6107,6 +6119,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6553,6 +6566,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6632,6 +6646,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6975,6 +6990,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6993,6 +7009,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7495,6 +7512,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7737,6 +7755,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7927,6 +7946,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8138,6 +8158,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 56065ec833e..ebd6dfc7915 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1756,6 +1757,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2044,6 +2046,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -3002,6 +3005,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3177,6 +3181,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3463,6 +3468,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4353,6 +4359,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4727,6 +4734,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5018,6 +5026,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5246,6 +5255,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5875,6 +5885,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5925,6 +5936,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6106,6 +6118,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6552,6 +6565,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6631,6 +6645,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6974,6 +6989,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6992,6 +7008,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7494,6 +7511,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7736,6 +7754,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7926,6 +7945,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8137,6 +8157,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index eea9625cfc9..b0e0c50c75e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1756,6 +1757,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2044,6 +2046,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -3002,6 +3005,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3177,6 +3181,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3463,6 +3468,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4352,6 +4358,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4726,6 +4733,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5016,6 +5024,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5244,6 +5253,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5873,6 +5883,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5923,6 +5934,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6104,6 +6116,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6550,6 +6563,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6629,6 +6643,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6972,6 +6987,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6990,6 +7006,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7492,6 +7509,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7733,6 +7751,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7923,6 +7942,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8134,6 +8154,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 605d43e7462..274ab94ecc7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -775,6 +775,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1755,6 +1756,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2043,6 +2045,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -3001,6 +3004,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3176,6 +3180,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3462,6 +3467,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4351,6 +4357,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4725,6 +4732,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5015,6 +5023,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5243,6 +5252,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5870,6 +5880,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5920,6 +5931,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6101,6 +6113,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6547,6 +6560,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6626,6 +6640,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6968,6 +6983,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6986,6 +7002,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7487,6 +7504,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7728,6 +7746,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7918,6 +7937,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8129,6 +8149,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 0b9cef780e2..c498f6a3088 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -775,6 +775,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1754,6 +1755,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2042,6 +2044,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -3000,6 +3003,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3175,6 +3179,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3461,6 +3466,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4349,6 +4355,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4723,6 +4730,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5012,6 +5020,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5240,6 +5249,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5866,6 +5876,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5916,6 +5927,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6096,6 +6108,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6542,6 +6555,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6621,6 +6635,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6963,6 +6978,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6981,6 +6997,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7482,6 +7499,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7723,6 +7741,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7913,6 +7932,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8124,6 +8144,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 650c43f15e0..9378bc79c4b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -775,6 +775,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1754,6 +1755,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2042,6 +2044,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -3000,6 +3003,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3175,6 +3179,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3461,6 +3466,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4349,6 +4355,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4723,6 +4730,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5012,6 +5020,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5240,6 +5249,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5866,6 +5876,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5916,6 +5927,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6096,6 +6108,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6542,6 +6555,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6621,6 +6635,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6963,6 +6978,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6981,6 +6997,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7482,6 +7499,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7723,6 +7741,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7913,6 +7932,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8124,6 +8144,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 1b8fb592432..bfc339ca798 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -775,6 +775,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1753,6 +1754,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2040,6 +2042,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2997,6 +3000,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3172,6 +3176,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3458,6 +3463,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4346,6 +4352,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4718,6 +4725,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5007,6 +5015,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5234,6 +5243,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5860,6 +5870,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5910,6 +5921,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6090,6 +6102,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6535,6 +6548,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6614,6 +6628,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6956,6 +6971,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6974,6 +6990,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7475,6 +7492,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7716,6 +7734,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7905,6 +7924,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8116,6 +8136,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index ed852ba2eec..5c6270f1104 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1761,6 +1762,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3011,6 +3013,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3475,6 +3478,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4370,6 +4374,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4746,6 +4751,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5040,6 +5046,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5268,6 +5275,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5901,6 +5909,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5951,6 +5960,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6133,6 +6143,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6583,6 +6594,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6662,6 +6674,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -7008,6 +7021,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7026,6 +7040,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7528,6 +7543,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7770,6 +7786,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_0_2"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7962,6 +7979,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -8174,6 +8192,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index c75fbd244f6..b47d0d66dc6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -774,6 +774,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1752,6 +1753,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2039,6 +2041,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2996,6 +2999,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3171,6 +3175,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3457,6 +3462,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4345,6 +4351,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4717,6 +4724,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5006,6 +5014,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5233,6 +5242,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5859,6 +5869,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5909,6 +5920,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6089,6 +6101,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6534,6 +6547,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6613,6 +6627,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6955,6 +6970,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6973,6 +6989,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7473,6 +7490,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7714,6 +7732,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7903,6 +7922,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8113,6 +8133,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index a3a576bffbd..5af9af67434 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -774,6 +774,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1752,6 +1753,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2039,6 +2041,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2995,6 +2998,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3168,6 +3172,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3454,6 +3459,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4342,6 +4348,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4714,6 +4721,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5001,6 +5009,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_3"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5228,6 +5237,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5854,6 +5864,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5904,6 +5915,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6084,6 +6096,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6528,6 +6541,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6607,6 +6621,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6949,6 +6964,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6967,6 +6983,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7467,6 +7484,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7704,6 +7722,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7893,6 +7912,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8103,6 +8123,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 08ab10f165e..a8d27c54dc9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -774,6 +774,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1752,6 +1753,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -2039,6 +2041,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2995,6 +2998,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3167,6 +3171,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3453,6 +3458,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4341,6 +4347,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4713,6 +4720,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4999,6 +5007,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5225,6 +5234,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5851,6 +5861,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5901,6 +5912,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6081,6 +6093,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6525,6 +6538,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6604,6 +6618,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6946,6 +6961,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6964,6 +6980,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7464,6 +7481,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7701,6 +7719,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7890,6 +7909,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8100,6 +8120,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 9dd0cca2fa1..d469a1e0fbd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1761,6 +1762,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3011,6 +3013,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3474,6 +3477,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4369,6 +4373,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4744,6 +4749,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5038,6 +5044,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5266,6 +5273,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5899,6 +5907,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5949,6 +5958,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6131,6 +6141,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6581,6 +6592,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6660,6 +6672,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -7006,6 +7019,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7024,6 +7038,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7526,6 +7541,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7768,6 +7784,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_0_2"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7959,6 +7976,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -8171,6 +8189,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index ab34692cdfd..01ab4070a2d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1761,6 +1762,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3011,6 +3013,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3474,6 +3477,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4369,6 +4373,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4744,6 +4749,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5038,6 +5044,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_1"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5266,6 +5273,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5899,6 +5907,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5949,6 +5958,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6131,6 +6141,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6581,6 +6592,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6660,6 +6672,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -7006,6 +7019,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7024,6 +7038,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7526,6 +7541,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7768,6 +7784,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_0_2"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7959,6 +7976,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8170,6 +8188,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index e0bba2b3882..4fba7c89800 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1760,6 +1761,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3010,6 +3012,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3186,6 +3189,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3472,6 +3476,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4367,6 +4372,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4741,6 +4747,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5033,6 +5040,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5261,6 +5269,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5894,6 +5903,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5944,6 +5954,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6125,6 +6136,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6575,6 +6587,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6654,6 +6667,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6999,6 +7013,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7017,6 +7032,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7519,6 +7535,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7761,6 +7778,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_0_2"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7952,6 +7970,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8163,6 +8182,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 088599b21f5..e326847e919 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1760,6 +1761,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3010,6 +3012,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3186,6 +3189,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3472,6 +3476,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4365,6 +4370,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4739,6 +4745,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5031,6 +5038,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5259,6 +5267,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5890,6 +5899,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5940,6 +5950,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6121,6 +6132,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6571,6 +6583,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6650,6 +6663,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6995,6 +7009,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7013,6 +7028,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7515,6 +7531,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7757,6 +7774,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7948,6 +7966,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8159,6 +8178,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 089f82f285e..258114215a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1759,6 +1760,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3008,6 +3010,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3184,6 +3187,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3470,6 +3474,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4362,6 +4367,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4736,6 +4742,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5028,6 +5035,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5256,6 +5264,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5887,6 +5896,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5937,6 +5947,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6118,6 +6129,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6568,6 +6580,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6647,6 +6660,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6990,6 +7004,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7008,6 +7023,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7510,6 +7526,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7752,6 +7769,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7942,6 +7960,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8153,6 +8172,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index d2c60d1621f..4e58939c62a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1757,6 +1758,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3005,6 +3007,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3181,6 +3184,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3467,6 +3471,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4359,6 +4364,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4733,6 +4739,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5025,6 +5032,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5253,6 +5261,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5883,6 +5892,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5933,6 +5943,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6114,6 +6125,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6564,6 +6576,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6643,6 +6656,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6986,6 +7000,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7004,6 +7019,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7506,6 +7522,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7748,6 +7765,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7938,6 +7956,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8149,6 +8168,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index eab92ecdca4..1159d8f6fd9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -776,6 +776,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1756,6 +1757,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; @@ -3003,6 +3005,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3179,6 +3182,7 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = dontDistribute super."fft"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3465,6 +3469,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4357,6 +4362,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgettext" = dontDistribute super."hgettext"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; @@ -4731,6 +4737,7 @@ self: super: { "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -5023,6 +5030,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5251,6 +5259,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5881,6 +5890,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5931,6 +5941,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -6112,6 +6123,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6562,6 +6574,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6641,6 +6654,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6984,6 +6998,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7002,6 +7017,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7504,6 +7520,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_16_2_2"; @@ -7746,6 +7763,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7936,6 +7954,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -8147,6 +8166,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 9dd5ce82db0..b3ee73d5bd4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -763,6 +764,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1728,6 +1730,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; @@ -2010,6 +2013,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2954,6 +2958,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3126,6 +3131,8 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3407,6 +3414,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4286,6 +4294,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4645,6 +4654,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4924,6 +4934,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_2"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5142,6 +5153,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5756,6 +5768,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5804,6 +5817,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5981,6 +5995,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6411,6 +6426,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6489,6 +6505,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6820,6 +6837,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6838,6 +6856,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7328,6 +7347,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_0_1"; @@ -7563,6 +7583,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7748,6 +7769,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7926,6 +7948,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7955,6 +7978,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 14bf0721a42..5a42ee14300 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -763,6 +764,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1727,6 +1729,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; @@ -2009,6 +2012,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2952,6 +2956,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3123,6 +3128,8 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3404,6 +3411,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4283,6 +4291,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4642,6 +4651,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4918,6 +4928,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5135,6 +5146,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5747,6 +5759,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5795,6 +5808,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5972,6 +5986,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6402,6 +6417,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6480,6 +6496,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6811,6 +6828,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6829,6 +6847,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7319,6 +7338,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_0_4"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_0_1"; @@ -7554,6 +7574,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7739,6 +7760,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7917,6 +7939,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7946,6 +7969,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index f4b4ed74e0d..f8a60a4d4ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -763,6 +764,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1727,6 +1729,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; @@ -2007,6 +2010,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2948,6 +2952,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3116,6 +3121,8 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3396,6 +3403,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4270,6 +4278,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4628,6 +4637,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4903,6 +4913,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5119,6 +5130,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5731,6 +5743,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5779,6 +5792,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5954,6 +5968,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6384,6 +6399,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6462,6 +6478,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6790,6 +6807,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6808,6 +6826,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7296,6 +7315,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_0_1"; @@ -7527,6 +7547,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7711,6 +7732,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7889,6 +7911,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7918,6 +7941,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8666,6 +8690,7 @@ self: super: { "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; "wai-middleware-content-type" = doDistribute super."wai-middleware-content-type_0_2_0"; + "wai-middleware-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 79ddd3344d4..404ed64c7d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -759,6 +760,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1717,6 +1719,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1996,6 +1999,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2927,6 +2931,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3094,6 +3099,8 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3373,6 +3380,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4241,6 +4249,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4599,6 +4608,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4873,6 +4883,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5088,6 +5099,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5697,6 +5709,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5745,6 +5758,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5920,6 +5934,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6346,6 +6361,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6424,6 +6440,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6749,6 +6766,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6767,6 +6785,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7250,6 +7269,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_0_1"; @@ -7479,6 +7499,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7663,6 +7684,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7838,6 +7860,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7867,6 +7890,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8608,6 +8632,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index a4e2b2a8d75..a053d42419d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -758,6 +759,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1715,6 +1717,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1993,6 +1996,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2923,6 +2927,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3090,6 +3095,8 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3369,6 +3376,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4237,6 +4245,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4595,6 +4604,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4868,6 +4878,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -5083,6 +5094,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5692,6 +5704,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5739,6 +5752,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5914,6 +5928,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6340,6 +6355,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6418,6 +6434,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6743,6 +6760,7 @@ self: super: { "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6761,6 +6779,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7243,6 +7262,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7472,6 +7492,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7656,6 +7677,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7831,6 +7853,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7860,6 +7883,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8600,6 +8624,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 4099b5a4144..471a638f1e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -754,6 +755,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1708,6 +1710,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1983,6 +1986,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2025,6 +2029,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_14"; "clash-prelude" = doDistribute super."clash-prelude_0_10_6"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_10"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2901,6 +2907,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3063,6 +3070,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3340,6 +3349,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4204,6 +4214,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4558,6 +4569,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4828,6 +4840,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4869,6 +4882,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5041,6 +5055,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5641,6 +5656,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5686,6 +5702,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5860,6 +5877,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5886,6 +5904,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6275,6 +6294,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6351,6 +6371,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6675,6 +6696,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6693,6 +6715,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7172,6 +7195,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7399,6 +7423,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7580,6 +7605,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7754,6 +7780,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7783,6 +7810,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8517,6 +8545,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 41358159978..55a176c26cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -753,6 +754,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1598,6 +1600,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1705,6 +1708,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1980,6 +1984,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2022,6 +2027,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_14"; "clash-prelude" = doDistribute super."clash-prelude_0_10_6"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_10"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2898,6 +2905,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3059,6 +3067,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3336,6 +3346,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4200,6 +4211,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4550,6 +4562,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4819,6 +4832,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4860,6 +4874,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5032,6 +5047,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5632,6 +5648,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5677,6 +5694,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5851,6 +5869,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5877,6 +5896,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6266,6 +6286,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6342,6 +6363,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6665,6 +6687,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6683,6 +6706,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7162,6 +7186,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7389,6 +7414,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7570,6 +7596,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7744,6 +7771,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7773,6 +7801,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8503,6 +8532,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 3fc49a72614..9ed38cd9f39 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -752,6 +753,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1597,6 +1599,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1704,6 +1707,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1979,6 +1983,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2021,6 +2026,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2896,6 +2903,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3056,6 +3064,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3333,6 +3343,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4197,6 +4208,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4547,6 +4559,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4815,6 +4828,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4856,6 +4870,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5028,6 +5043,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5624,6 +5640,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5668,6 +5685,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5842,6 +5860,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5868,6 +5887,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6257,6 +6277,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6333,6 +6354,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6656,6 +6678,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6674,6 +6697,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7153,6 +7177,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7379,6 +7404,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7560,6 +7586,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7734,6 +7761,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7763,6 +7791,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8493,6 +8522,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index e4132c55105..cf6869ea157 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -752,6 +753,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1593,6 +1595,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1700,6 +1703,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1975,6 +1979,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2017,6 +2022,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2892,6 +2899,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3052,6 +3060,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3329,6 +3339,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4193,6 +4204,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4543,6 +4555,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4811,6 +4824,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4852,6 +4866,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5023,6 +5038,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5618,6 +5634,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5662,6 +5679,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5836,6 +5854,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5862,6 +5881,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6250,6 +6270,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6326,6 +6347,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6649,6 +6671,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6667,6 +6690,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7146,6 +7170,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7372,6 +7397,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7553,6 +7579,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7727,6 +7754,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7756,6 +7784,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8484,6 +8513,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 37e420e1d4e..5e4bedf16ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -750,6 +751,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1589,6 +1591,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1695,6 +1698,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1969,6 +1973,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2011,6 +2016,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2884,6 +2891,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3044,6 +3052,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3319,6 +3329,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4183,6 +4194,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4212,6 +4224,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4532,6 +4545,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4800,6 +4814,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4841,6 +4856,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5012,6 +5028,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5605,6 +5622,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5649,6 +5667,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5823,6 +5842,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5849,6 +5869,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6236,6 +6257,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6312,6 +6334,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6634,6 +6657,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6652,6 +6676,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7131,6 +7156,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7357,6 +7383,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7538,6 +7565,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7712,6 +7740,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7741,6 +7770,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8465,6 +8495,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 98d945acf55..6a07e3349ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -749,6 +750,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1588,6 +1590,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1694,6 +1697,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1968,6 +1972,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2010,6 +2015,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2880,6 +2887,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3039,6 +3047,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3314,6 +3324,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4176,6 +4187,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4205,6 +4217,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4525,6 +4538,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4793,6 +4807,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4834,6 +4849,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5005,6 +5021,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5597,6 +5614,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5641,6 +5659,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5815,6 +5834,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5841,6 +5861,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6228,6 +6249,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6304,6 +6326,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6624,6 +6647,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6642,6 +6666,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7121,6 +7146,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7347,6 +7373,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7528,6 +7555,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7702,6 +7730,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7731,6 +7760,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8453,6 +8483,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index d8e8421c045..39bf0c4feca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -748,6 +749,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1583,6 +1585,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1689,6 +1692,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1962,6 +1966,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2004,6 +2009,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2870,6 +2877,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3029,6 +3037,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3304,6 +3314,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4164,6 +4175,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4193,6 +4205,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4513,6 +4526,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4781,6 +4795,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4822,6 +4837,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4992,6 +5008,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5583,6 +5600,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5627,6 +5645,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5800,6 +5819,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5826,6 +5846,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6213,6 +6234,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6288,6 +6310,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6606,6 +6629,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6624,6 +6648,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7099,6 +7124,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7325,6 +7351,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7502,6 +7529,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7676,6 +7704,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7705,6 +7734,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8425,6 +8455,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index 3da09e186d9..621520b85a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -745,6 +746,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1580,6 +1582,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1686,6 +1689,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1959,6 +1963,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2001,6 +2006,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2867,6 +2874,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3026,6 +3034,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3301,6 +3311,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4161,6 +4172,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4190,6 +4202,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4510,6 +4523,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4778,6 +4792,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4819,6 +4834,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4989,6 +5005,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5580,6 +5597,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5624,6 +5642,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5797,6 +5816,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5823,6 +5843,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6208,6 +6229,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6283,6 +6305,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6601,6 +6624,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6619,6 +6643,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7093,6 +7118,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7319,6 +7345,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7496,6 +7523,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7669,6 +7697,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7698,6 +7727,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8416,6 +8446,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index f3ed1e1b470..84b99562844 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -215,6 +215,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -744,6 +745,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1579,6 +1581,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1685,6 +1688,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1957,6 +1961,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1999,6 +2004,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2044,6 +2051,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2860,6 +2868,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3018,6 +3027,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3292,6 +3303,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4152,6 +4164,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4180,6 +4193,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4500,6 +4514,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4612,6 +4627,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; @@ -4765,6 +4781,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4806,6 +4823,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4976,6 +4994,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5567,6 +5586,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5610,6 +5630,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5781,6 +5802,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5807,6 +5829,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6190,6 +6213,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6265,6 +6289,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6582,6 +6607,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6600,6 +6626,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7074,6 +7101,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7300,6 +7328,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7477,6 +7506,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7650,6 +7680,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7679,6 +7710,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8395,6 +8427,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index eda095a330c..baa3ca60045 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -758,6 +759,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1715,6 +1717,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1993,6 +1996,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2922,6 +2926,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3088,6 +3093,8 @@ self: super: { "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3367,6 +3374,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4234,6 +4242,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4592,6 +4601,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4865,6 +4875,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4906,6 +4917,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5079,6 +5091,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5688,6 +5701,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5734,6 +5748,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5909,6 +5924,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6332,6 +6348,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6410,6 +6427,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6734,6 +6752,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6752,6 +6771,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7233,6 +7253,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7462,6 +7483,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smoothie" = doDistribute super."smoothie_0_4_2_1"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; @@ -7646,6 +7668,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7820,6 +7843,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7849,6 +7873,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8589,6 +8614,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index ab577fde58b..9e7dc58b02f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -757,6 +758,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1713,6 +1715,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1991,6 +1994,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2917,6 +2921,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3080,6 +3085,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3359,6 +3366,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4226,6 +4234,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4584,6 +4593,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4856,6 +4866,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4897,6 +4908,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5070,6 +5082,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5677,6 +5690,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5723,6 +5737,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5898,6 +5913,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6320,6 +6336,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6398,6 +6415,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6722,6 +6740,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6740,6 +6759,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7219,6 +7239,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7448,6 +7469,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7630,6 +7652,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7804,6 +7827,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7833,6 +7857,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8572,6 +8597,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index e61030058bb..9958638e5d8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -756,6 +757,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1712,6 +1714,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1990,6 +1993,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2912,6 +2916,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3074,6 +3079,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3353,6 +3360,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4219,6 +4227,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4577,6 +4586,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4849,6 +4859,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4890,6 +4901,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5063,6 +5075,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5669,6 +5682,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5715,6 +5729,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5889,6 +5904,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6309,6 +6325,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6386,6 +6403,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6710,6 +6728,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6728,6 +6747,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7207,6 +7227,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7436,6 +7457,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7618,6 +7640,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7792,6 +7815,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7821,6 +7845,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8559,6 +8584,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 216beaa5e1e..fa0a0ca22b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -756,6 +757,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1712,6 +1714,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1989,6 +1992,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2911,6 +2915,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3073,6 +3078,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3352,6 +3359,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4218,6 +4226,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4575,6 +4584,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4847,6 +4857,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4888,6 +4899,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5061,6 +5073,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5667,6 +5680,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5713,6 +5727,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5887,6 +5902,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -6307,6 +6323,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6384,6 +6401,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6708,6 +6726,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6726,6 +6745,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7205,6 +7225,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7434,6 +7455,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7616,6 +7638,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7790,6 +7813,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7819,6 +7843,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8556,6 +8581,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index a54dcb147c6..fbb74743fdc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -755,6 +756,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1711,6 +1713,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1988,6 +1991,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2909,6 +2913,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3071,6 +3076,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3348,6 +3355,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4213,6 +4221,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4570,6 +4579,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4842,6 +4852,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4883,6 +4894,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5056,6 +5068,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5660,6 +5673,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5706,6 +5720,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5880,6 +5895,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5906,6 +5922,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6299,6 +6316,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6375,6 +6393,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6699,6 +6718,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6717,6 +6737,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7196,6 +7217,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7425,6 +7447,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7607,6 +7630,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7781,6 +7805,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7810,6 +7835,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8546,6 +8572,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 4c26b8ecf88..72b0fd87324 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -755,6 +756,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1711,6 +1713,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1987,6 +1990,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2029,6 +2033,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_11"; "clash-prelude" = doDistribute super."clash-prelude_0_10_6"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_8"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2906,6 +2912,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3068,6 +3075,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3345,6 +3354,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4210,6 +4220,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4566,6 +4577,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4838,6 +4850,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4879,6 +4892,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5052,6 +5066,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5655,6 +5670,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5701,6 +5717,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5875,6 +5892,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5901,6 +5919,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6294,6 +6313,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6370,6 +6390,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6694,6 +6715,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6712,6 +6734,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7191,6 +7214,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7420,6 +7444,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7602,6 +7627,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7776,6 +7802,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7805,6 +7832,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8540,6 +8568,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 1ef3e83698f..e4242c69618 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -755,6 +756,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1711,6 +1713,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1987,6 +1990,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2029,6 +2033,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_11"; "clash-prelude" = doDistribute super."clash-prelude_0_10_6"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_8"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2906,6 +2912,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3068,6 +3075,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3345,6 +3354,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4210,6 +4220,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4566,6 +4577,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4838,6 +4850,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4879,6 +4892,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5052,6 +5066,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5655,6 +5670,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5701,6 +5717,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5875,6 +5892,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5901,6 +5919,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6294,6 +6313,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6370,6 +6390,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6694,6 +6715,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6712,6 +6734,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7191,6 +7214,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7420,6 +7444,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7602,6 +7627,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7776,6 +7802,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7805,6 +7832,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8540,6 +8568,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 26420ddae5c..51215a0b36b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -216,6 +216,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -755,6 +756,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1710,6 +1712,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; @@ -1985,6 +1988,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2027,6 +2031,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_14"; "clash-prelude" = doDistribute super."clash-prelude_0_10_6"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_10"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2903,6 +2909,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; @@ -3065,6 +3072,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3342,6 +3351,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -4206,6 +4216,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4562,6 +4573,7 @@ self: super: { "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4832,6 +4844,7 @@ self: super: { "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; "ini" = doDistribute super."ini_0_3_4"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4873,6 +4886,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -5045,6 +5059,7 @@ self: super: { "katip" = dontDistribute super."katip"; "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5648,6 +5663,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5694,6 +5710,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5868,6 +5885,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; @@ -5894,6 +5912,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -6284,6 +6303,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; "permute" = dontDistribute super."permute"; @@ -6360,6 +6380,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6684,6 +6705,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6702,6 +6724,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -7181,6 +7204,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7408,6 +7432,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = doDistribute super."smsaero_0_4_1"; "smt-lib" = dontDistribute super."smt-lib"; "smtLib" = doDistribute super."smtLib_1_0_7"; @@ -7589,6 +7614,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7763,6 +7789,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7792,6 +7819,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8526,6 +8554,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index d4442d43a24..d073a0dc9eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -214,6 +214,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -711,6 +712,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -738,6 +740,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1552,6 +1555,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1658,6 +1662,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1923,6 +1928,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1965,6 +1971,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2008,6 +2016,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2795,6 +2804,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2947,6 +2957,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3213,6 +3225,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3903,6 +3916,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -4051,6 +4065,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4079,6 +4094,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4390,6 +4406,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4500,6 +4517,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-dejafu" = doDistribute super."hunit-dejafu_0_3_0_0"; @@ -4517,6 +4535,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4647,6 +4666,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4687,6 +4707,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4854,6 +4875,7 @@ self: super: { "karver" = dontDistribute super."karver"; "katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5426,6 +5448,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5469,6 +5492,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5634,6 +5658,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = doDistribute super."names-th_0_2_0_1"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5658,6 +5683,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5996,6 +6022,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "path" = doDistribute super."path_0_5_7"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -6036,6 +6063,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -6111,6 +6139,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; @@ -6416,6 +6445,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6434,6 +6464,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6487,6 +6518,7 @@ self: super: { "rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6889,6 +6921,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7099,6 +7132,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7273,6 +7307,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7380,6 +7415,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7439,6 +7475,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7468,6 +7505,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8158,6 +8196,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index d9d6fe893c2..1eca54977b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -214,6 +214,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -709,6 +710,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -736,6 +738,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1549,6 +1552,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1654,6 +1658,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1911,6 +1916,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1953,6 +1959,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -1996,6 +2004,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2776,6 +2785,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2926,6 +2936,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3188,6 +3200,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3873,6 +3886,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -4019,6 +4033,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4046,6 +4061,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4355,6 +4371,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4465,6 +4482,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-gui" = dontDistribute super."hunit-gui"; @@ -4481,6 +4499,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4611,6 +4630,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4651,6 +4671,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4815,6 +4836,7 @@ self: super: { "karver" = dontDistribute super."karver"; "katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5383,6 +5405,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5425,6 +5448,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5589,6 +5613,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = doDistribute super."names-th_0_2_0_1"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5613,6 +5638,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5948,6 +5974,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "path" = doDistribute super."path_0_5_7"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5988,6 +6015,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -6063,6 +6091,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6360,6 +6389,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6378,6 +6408,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6431,6 +6462,7 @@ self: super: { "rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6831,6 +6863,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7041,6 +7074,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7215,6 +7249,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_1"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7321,6 +7356,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7380,6 +7416,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7409,6 +7446,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8094,6 +8132,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix index 3b5eaf8b11c..ec18f66711d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -213,6 +213,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -705,6 +706,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -732,6 +734,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1541,6 +1544,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1646,6 +1650,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1902,6 +1907,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1944,6 +1950,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_15"; "clash-prelude" = doDistribute super."clash-prelude_0_10_7"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -1987,6 +1995,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2764,6 +2773,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2913,6 +2923,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3172,6 +3184,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3853,6 +3866,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -3997,6 +4011,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -4024,6 +4039,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4333,6 +4349,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4442,6 +4459,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-gui" = dontDistribute super."hunit-gui"; @@ -4458,6 +4476,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4587,6 +4606,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4627,6 +4647,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4790,6 +4811,7 @@ self: super: { "karver" = dontDistribute super."karver"; "katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5357,6 +5379,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5399,6 +5422,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5562,6 +5586,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = doDistribute super."names-th_0_2_0_1"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5586,6 +5611,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5917,6 +5943,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "path" = doDistribute super."path_0_5_7"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5956,6 +5983,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -6030,6 +6058,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6327,6 +6356,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6345,6 +6375,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6395,6 +6426,7 @@ self: super: { "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6579,6 +6611,7 @@ self: super: { "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_4"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6792,6 +6825,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -7001,6 +7035,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7175,6 +7210,7 @@ self: super: { "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_2"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7279,6 +7315,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7337,6 +7374,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7366,6 +7404,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -8049,6 +8088,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.3.nix b/pkgs/development/haskell-modules/configuration-lts-6.3.nix index 855f6aca367..ef66bb58926 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.3.nix @@ -213,6 +213,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -704,6 +705,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -731,6 +733,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1463,6 +1466,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1568,6 +1572,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1616,6 +1621,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_2_2"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1822,6 +1828,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1860,7 +1867,13 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_19"; + "clash-lib" = doDistribute super."clash-lib_0_6_17"; + "clash-prelude" = doDistribute super."clash-prelude_0_10_9"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_7"; @@ -1901,6 +1914,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2670,6 +2684,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2819,6 +2834,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3078,6 +3095,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3755,6 +3773,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -3898,6 +3917,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -3925,6 +3945,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4232,6 +4253,7 @@ self: super: { "hspec-setup" = doDistribute super."hspec-setup_0_1_1_0"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4338,6 +4360,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-gui" = dontDistribute super."hunit-gui"; @@ -4354,6 +4377,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4483,6 +4507,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4523,6 +4548,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4683,6 +4709,7 @@ self: super: { "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5249,6 +5276,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5291,6 +5319,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5452,6 +5481,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = doDistribute super."names-th_0_2_0_1"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5476,6 +5506,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5806,6 +5837,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "path" = doDistribute super."path_0_5_7"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5845,6 +5877,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -5918,6 +5951,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6211,6 +6245,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6229,6 +6264,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6279,6 +6315,7 @@ self: super: { "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6462,6 +6499,7 @@ self: super: { "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_4"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6674,6 +6712,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -6883,6 +6922,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7056,6 +7096,7 @@ self: super: { "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7159,6 +7200,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7216,6 +7258,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7245,6 +7288,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -7920,6 +7964,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.4.nix b/pkgs/development/haskell-modules/configuration-lts-6.4.nix index f81089bf70c..77ca194e448 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.4.nix @@ -213,6 +213,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -703,6 +704,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -730,6 +732,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1461,6 +1464,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1566,6 +1570,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1614,6 +1619,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_2_2"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1819,6 +1825,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1857,7 +1864,13 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_19"; + "clash-lib" = doDistribute super."clash-lib_0_6_17"; + "clash-prelude" = doDistribute super."clash-prelude_0_10_9"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; @@ -1898,6 +1911,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2661,6 +2675,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2809,6 +2824,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3068,6 +3085,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3745,6 +3763,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -3888,6 +3907,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -3915,6 +3935,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4220,6 +4241,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4325,6 +4347,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-gui" = dontDistribute super."hunit-gui"; @@ -4341,6 +4364,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4470,6 +4494,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4510,6 +4535,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4670,6 +4696,7 @@ self: super: { "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5235,6 +5262,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5277,6 +5305,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5321,6 +5350,7 @@ self: super: { "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5436,6 +5466,7 @@ self: super: { "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; "names-th" = doDistribute super."names-th_0_2_0_1"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5459,6 +5490,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5786,6 +5818,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5825,6 +5858,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -5898,6 +5932,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6191,6 +6226,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6209,6 +6245,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6259,6 +6296,7 @@ self: super: { "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6439,6 +6477,7 @@ self: super: { "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_4"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6651,6 +6690,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -6858,6 +6898,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7031,6 +7072,7 @@ self: super: { "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7132,6 +7174,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7189,6 +7232,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7218,6 +7262,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -7891,6 +7936,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.5.nix b/pkgs/development/haskell-modules/configuration-lts-6.5.nix index 3547508f8c5..45ede8fa435 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.5.nix @@ -213,6 +213,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -701,6 +702,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -728,6 +730,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1458,6 +1461,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1563,6 +1567,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1611,6 +1616,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_2_2"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1815,6 +1821,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1853,7 +1860,13 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_19"; + "clash-lib" = doDistribute super."clash-lib_0_6_17"; + "clash-prelude" = doDistribute super."clash-prelude_0_10_9"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; @@ -1893,6 +1906,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2653,6 +2667,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2801,6 +2816,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3060,6 +3077,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3735,6 +3753,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -3878,6 +3897,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -3905,6 +3925,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4209,6 +4230,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4314,6 +4336,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-gui" = dontDistribute super."hunit-gui"; @@ -4330,6 +4353,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4459,6 +4483,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4499,6 +4524,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4658,6 +4684,7 @@ self: super: { "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5220,6 +5247,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5262,6 +5290,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5306,6 +5335,7 @@ self: super: { "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5419,6 +5449,7 @@ self: super: { "named-records" = dontDistribute super."named-records"; "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5442,6 +5473,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5769,6 +5801,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5808,6 +5841,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -5878,6 +5912,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6171,6 +6206,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6187,6 +6223,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6237,6 +6274,7 @@ self: super: { "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6355,6 +6393,7 @@ self: super: { "relacion" = dontDistribute super."relacion"; "relation" = dontDistribute super."relation"; "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = doDistribute super."relational-query_0_8_2_3"; "relational-record-examples" = dontDistribute super."relational-record-examples"; "relative-date" = dontDistribute super."relative-date"; "relit" = dontDistribute super."relit"; @@ -6414,6 +6453,7 @@ self: super: { "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_4"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6626,6 +6666,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -6830,6 +6871,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -7002,6 +7044,7 @@ self: super: { "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7102,6 +7145,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7158,6 +7202,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7187,6 +7232,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -7852,6 +7898,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.6.nix b/pkgs/development/haskell-modules/configuration-lts-6.6.nix index 017412c76ba..01d91f7b3d8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.6.nix @@ -212,6 +212,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -357,6 +358,7 @@ self: super: { "GiST" = dontDistribute super."GiST"; "Gifcurry" = dontDistribute super."Gifcurry"; "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "Glob" = doDistribute super."Glob_0_7_9"; "GlomeTrace" = dontDistribute super."GlomeTrace"; "GlomeVec" = dontDistribute super."GlomeVec"; "GlomeView" = dontDistribute super."GlomeView"; @@ -698,6 +700,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -725,6 +728,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1440,6 +1444,7 @@ self: super: { "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-list" = doDistribute super."binary-list_1_1_1_1"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_5_0"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-state" = dontDistribute super."binary-state"; @@ -1453,6 +1458,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1558,6 +1564,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1606,6 +1613,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_2_2"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1810,6 +1818,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1848,7 +1857,13 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_19"; + "clash-lib" = doDistribute super."clash-lib_0_6_17"; + "clash-prelude" = doDistribute super."clash-prelude_0_10_9"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; @@ -1888,6 +1903,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2648,6 +2664,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2796,6 +2813,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3055,6 +3074,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3730,6 +3750,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -3873,6 +3894,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -3899,6 +3921,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4203,6 +4226,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4307,6 +4331,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-gui" = dontDistribute super."hunit-gui"; @@ -4323,6 +4348,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4452,6 +4478,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4492,6 +4519,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4651,6 +4679,7 @@ self: super: { "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5175,6 +5204,8 @@ self: super: { "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_8_0"; + "microlens-platform" = doDistribute super."microlens-platform_0_3_2_0"; "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; @@ -5209,6 +5240,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5251,6 +5283,7 @@ self: super: { "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5295,6 +5328,7 @@ self: super: { "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5408,6 +5442,7 @@ self: super: { "named-records" = dontDistribute super."named-records"; "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5431,6 +5466,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5757,6 +5793,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5796,6 +5833,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -5866,6 +5904,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6157,6 +6196,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6173,6 +6213,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6223,6 +6264,7 @@ self: super: { "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6341,6 +6383,7 @@ self: super: { "relacion" = dontDistribute super."relacion"; "relation" = dontDistribute super."relation"; "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = doDistribute super."relational-query_0_8_2_3"; "relational-record-examples" = dontDistribute super."relational-record-examples"; "relative-date" = dontDistribute super."relative-date"; "relit" = dontDistribute super."relit"; @@ -6400,6 +6443,7 @@ self: super: { "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_4"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6612,6 +6656,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -6814,6 +6859,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -6986,6 +7032,7 @@ self: super: { "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7086,6 +7133,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7142,6 +7190,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7171,6 +7220,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -7835,6 +7885,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.7.nix b/pkgs/development/haskell-modules/configuration-lts-6.7.nix index afbe25cc30d..fc4aab41a65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.7.nix @@ -212,6 +212,7 @@ self: super: { "Crypto" = dontDistribute super."Crypto"; "CurryDB" = dontDistribute super."CurryDB"; "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_2"; "DBlimited" = dontDistribute super."DBlimited"; "DBus" = dontDistribute super."DBus"; "DCFL" = dontDistribute super."DCFL"; @@ -357,6 +358,7 @@ self: super: { "GiST" = dontDistribute super."GiST"; "Gifcurry" = dontDistribute super."Gifcurry"; "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "Glob" = doDistribute super."Glob_0_7_9"; "GlomeTrace" = dontDistribute super."GlomeTrace"; "GlomeVec" = dontDistribute super."GlomeVec"; "GlomeView" = dontDistribute super."GlomeView"; @@ -698,6 +700,7 @@ self: super: { "OpenCLRaw" = dontDistribute super."OpenCLRaw"; "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = doDistribute super."OpenGLRaw_3_2_0_0"; "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; "OpenSCAD" = dontDistribute super."OpenSCAD"; "OpenVG" = dontDistribute super."OpenVG"; @@ -725,6 +728,7 @@ self: super: { "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; "PasswordGenerator" = dontDistribute super."PasswordGenerator"; "PastePipe" = dontDistribute super."PastePipe"; + "PathTree" = dontDistribute super."PathTree"; "Pathfinder" = dontDistribute super."Pathfinder"; "Peano" = dontDistribute super."Peano"; "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; @@ -1436,6 +1440,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_5_0"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-state" = dontDistribute super."binary-state"; @@ -1449,6 +1454,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_2_0"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1554,6 +1560,7 @@ self: super: { "blink1" = dontDistribute super."blink1"; "blip" = dontDistribute super."blip"; "bliplib" = dontDistribute super."bliplib"; + "blockhash" = dontDistribute super."blockhash"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; @@ -1601,6 +1608,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_2_2"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1805,6 +1813,7 @@ self: super: { "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_4"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1843,7 +1852,13 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_19"; + "clash-lib" = doDistribute super."clash-lib_0_6_17"; + "clash-prelude" = doDistribute super."clash-prelude_0_10_9"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_6"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_6"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_13"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; @@ -1882,6 +1897,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_2_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2638,6 +2654,7 @@ self: super: { "enummapset" = dontDistribute super."enummapset"; "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; + "env-locale" = dontDistribute super."env-locale"; "env-parser" = dontDistribute super."env-parser"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2785,6 +2802,8 @@ self: super: { "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl" = doDistribute super."fgl_5_5_2_3"; + "fgl-arbitrary" = doDistribute super."fgl-arbitrary_0_2_0_1"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; "fibon" = dontDistribute super."fibon"; @@ -3044,6 +3063,7 @@ self: super: { "genvalidity" = dontDistribute super."genvalidity"; "genvalidity-containers" = dontDistribute super."genvalidity-containers"; "genvalidity-hspec" = dontDistribute super."genvalidity-hspec"; + "genvalidity-text" = dontDistribute super."genvalidity-text"; "geo-resolver" = dontDistribute super."geo-resolver"; "geo-uk" = dontDistribute super."geo-uk"; "geocalc" = dontDistribute super."geocalc"; @@ -3082,6 +3102,7 @@ self: super: { "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-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4_2"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3717,6 +3738,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_12"; "hasql-backend" = dontDistribute super."hasql-backend"; "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; "hasql-pool" = dontDistribute super."hasql-pool"; @@ -3860,6 +3882,7 @@ self: super: { "hgen" = dontDistribute super."hgen"; "hgeometric" = dontDistribute super."hgeometric"; "hgeometry" = dontDistribute super."hgeometry"; + "hgeos" = dontDistribute super."hgeos"; "hgithub" = dontDistribute super."hgithub"; "hgl-example" = dontDistribute super."hgl-example"; "hgom" = dontDistribute super."hgom"; @@ -3886,6 +3909,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_3"; "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; @@ -4190,6 +4214,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-stack-rerun" = dontDistribute super."hspec-stack-rerun"; "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"; @@ -4291,6 +4316,7 @@ self: super: { "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_1"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; "hunit-gui" = dontDistribute super."hunit-gui"; @@ -4307,6 +4333,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = doDistribute super."hw-bits_0_0_0_6"; "hw-json" = doDistribute super."hw-json_0_0_0_2"; "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; @@ -4436,6 +4463,7 @@ self: super: { "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; + "ini-qq" = dontDistribute super."ini-qq"; "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; @@ -4475,6 +4503,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invariant" = doDistribute super."invariant_0_3_1"; "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; @@ -4634,6 +4663,7 @@ self: super: { "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; "katt" = dontDistribute super."katt"; + "kawhi" = dontDistribute super."kawhi"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; @@ -5157,6 +5187,8 @@ self: super: { "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_8_0"; + "microlens-platform" = doDistribute super."microlens-platform_0_3_2_0"; "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; @@ -5191,6 +5223,7 @@ self: super: { "miniutter" = dontDistribute super."miniutter"; "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; + "mios" = dontDistribute super."mios"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; "mix-arrows" = dontDistribute super."mix-arrows"; @@ -5231,6 +5264,7 @@ self: super: { "monad-lgbt" = dontDistribute super."monad-lgbt"; "monad-log" = dontDistribute super."monad-log"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-logger-syslog" = doDistribute super."monad-logger-syslog_0_1_1_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5275,6 +5309,7 @@ self: super: { "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_1_2"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5387,6 +5422,7 @@ self: super: { "named-records" = dontDistribute super."named-records"; "namelist" = dontDistribute super."namelist"; "names" = dontDistribute super."names"; + "namespace" = dontDistribute super."namespace"; "nano-cryptr" = dontDistribute super."nano-cryptr"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; @@ -5410,6 +5446,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_2"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5736,6 +5773,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_1_1_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5775,6 +5813,7 @@ self: super: { "perdure" = dontDistribute super."perdure"; "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; + "periodic" = dontDistribute super."periodic"; "perm" = dontDistribute super."perm"; "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; @@ -5844,6 +5883,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-cliff" = doDistribute super."pipes-cliff_0_10_0_4"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6133,6 +6173,7 @@ self: super: { "quick-schema" = dontDistribute super."quick-schema"; "quickbooks" = dontDistribute super."quickbooks"; "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-io" = doDistribute super."quickcheck-io_0_1_2"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -6149,6 +6190,7 @@ self: super: { "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; + "quipper" = dontDistribute super."quipper"; "quiver" = dontDistribute super."quiver"; "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; @@ -6199,6 +6241,7 @@ self: super: { "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; + "ratel-wai" = doDistribute super."ratel-wai_0_1_2"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; @@ -6317,6 +6360,7 @@ self: super: { "relacion" = dontDistribute super."relacion"; "relation" = dontDistribute super."relation"; "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = doDistribute super."relational-query_0_8_2_3"; "relational-record-examples" = dontDistribute super."relational-record-examples"; "relative-date" = dontDistribute super."relative-date"; "relit" = dontDistribute super."relit"; @@ -6374,6 +6418,7 @@ self: super: { "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_4"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6586,6 +6631,7 @@ self: super: { "selinux" = dontDistribute super."selinux"; "semaphore-plus" = dontDistribute super."semaphore-plus"; "semi-iso" = dontDistribute super."semi-iso"; + "semibounded-lattices" = dontDistribute super."semibounded-lattices"; "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; "semigroups" = doDistribute super."semigroups_0_18_1"; @@ -6788,6 +6834,7 @@ self: super: { "smartconstructor" = dontDistribute super."smartconstructor"; "smartword" = dontDistribute super."smartword"; "sme" = dontDistribute super."sme"; + "smerdyakov" = dontDistribute super."smerdyakov"; "smsaero" = dontDistribute super."smsaero"; "smt-lib" = dontDistribute super."smt-lib"; "smtlib2" = dontDistribute super."smtlib2"; @@ -6960,6 +7007,7 @@ self: super: { "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; "stackage-curator" = doDistribute super."stackage-curator_0_14_0"; + "stackage-install" = doDistribute super."stackage-install_0_1_1_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7060,6 +7108,7 @@ self: super: { "stripe-core" = doDistribute super."stripe-core_2_0_3"; "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strive" = doDistribute super."strive_2_2_2"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; "structural-induction" = dontDistribute super."structural-induction"; @@ -7116,6 +7165,7 @@ self: super: { "symengine" = dontDistribute super."symengine"; "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; + "sync-mht" = doDistribute super."sync-mht_0_3_8_4"; "synchronous-channels" = dontDistribute super."synchronous-channels"; "syncthing-hs" = dontDistribute super."syncthing-hs"; "synt" = dontDistribute super."synt"; @@ -7145,6 +7195,7 @@ self: super: { "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; + "system-locale" = dontDistribute super."system-locale"; "system-random-effect" = dontDistribute super."system-random-effect"; "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; @@ -7806,6 +7857,7 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_4"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 01475c0bf26..13057b4c4aa 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1469,13 +1469,14 @@ self: { }) {}; "BiGUL" = callPackage - ({ mkDerivation, base, containers, mtl, pretty, template-haskell }: + ({ mkDerivation, base, containers, mtl, template-haskell, th-extras + }: mkDerivation { pname = "BiGUL"; - version = "0.9.0.0"; - sha256 = "4530a12694a213bbbc98a55a7120c7093d92a70892757c30faac0176a4ce9ff7"; + version = "1.0.0"; + sha256 = "f4fe9d078b3f7b3db8d39be54877ff912c0c7f37774a82c728edab713efc6775"; libraryHaskellDepends = [ - base containers mtl pretty template-haskell + base containers mtl template-haskell th-extras ]; jailbreak = true; homepage = "http://www.prg.nii.ac.jp/project/bigul/"; @@ -3978,8 +3979,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "Concurrent-Cache"; - version = "0.2.0.0"; - sha256 = "df1d1540e28338609f86baef867704c4df1a2dfb8cf46881ec9227d3433fae3b"; + version = "0.2.1.0"; + sha256 = "4b729f38e34be0f9b9bc51eafd513c1e476a14f4058d4476341db51e6c0ad642"; libraryHaskellDepends = [ base ]; description = "A Cached variable for IO functions"; license = stdenv.lib.licenses.bsd3; @@ -4496,7 +4497,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "DAV" = callPackage + "DAV_1_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , data-default, exceptions, http-client, http-client-tls , http-types, lens, mtl, mtl-compat, network, network-uri @@ -4507,6 +4508,8 @@ self: { pname = "DAV"; version = "1.2"; sha256 = "1a07c8ef17cd4207c6f889e7eb5c45d9f025374f2cdacc1e34e6d71fe103b746"; + revision = "1"; + editedCabalFile = "6c084095b369b6a2cb797a19a9accf5488f729f19bb6c0240e0f6faf1ac266bb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -4524,6 +4527,37 @@ self: { homepage = "http://floss.scru.org/hDAV"; description = "RFC 4918 WebDAV support"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "DAV" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , data-default, exceptions, haskeline, http-client, http-client-tls + , http-types, lens, mtl, network, network-uri, optparse-applicative + , transformers, transformers-base, transformers-compat, utf8-string + , xml-conduit, xml-hamlet + }: + mkDerivation { + pname = "DAV"; + version = "1.3.1"; + sha256 = "5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring case-insensitive containers data-default exceptions + http-client http-client-tls http-types lens mtl transformers + transformers-base transformers-compat utf8-string xml-conduit + xml-hamlet + ]; + executableHaskellDepends = [ + base bytestring case-insensitive containers data-default exceptions + haskeline http-client http-client-tls http-types lens mtl network + network-uri optparse-applicative transformers transformers-base + transformers-compat utf8-string xml-conduit xml-hamlet + ]; + homepage = "http://floss.scru.org/hDAV"; + description = "RFC 4918 WebDAV support"; + license = stdenv.lib.licenses.gpl3; }) {}; "DBlimited" = callPackage @@ -7877,7 +7911,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Glob" = callPackage + "Glob_0_7_9" = callPackage ({ mkDerivation, base, containers, directory, dlist, filepath , HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2, transformers, transformers-compat @@ -7895,6 +7929,30 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 transformers transformers-compat ]; + homepage = "http://iki.fi/matti.niemenmaa/glob/"; + description = "Globbing library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Glob" = callPackage + ({ mkDerivation, base, containers, directory, dlist, filepath + , HUnit, QuickCheck, test-framework, test-framework-hunit + , test-framework-quickcheck2, transformers, transformers-compat + }: + mkDerivation { + pname = "Glob"; + version = "0.7.10"; + sha256 = "db8f67725566df72379cdbbdb2f7aaf6500163b94924229b4b0aa9bbaa9804a7"; + libraryHaskellDepends = [ + base containers directory dlist filepath transformers + transformers-compat + ]; + testHaskellDepends = [ + base containers directory dlist filepath HUnit QuickCheck + test-framework test-framework-hunit test-framework-quickcheck2 + transformers transformers-compat + ]; doCheck = false; homepage = "http://iki.fi/matti.niemenmaa/glob/"; description = "Globbing library"; @@ -16359,7 +16417,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesa;}; - "OpenGLRaw" = callPackage + "OpenGLRaw_3_2_0_0" = callPackage ({ mkDerivation, base, bytestring, containers, fixed, half, mesa , text, transformers }: @@ -16374,6 +16432,24 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) mesa;}; + + "OpenGLRaw" = callPackage + ({ mkDerivation, base, bytestring, containers, fixed, half, mesa + , text, transformers + }: + mkDerivation { + pname = "OpenGLRaw"; + version = "3.2.1.0"; + sha256 = "a1554684460bd34b2e031cfc5f5e5388e6266f67482bd77829575b5b8b339afe"; + libraryHaskellDepends = [ + base bytestring containers fixed half text transformers + ]; + librarySystemDepends = [ mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) mesa;}; "OpenGLRaw21" = callPackage @@ -16829,6 +16905,24 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "PathTree" = callPackage + ({ mkDerivation, base, containers, QuickCheck, test-framework + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "PathTree"; + version = "0.1.1.0"; + sha256 = "18f88853bfe2e2b1a5961765ca4874dc58418dbb480781a9446deca7654918e7"; + libraryHaskellDepends = [ base containers ]; + testHaskellDepends = [ + base QuickCheck test-framework test-framework-quickcheck2 + ]; + jailbreak = true; + homepage = "https://github.com/pjrt/PathTree#readme"; + description = "A tree used to merge and maintain paths"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "Pathfinder" = callPackage ({ mkDerivation, base, bytestring, libxml2, text }: mkDerivation { @@ -24914,8 +25008,8 @@ self: { }: mkDerivation { pname = "aeson-diff"; - version = "1.0.0.0"; - sha256 = "5ea558cd2825880fe162418a933077d457cc02eb2cb4bcef48b5b49bef6ca9b1"; + version = "1.0.0.1"; + sha256 = "8a2398f9898138444613c389c29222902a56f0078f5200017bf69cb86de1d76b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -24929,7 +25023,6 @@ self: { aeson base bytestring directory filepath Glob hlint QuickCheck quickcheck-instances text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/thsutton/aeson-diff"; description = "Extract and apply patches to JSON documents"; license = stdenv.lib.licenses.bsd3; @@ -43369,6 +43462,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bifunctors_5_4" = callPackage + ({ mkDerivation, base, base-orphans, comonad, containers, hspec + , QuickCheck, semigroups, tagged, template-haskell, transformers + , transformers-compat + }: + mkDerivation { + pname = "bifunctors"; + version = "5.4"; + sha256 = "47d5c35c00d743ded8116d598cfc81c88acea11859375709d9b54c94f4e0a26d"; + libraryHaskellDepends = [ + base base-orphans comonad containers semigroups tagged + template-haskell transformers transformers-compat + ]; + testHaskellDepends = [ + base hspec QuickCheck transformers transformers-compat + ]; + homepage = "http://github.com/ekmett/bifunctors/"; + description = "Bifunctors"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bighugethesaurus" = callPackage ({ mkDerivation, base, HTTP, split }: mkDerivation { @@ -43964,7 +44079,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-orphans" = callPackage + "binary-orphans_0_1_5_0" = callPackage ({ mkDerivation, aeson, base, binary, case-insensitive, hashable , quickcheck-instances, scientific, tagged, tasty, tasty-quickcheck , text, text-binary, time, unordered-containers, vector @@ -43987,6 +44102,32 @@ self: { homepage = "https://github.com/phadej/binary-orphans#readme"; description = "Orphan instances for binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-orphans" = callPackage + ({ mkDerivation, aeson, base, binary, case-insensitive, hashable + , QuickCheck, quickcheck-instances, scientific, tagged, tasty + , tasty-quickcheck, text, text-binary, time, unordered-containers + , vector, vector-binary-instances + }: + mkDerivation { + pname = "binary-orphans"; + version = "0.1.5.1"; + sha256 = "c60442199ad6139654a6a672dc66d321dbe8a23199fb5269ef295b2adc23af4c"; + libraryHaskellDepends = [ + aeson base binary case-insensitive hashable scientific tagged text + text-binary time unordered-containers vector + vector-binary-instances + ]; + testHaskellDepends = [ + aeson base binary case-insensitive hashable QuickCheck + quickcheck-instances scientific tagged tasty tasty-quickcheck text + time unordered-containers vector + ]; + homepage = "https://github.com/phadej/binary-orphans#readme"; + description = "Orphan instances for binary"; + license = stdenv.lib.licenses.bsd3; }) {}; "binary-parser_0_5_0_1" = callPackage @@ -44503,7 +44644,7 @@ self: { inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXxf86vm; inherit (pkgs) mesa;}; - "bindings-GLFW" = callPackage + "bindings-GLFW_3_1_2_0" = callPackage ({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXcursor , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm , mesa, template-haskell, test-framework, test-framework-hunit @@ -44524,6 +44665,33 @@ self: { doCheck = false; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor; + inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes; + inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama; + inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXxf86vm; + inherit (pkgs) mesa;}; + + "bindings-GLFW" = callPackage + ({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXcursor + , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm + , mesa, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "bindings-GLFW"; + version = "3.1.2.1"; + sha256 = "083cea7d2262aecd8a80f74d80c82c2aaa84cf80e960d456e8e34fc38398decb"; + libraryHaskellDepends = [ base bindings-DSL template-haskell ]; + librarySystemDepends = [ + libX11 libXcursor libXext libXfixes libXi libXinerama libXrandr + libXxf86vm mesa + ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + ]; + jailbreak = true; + description = "Low-level bindings to GLFW OpenGL library"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor; inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes; inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama; @@ -47055,6 +47223,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "blockhash" = callPackage + ({ mkDerivation, base, bytestring, JuicyPixels + , optparse-applicative, primitive, vector, vector-algorithms + }: + mkDerivation { + pname = "blockhash"; + version = "0.1.0.0"; + sha256 = "81e50f190a92639b5d6545d544500001c6567fbda18338a9238b1809bc4d5449"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring primitive vector vector-algorithms + ]; + executableHaskellDepends = [ + base JuicyPixels optparse-applicative vector + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/kseo/blockhash#readme"; + description = "Blockhash perceptual image hash algorithm"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "blocking-transactions" = callPackage ({ mkDerivation, base, containers, parallel }: mkDerivation { @@ -47700,14 +47890,13 @@ self: { }: mkDerivation { pname = "boomange"; - version = "0.1.3.1"; - sha256 = "a0e249f91c62048a2cbf1d2935deab37ff214099634c15bb308a41fa72a3e1e9"; + version = "0.1.3.2"; + sha256 = "0a0d3eab319a67e76c0552a6d7bee457b7e102a2b10a9ba56b186dccfa008069"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base containers descrilo directory filepath simtreelo ]; - jailbreak = true; description = "A Bookmarks manager with a HTML generator"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -48455,7 +48644,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bson" = callPackage + "bson_0_3_2_2" = callPackage ({ mkDerivation, base, binary, bytestring, cryptohash , data-binary-ieee754, mtl, network, QuickCheck, test-framework , test-framework-quickcheck2, text, time @@ -48475,6 +48664,29 @@ self: { homepage = "http://github.com/mongodb-haskell/bson"; description = "BSON documents are JSON-like objects with a standard binary encoding"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bson" = callPackage + ({ mkDerivation, base, binary, bytestring, cryptohash + , data-binary-ieee754, mtl, network, QuickCheck, test-framework + , test-framework-quickcheck2, text, time + }: + mkDerivation { + pname = "bson"; + version = "0.3.2.3"; + sha256 = "9b3aba435365cdfbbd0ba8ccb3400e961d56329da57f6de2e1e391004c374982"; + libraryHaskellDepends = [ + base binary bytestring cryptohash data-binary-ieee754 mtl network + text time + ]; + testHaskellDepends = [ + base binary bytestring cryptohash data-binary-ieee754 mtl network + QuickCheck test-framework test-framework-quickcheck2 text time + ]; + homepage = "http://github.com/mongodb-haskell/bson"; + description = "BSON documents are JSON-like objects with a standard binary encoding"; + license = "unknown"; }) {}; "bson-generic" = callPackage @@ -52719,18 +52931,17 @@ self: { }) {}; "canteven-log" = callPackage - ({ mkDerivation, aeson, base, bytestring, canteven-config - , directory, fast-logger, filepath, hslogger, monad-logger - , template-haskell, text, time, transformers, yaml + ({ mkDerivation, aeson, base, bytestring, directory, fast-logger + , filepath, monad-logger, template-haskell, text, time + , transformers, yaml }: mkDerivation { pname = "canteven-log"; - version = "0.3.0.3"; - sha256 = "2496d0cc6aad2108ad9982229e078144d8c8a7f427e86803a1e10a6b6bc6a36b"; + version = "1.0.0.0"; + sha256 = "67d58599b7ed949606208aab1c17d333d4793a911405e349c710db4267d2e098"; libraryHaskellDepends = [ - aeson base bytestring canteven-config directory fast-logger - filepath hslogger monad-logger template-haskell text time - transformers yaml + aeson base bytestring directory fast-logger filepath monad-logger + template-haskell text time transformers yaml ]; jailbreak = true; homepage = "https://github.com/SumAll/haskell-canteven-log"; @@ -55247,7 +55458,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "checkers" = callPackage + "checkers_0_4_4" = callPackage ({ mkDerivation, array, base, QuickCheck, random }: mkDerivation { pname = "checkers"; @@ -55256,6 +55467,18 @@ self: { libraryHaskellDepends = [ array base QuickCheck random ]; description = "Check properties on standard classes and data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "checkers" = callPackage + ({ mkDerivation, array, base, QuickCheck, random }: + mkDerivation { + pname = "checkers"; + version = "0.4.5"; + sha256 = "7963cf60f9fda15ea022351f75f8e5e8636f79b163ee4ad05e893f74e5112d91"; + libraryHaskellDepends = [ array base QuickCheck random ]; + description = "Check properties on standard classes and data structures"; + license = stdenv.lib.licenses.bsd3; }) {}; "chell_0_4" = callPackage @@ -56556,7 +56779,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-ghc" = callPackage + "clash-ghc_0_6_19" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl , containers, deepseq, directory, filepath, ghc, ghc-typelits-extra @@ -56583,6 +56806,34 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-ghc" = callPackage + ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib + , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl + , containers, deepseq, directory, filepath, ghc, ghc-typelits-extra + , ghc-typelits-natnormalise, hashable, haskeline, lens, mtl + , process, text, time, transformers, unbound-generics, unix + , unordered-containers + }: + mkDerivation { + pname = "clash-ghc"; + version = "0.6.20"; + sha256 = "9cd2247062148e39cb1eb9f35a1fca9a1a8ad06d0d273eb7aa4a971673c68929"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bifunctors bytestring clash-lib clash-prelude + clash-systemverilog clash-verilog clash-vhdl containers deepseq + directory filepath ghc ghc-typelits-extra ghc-typelits-natnormalise + hashable haskeline lens mtl process text time transformers + unbound-generics unix unordered-containers + ]; + jailbreak = true; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware"; + license = stdenv.lib.licenses.bsd2; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -56843,7 +57094,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-lib" = callPackage + "clash-lib_0_6_17" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -56863,6 +57114,29 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-lib" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude + , concurrent-supply, containers, deepseq, directory, errors, fgl + , filepath, ghc, hashable, lens, mtl, pretty, process + , template-haskell, text, time, transformers, unbound-generics + , unordered-containers, uu-parsinglib, wl-pprint-text + }: + mkDerivation { + pname = "clash-lib"; + version = "0.6.18"; + sha256 = "84031ce63203a0e339ec64de2f8804a8721a04b8be7f14e56faa8671bbcbb9fc"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath ghc hashable lens + mtl pretty process template-haskell text time transformers + unbound-generics unordered-containers uu-parsinglib wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - As a Library"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-prelude_0_9_2" = callPackage @@ -56996,7 +57270,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-prelude" = callPackage + "clash-prelude_0_10_9" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens , QuickCheck, reflection, singletons, template-haskell @@ -57013,6 +57287,27 @@ self: { singletons template-haskell ]; testHaskellDepends = [ base doctest ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - Prelude library"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-prelude" = callPackage + ({ mkDerivation, array, base, data-default, doctest, ghc-prim + , ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens + , QuickCheck, reflection, singletons, template-haskell + }: + mkDerivation { + pname = "clash-prelude"; + version = "0.10.10"; + sha256 = "64577debc8c970919268374eb0b422a4b8152422df3683ce3b665cc1cfa94d9c"; + libraryHaskellDepends = [ + array base data-default ghc-prim ghc-typelits-extra + ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection + singletons template-haskell + ]; + testHaskellDepends = [ base doctest ]; doCheck = false; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; @@ -57158,7 +57453,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-systemverilog" = callPackage + "clash-systemverilog_0_6_6" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -57175,6 +57470,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-systemverilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-systemverilog"; + version = "0.6.7"; + sha256 = "377e57de5f09852b6c2059fc8d114d01b48005f270265092e98251d3c9c4d92b"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-verilog_0_5_7" = callPackage @@ -57303,7 +57616,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-verilog" = callPackage + "clash-verilog_0_6_6" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -57320,6 +57633,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Verilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-verilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-verilog"; + version = "0.6.7"; + sha256 = "1794d45c04ce52c6488f970a465861785948e2ffa2ca275678efdb75902945ab"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - Verilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-vhdl_0_5_8" = callPackage @@ -57520,7 +57851,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-vhdl" = callPackage + "clash-vhdl_0_6_13" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -57535,6 +57866,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-vhdl" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6.14"; + sha256 = "1a1e42191123299d9c8e0aaed7f95f81cd3059bff91321e028e9c9641dc2b0e0"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - VHDL backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "classify" = callPackage @@ -59738,7 +60087,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cmark" = callPackage + "cmark_0_5_2_1" = callPackage ({ mkDerivation, base, bytestring, HUnit, text }: mkDerivation { pname = "cmark"; @@ -59749,6 +60098,20 @@ self: { homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cmark" = callPackage + ({ mkDerivation, base, bytestring, HUnit, text }: + mkDerivation { + pname = "cmark"; + version = "0.5.3.1"; + sha256 = "4ae12da7e712d10a662a8323e7bc513daa1abf3ad4d055054b5f19b1122ca124"; + libraryHaskellDepends = [ base bytestring text ]; + testHaskellDepends = [ base HUnit text ]; + homepage = "https://github.com/jgm/commonmark-hs"; + description = "Fast, accurate CommonMark (Markdown) parser and renderer"; + license = stdenv.lib.licenses.bsd3; }) {}; "cmath" = callPackage @@ -64094,6 +64457,8 @@ self: { pname = "consumers"; version = "2.0"; sha256 = "467af01ed4ce5f5240c16a0693e32f27f1f098723d11c7f1eab004d08f285995"; + revision = "1"; + editedCabalFile = "5f7410822e5c36feeb12b24e3bbcb02bb6ed295812ef013913e2afa81f1980c8"; libraryHaskellDepends = [ base containers exceptions hpqtypes lifted-base lifted-threads log monad-control mtl stm time transformers-base @@ -70425,12 +70790,11 @@ self: { }: mkDerivation { pname = "data-lens"; - version = "2.10.7"; - sha256 = "3b198a84158d757d074b6cf71fe16c8ad900e24991d9813d0b6361a1fd97e050"; + version = "2.11.0.1"; + sha256 = "690a282338dbd94ecf05fce07ea90724f1bd3349defd2f6619fcf635fb7b881b"; libraryHaskellDepends = [ base comonad containers semigroupoids transformers ]; - jailbreak = true; homepage = "http://github.com/roconnor/data-lens/"; description = "Used to be Haskell 98 Lenses"; license = stdenv.lib.licenses.bsd3; @@ -70441,12 +70805,11 @@ self: { ({ mkDerivation, base, comonad, data-lens, mtl, transformers }: mkDerivation { pname = "data-lens-fd"; - version = "2.0.5"; - sha256 = "d3df1cedb0ccacfa6a2926466e10388b2a2e7bd78f5718cb2260746eec730c65"; + version = "2.0.6"; + sha256 = "e95a54e60369b8dfe4fd378df178c759aec9ecb050f6eb35c5dfb0ad0e72dd81"; libraryHaskellDepends = [ base comonad data-lens mtl transformers ]; - jailbreak = true; homepage = "http://github.com/roconnor/data-lens-fd/"; description = "Lenses"; license = stdenv.lib.licenses.bsd3; @@ -70497,10 +70860,9 @@ self: { ({ mkDerivation, base, data-lens, template-haskell }: mkDerivation { pname = "data-lens-template"; - version = "2.1.9"; - sha256 = "cf94f5d81569ad8f0ce4194649f5920226adf990d4012728958516d9821af236"; + version = "2.2"; + sha256 = "f50b0f5364c5d8a11278722ccb2faf2b7c4451001b34b4f55150599484182af0"; libraryHaskellDepends = [ base data-lens template-haskell ]; - jailbreak = true; homepage = "http://github.com/roconnor/data-lens-template/"; description = "Utilities for Data.Lens"; license = stdenv.lib.licenses.bsd3; @@ -73457,8 +73819,8 @@ self: { }: mkDerivation { pname = "deriving-compat"; - version = "0.3"; - sha256 = "14d1921e1046ca9802dc1cc62e1343d6d8ea6ea9056b8245b57cfaf85ee408ea"; + version = "0.3.1"; + sha256 = "d47aac3fb7f035e50325b539e873c242021a59bce0a124380f42bf11241438aa"; libraryHaskellDepends = [ base containers ghc-boot-th ghc-prim template-haskell transformers transformers-compat @@ -73500,10 +73862,9 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "descrilo"; - version = "0.1.0.3"; - sha256 = "82479f64aa13a8df7fafcf091ea34ca7044fad2e582489772fb1b46c3645a7a7"; + version = "0.1.0.4"; + sha256 = "17a392388b1e6f7206d720aca846c2da1a50a6cd1a0f5a97bba3d7be6c412142"; libraryHaskellDepends = [ base ]; - jailbreak = true; description = "Loads a list of items with fields"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -76745,8 +77106,8 @@ self: { }: mkDerivation { pname = "digit"; - version = "0.2.7"; - sha256 = "527f2b342e14a09af8d1b327942aab5b104316f8d8793a21f3468620bf099641"; + version = "0.2.8"; + sha256 = "d0dd0056edc862542d8ae07cf5e8ffd48b62e3f9d08ca035dfc737885d6684dd"; libraryHaskellDepends = [ base lens parsec parsers semigroups template-haskell ]; @@ -78894,12 +79255,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dlist_0_8" = callPackage + ({ mkDerivation, base, Cabal, deepseq, QuickCheck }: + mkDerivation { + pname = "dlist"; + version = "0.8"; + sha256 = "1110fcbb197cb678452b74c7850c98b5be6c0a6bb97c33a606612d81963efd4f"; + libraryHaskellDepends = [ base deepseq ]; + testHaskellDepends = [ base Cabal QuickCheck ]; + homepage = "https://github.com/spl/dlist"; + description = "Difference lists"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "dlist-instances" = callPackage ({ mkDerivation, base, dlist, semigroups }: mkDerivation { pname = "dlist-instances"; version = "0.1"; sha256 = "2598aae775532829923d2a8f99dcaaa20e49efec31314e8460a761ee653b3264"; + revision = "1"; + editedCabalFile = "21ba4b861e244658892e61f3ca5ae4dc2aea78f46a3fcc2a8750784bf4ea6f2c"; libraryHaskellDepends = [ base dlist semigroups ]; homepage = "https://github.com/gregwebs/dlist-instances"; description = "Difference lists instances"; @@ -79005,6 +79382,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dns_2_0_4" = callPackage + ({ mkDerivation, attoparsec, base, binary, blaze-builder + , bytestring, conduit, conduit-extra, containers, doctest, hspec + , iproute, mtl, network, random, resourcet, safe, word8 + }: + mkDerivation { + pname = "dns"; + version = "2.0.4"; + sha256 = "2b4fc61f4ccb440aa2b8403bff1ba00a87782e46b4261d34e6c1a5a1f1c71d6d"; + libraryHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers iproute mtl network random resourcet safe + ]; + testHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers doctest hspec iproute mtl network random + resourcet safe word8 + ]; + testTarget = "spec"; + description = "DNS library in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "dnscache" = callPackage ({ mkDerivation, base, bytestring, containers, contstuff, dns , iproute, time @@ -83506,10 +83907,11 @@ self: { pname = "endo"; version = "0.3.0.1"; sha256 = "34048da71000312081715a95e35108e5526647232c857b3c8e13dbb69e364f6a"; + revision = "1"; + editedCabalFile = "7299a456be44c72431f9193f56bb9fb21e3f76746bd7affa433f2f0bede89eb7"; libraryHaskellDepends = [ base between data-default-class mtl transformers ]; - jailbreak = true; homepage = "https://github.com/trskop/endo"; description = "Endomorphism utilities"; license = stdenv.lib.licenses.bsd3; @@ -83925,6 +84327,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "env-locale" = callPackage + ({ mkDerivation, base, old-locale, time }: + mkDerivation { + pname = "env-locale"; + version = "1.0.0.1"; + sha256 = "f2f1feb9e3141984bda8e779c1a501fd9746994a4e12a2ad4eb47042c247fcf1"; + libraryHaskellDepends = [ base old-locale time ]; + homepage = "https://github.com/Ongy/locale-hs"; + description = "A (non-forking) interface to the current locale"; + license = "LGPL"; + }) {}; + "env-parser" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , base64-bytestring, bytestring, containers, http-types, mtl @@ -85954,6 +86368,8 @@ self: { pname = "exceptions"; version = "0.8.2.1"; sha256 = "c435877ff2f04a1855e50c78bbcbf8c89f3dc42837e440956500599f6d851035"; + revision = "1"; + editedCabalFile = "0a3f64eb292941f2b9141a178b5d8ed5a9de82d2ed35b341b05c3e8e1b38c313"; libraryHaskellDepends = [ base mtl stm template-haskell transformers transformers-compat ]; @@ -86899,6 +87315,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "extra_1_4_12" = callPackage + ({ mkDerivation, base, clock, directory, filepath, process + , QuickCheck, time, unix + }: + mkDerivation { + pname = "extra"; + version = "1.4.12"; + sha256 = "205d0dbdf2d18325298170cd9d681995c267ae6fe029b5b934a8ea646aa393b2"; + libraryHaskellDepends = [ + base clock directory filepath process time unix + ]; + testHaskellDepends = [ + base clock directory filepath QuickCheck time unix + ]; + jailbreak = true; + homepage = "https://github.com/ndmitchell/extra#readme"; + description = "Extra functions I use"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "extract-dependencies_0_2_0_0" = callPackage ({ mkDerivation, async, base, Cabal, containers , package-description-remote @@ -89419,7 +89856,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fgl" = callPackage + "fgl_5_5_2_3" = callPackage ({ mkDerivation, array, base, containers, deepseq, hspec , QuickCheck, transformers }: @@ -89433,14 +89870,44 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "Martin Erwig's Functional Graph Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "fgl" = callPackage + ({ mkDerivation, array, base, containers, deepseq, hspec + , QuickCheck, transformers + }: + mkDerivation { + pname = "fgl"; + version = "5.5.3.0"; + sha256 = "d70cd8e2694311fae0b44fe0d1b342c95706ceffd3be66767e9027dfa5597e39"; + libraryHaskellDepends = [ + array base containers deepseq transformers + ]; + testHaskellDepends = [ base containers hspec QuickCheck ]; + description = "Martin Erwig's Functional Graph Library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "fgl-arbitrary_0_2_0_1" = callPackage + ({ mkDerivation, base, containers, fgl, hspec, QuickCheck }: + mkDerivation { + pname = "fgl-arbitrary"; + version = "0.2.0.1"; + sha256 = "3e85922a7dde02ee0dac8f93eb233ccb16dfdd1a5a4ec8397fa1d9f7404a6104"; + libraryHaskellDepends = [ base fgl QuickCheck ]; + testHaskellDepends = [ base containers fgl hspec QuickCheck ]; + description = "QuickCheck support for fgl"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fgl-arbitrary" = callPackage ({ mkDerivation, base, containers, fgl, hspec, QuickCheck }: mkDerivation { pname = "fgl-arbitrary"; - version = "0.2.0.1"; - sha256 = "3e85922a7dde02ee0dac8f93eb233ccb16dfdd1a5a4ec8397fa1d9f7404a6104"; + version = "0.2.0.2"; + sha256 = "501d77f1f5efd952aaf06d35fc95bfd3a9bc93906f78a363766ec74d14d50b8b"; libraryHaskellDepends = [ base fgl QuickCheck ]; testHaskellDepends = [ base containers fgl hspec QuickCheck ]; description = "QuickCheck support for fgl"; @@ -90398,8 +90865,8 @@ self: { ({ mkDerivation, base, cmdargs, leancheck, template-haskell }: mkDerivation { pname = "fitspec"; - version = "0.2.2"; - sha256 = "1ac0034895c4ef1797b641a439d300910d3920cf7f02c00bbab3dae16a965e3d"; + version = "0.3.0"; + sha256 = "5c8897924c870e577d7e28344376bac99165d11abb8ef3be037a20e357c69564"; libraryHaskellDepends = [ base cmdargs leancheck template-haskell ]; @@ -95995,12 +96462,13 @@ self: { }) {}; "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, validity }: + ({ mkDerivation, base, hspec, QuickCheck, validity }: mkDerivation { pname = "genvalidity"; - version = "0.1.0.0"; - sha256 = "43477a35f12da4d8806b2a152bebb5da563c2cb442b720090597d604fe40c4f6"; + version = "0.2.0.0"; + sha256 = "45312a8ba7603f99f16799f0c20e4bd613104e0a4340566ec3c9cf2ca7d315fe"; libraryHaskellDepends = [ base QuickCheck validity ]; + testHaskellDepends = [ base hspec QuickCheck ]; homepage = "https://github.com/NorfairKing/validity#readme"; description = "Testing utilities for the validity library"; license = stdenv.lib.licenses.mit; @@ -96012,8 +96480,8 @@ self: { }: mkDerivation { pname = "genvalidity-containers"; - version = "0.1.0.0"; - sha256 = "2c44a1b1d0c7a0f9e6107da9fdc31f069d4211cc5cbd88e644edac38a2c6d164"; + version = "0.1.0.1"; + sha256 = "1193630423059f558d99e20f14e60daabb664539e25ca7c92ebca3f776dd94c2"; libraryHaskellDepends = [ base containers genvalidity QuickCheck validity ]; @@ -96026,8 +96494,8 @@ self: { ({ mkDerivation, base, genvalidity, hspec, QuickCheck, validity }: mkDerivation { pname = "genvalidity-hspec"; - version = "0.1.0.1"; - sha256 = "41f102071074cf13cc1635fc80fec7f562900191549b4f68dec24797ef7e6625"; + version = "0.2.0.0"; + sha256 = "58f2b372c3997ae2bd31da8cf5f23cb7a1bc21d3824a93a144151cd0928243a3"; libraryHaskellDepends = [ base genvalidity hspec QuickCheck validity ]; @@ -96036,6 +96504,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "genvalidity-text" = callPackage + ({ mkDerivation, base, genvalidity, hspec, QuickCheck, text + , validity + }: + mkDerivation { + pname = "genvalidity-text"; + version = "0.1.0.0"; + sha256 = "faca82b1d58fb2cd40575f0743c2579def715e697eebbaba7fc75c6b73b28c4e"; + libraryHaskellDepends = [ + base genvalidity QuickCheck text validity + ]; + testHaskellDepends = [ base genvalidity hspec QuickCheck text ]; + homepage = "https://github.com/NorfairKing/validity#readme"; + description = "GenValidity support for Text"; + license = stdenv.lib.licenses.mit; + }) {}; + "geo-resolver" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder , bytestring, http-conduit, http-types, HUnit, QuickCheck @@ -97390,7 +97875,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-typelits-natnormalise" = callPackage + "ghc-typelits-natnormalise_0_4_2" = callPackage ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit }: mkDerivation { @@ -97402,6 +97887,21 @@ self: { homepage = "http://www.clash-lang.org/"; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-typelits-natnormalise" = callPackage + ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit + }: + mkDerivation { + pname = "ghc-typelits-natnormalise"; + version = "0.4.3"; + sha256 = "7dc2b7d308b49780ee7eda9a2a88b7d0df9cf88a9fc3a2c0391a28322c136b67"; + libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "http://www.clash-lang.org/"; + description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; + license = stdenv.lib.licenses.bsd2; }) {}; "ghc-vis" = callPackage @@ -97982,7 +98482,7 @@ self: { }) {inherit (pkgs) atk;}; "gi-cairo" = callPackage - ({ mkDerivation, base, bytestring, cairo-gobject, containers + ({ mkDerivation, base, bytestring, cairo, containers , gobjectIntrospection, haskell-gi, haskell-gi-base, text , transformers }: @@ -97994,17 +98494,21 @@ self: { base bytestring containers haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ cairo-gobject gobjectIntrospection ]; + libraryPkgconfigDepends = [ cairo gobjectIntrospection ]; doHaddock = false; preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; + preCompileBuildDriver = '' + PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" + setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" + ''; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Cairo bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {cairo-gobject = null; inherit (pkgs) gobjectIntrospection;}; + }) {inherit (pkgs) cairo; inherit (pkgs) gobjectIntrospection;}; "gi-cairo_1_0_6" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo-gobject, containers + ({ mkDerivation, base, bytestring, Cabal, cairo, containers , gobjectIntrospection, haskell-gi, haskell-gi-base, text , transformers }: @@ -98016,14 +98520,18 @@ self: { libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ cairo-gobject gobjectIntrospection ]; + libraryPkgconfigDepends = [ cairo gobjectIntrospection ]; doHaddock = false; preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; + preCompileBuildDriver = '' + PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" + setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" + ''; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Cairo bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {cairo-gobject = null; inherit (pkgs) gobjectIntrospection;}; + }) {inherit (pkgs) cairo; inherit (pkgs) gobjectIntrospection;}; "gi-gdk" = callPackage ({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo @@ -99794,8 +100302,8 @@ self: { }: mkDerivation { pname = "gitHUD"; - version = "1.3.1"; - sha256 = "d770a57be1e746ed39e1c34ae6464ac4fd66599503a8b4e92f1b8a69cf986ccb"; + version = "1.3.2"; + sha256 = "1ae533abaa42c6fdca5eef94cc0e94ae6712cf1fc1336486912dedb863c4fb06"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base mtl parsec process unix ]; @@ -104456,6 +104964,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "graphviz_2999_18_1_2" = callPackage + ({ mkDerivation, base, bytestring, colour, containers, directory + , dlist, fgl, fgl-arbitrary, filepath, polyparse, process + , QuickCheck, temporary, text, transformers, wl-pprint-text + }: + mkDerivation { + pname = "graphviz"; + version = "2999.18.1.2"; + sha256 = "b08c2026d3810c15f6ad49a07fd7b879978d958fa477b369b719ec00741c85fc"; + libraryHaskellDepends = [ + base bytestring colour containers directory dlist fgl filepath + polyparse process temporary text transformers wl-pprint-text + ]; + testHaskellDepends = [ + base containers fgl fgl-arbitrary filepath QuickCheck text + ]; + homepage = "http://projects.haskell.org/graphviz/"; + description = "Bindings to Graphviz for graph visualisation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "grasp" = callPackage ({ mkDerivation, base, clock, directory, extra, filepath, hashable , lens, megaparsec, MonadRandom, mtl, pcre-heavy, primitive @@ -112711,8 +113241,8 @@ self: { ({ mkDerivation, base, bytestring, containers, glib, text }: mkDerivation { pname = "haskell-gi-base"; - version = "0.18"; - sha256 = "ebf2f2a9845ca90a50bdf1c0943d47fa55bade1d622d5f5e75ba98cd097ff94c"; + version = "0.18.1"; + sha256 = "ab6c31a6dca1bd0f7cbf4e51225dd18ef25185f70c2f33fd207968b44157b028"; libraryHaskellDepends = [ base bytestring containers text ]; libraryPkgconfigDepends = [ glib ]; homepage = "https://github.com/haskell-gi/haskell-gi-base"; @@ -112958,8 +113488,8 @@ self: { }: mkDerivation { pname = "haskell-names"; - version = "0.6.0"; - sha256 = "8d45dabf15d4073a94f5d634538288dbac6ace1971b673cafc76ea92671bb26a"; + version = "0.7.0"; + sha256 = "c0582b2a51526e24483d71f1669bba2ef340ae7014babb3a9a5b59296fc5faf2"; libraryHaskellDepends = [ aeson base bytestring containers data-lens-light filepath haskell-src-exts mtl transformers traverse-with-class uniplate @@ -112968,7 +113498,6 @@ self: { base containers filemanip filepath haskell-src-exts mtl pretty-show tasty tasty-golden traverse-with-class ]; - jailbreak = true; homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -115422,7 +115951,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hasql" = callPackage + "hasql_0_19_12" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring , bytestring-tree-builder, contravariant, contravariant-extras , data-default-class, dlist, either, hashable, hashtables, loch-th @@ -115450,6 +115979,36 @@ self: { homepage = "https://github.com/nikita-volkov/hasql"; description = "A very efficient PostgreSQL driver and a flexible mapping API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hasql" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring + , bytestring-tree-builder, contravariant, contravariant-extras + , data-default-class, dlist, either, hashable, hashtables, loch-th + , mtl, placeholders, postgresql-binary, postgresql-libpq + , profunctors, QuickCheck, quickcheck-instances, rebase, scientific + , semigroups, tasty, tasty-hunit, tasty-quickcheck + , tasty-smallcheck, text, time, transformers, uuid, vector + }: + mkDerivation { + pname = "hasql"; + version = "0.19.13"; + sha256 = "f58a3b5b7cd8c674a1b0735b6d3e43ca5d932e66124446eed2270a749ab2b114"; + libraryHaskellDepends = [ + aeson attoparsec base base-prelude bytestring + bytestring-tree-builder contravariant contravariant-extras + data-default-class dlist either hashable hashtables loch-th mtl + placeholders postgresql-binary postgresql-libpq profunctors + scientific semigroups text time transformers uuid vector + ]; + testHaskellDepends = [ + data-default-class QuickCheck quickcheck-instances rebase tasty + tasty-hunit tasty-quickcheck tasty-smallcheck + ]; + homepage = "https://github.com/nikita-volkov/hasql"; + description = "A very efficient PostgreSQL driver and a flexible mapping API"; + license = stdenv.lib.licenses.mit; }) {}; "hasql-backend_0_2_1" = callPackage @@ -119438,7 +119997,10 @@ self: { pname = "hflags"; version = "0.4"; sha256 = "a441ba0890c8c4cede8ff0c4179ae2878e4f294347db5abfe2dcd6398ee8ff9f"; + revision = "1"; + editedCabalFile = "92f936373a94c1e434e2478b624dd38ab4c66539dfc7d47afa6bf3279cf36c58"; libraryHaskellDepends = [ base containers template-haskell text ]; + jailbreak = true; homepage = "http://github.com/errge/hflags"; description = "Command line flag parser, very similar to Google's gflags"; license = "unknown"; @@ -119451,7 +120013,10 @@ self: { pname = "hflags"; version = "0.4.1"; sha256 = "147d65cba2959b682e4a33378a80766a1011a78ed767a4d08ae463af6d428a0c"; + revision = "1"; + editedCabalFile = "f310a53519ee630e1fce25c0169e788530636a0f6bd78c49b95cf4fc82b83344"; libraryHaskellDepends = [ base containers template-haskell text ]; + jailbreak = true; homepage = "http://github.com/errge/hflags"; description = "Command line flag parser, very similar to Google's gflags"; license = stdenv.lib.licenses.asl20; @@ -119464,6 +120029,8 @@ self: { pname = "hflags"; version = "0.4.2"; sha256 = "2cd30d637f4011d9b614698ef7f7bf1f55c45900e6683d60c7b17af5750f2cc5"; + revision = "1"; + editedCabalFile = "4165343ab35bbf063b872c69a353f1bffb962ce75bd66d7c1478a8083c7a5acd"; libraryHaskellDepends = [ base containers template-haskell text ]; homepage = "http://github.com/errge/hflags"; description = "Command line flag parser, very similar to Google's gflags"; @@ -119566,33 +120133,41 @@ self: { }) {}; "hfsevents_0_1_5" = callPackage - ({ mkDerivation }: + ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl + , text + }: mkDerivation { pname = "hfsevents"; version = "0.1.5"; sha256 = "b348be81f278bcbf384a59029a0135c4aef6b687f2a7168a66aeea54a494e942"; - isLibrary = false; - isExecutable = false; + libraryHaskellDepends = [ base bytestring cereal mtl text ]; + librarySystemDepends = [ Cocoa ]; + libraryToolDepends = [ CoreServices ]; homepage = "http://github.com/luite/hfsevents"; description = "File/folder watching for OS X"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" ]; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa; + inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;}; "hfsevents" = callPackage - ({ mkDerivation }: + ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl + , text + }: mkDerivation { pname = "hfsevents"; version = "0.1.6"; sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - isLibrary = false; - isExecutable = false; + libraryHaskellDepends = [ base bytestring cereal mtl text ]; + librarySystemDepends = [ Cocoa ]; + libraryToolDepends = [ CoreServices ]; homepage = "http://github.com/luite/hfsevents"; description = "File/folder watching for OS X"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" ]; - }) {}; + }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa; + inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;}; "hfusion" = callPackage ({ mkDerivation, base, containers, haskell-src, mtl, pretty, syb }: @@ -119748,6 +120323,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "hgeos" = callPackage + ({ mkDerivation, base, doctest, geos_c, Glob }: + mkDerivation { + pname = "hgeos"; + version = "0.1.0.0"; + sha256 = "dbcec98beff9c4717cb47a79057429b3151f6253cd60d3adeb8b4005c4c5e15f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ geos_c ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest Glob ]; + homepage = "https://github.com/rcook/hgeos#readme"; + description = "Haskell bindings to GEOS C API"; + license = stdenv.lib.licenses.mit; + }) {geos_c = null;}; + "hgettext" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath , haskell-src-exts, process, setlocale, uniplate @@ -120669,7 +121261,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hindent" = callPackage + "hindent_4_6_3" = callPackage ({ mkDerivation, base, containers, data-default, descriptive , directory, ghc-prim, haskell-src-exts, hspec, monad-loops, mtl , text, transformers @@ -120695,6 +121287,32 @@ self: { homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hindent" = callPackage + ({ mkDerivation, base, containers, descriptive, directory, ghc-prim + , haskell-src-exts, hspec, monad-loops, mtl, text, transformers + }: + mkDerivation { + pname = "hindent"; + version = "4.6.4"; + sha256 = "26fc1498705b8a64b03eb5b699ba6229955273d91a49a01c3c2b58436c8e4dcf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers haskell-src-exts monad-loops mtl text transformers + ]; + executableHaskellDepends = [ + base descriptive directory ghc-prim haskell-src-exts text + ]; + testHaskellDepends = [ + base directory haskell-src-exts hspec monad-loops mtl text + ]; + doCheck = false; + homepage = "http://www.github.com/chrisdone/hindent"; + description = "Extensible Haskell pretty printer"; + license = stdenv.lib.licenses.bsd3; }) {}; "hindley-milner" = callPackage @@ -125621,6 +126239,7 @@ self: { homepage = "http://khumba.net/projects/hoppy"; description = "C++ FFI generator - Documentation"; license = stdenv.lib.licenses.agpl3; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; "hoppy-generator" = callPackage @@ -125638,6 +126257,7 @@ self: { homepage = "http://khumba.net/projects/hoppy"; description = "C++ FFI generator - Code generator"; license = stdenv.lib.licenses.agpl3; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; "hoppy-runtime" = callPackage @@ -125651,6 +126271,7 @@ self: { homepage = "http://khumba.net/projects/hoppy"; description = "C++ FFI generator - Runtime support"; license = stdenv.lib.licenses.asl20; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; "hoppy-std" = callPackage @@ -125666,6 +126287,7 @@ self: { homepage = "http://khumba.net/projects/hoppy"; description = "C++ FFI generator - Standard library bindings"; license = stdenv.lib.licenses.asl20; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; "hops" = callPackage @@ -126438,8 +127060,8 @@ self: { }: mkDerivation { pname = "hpio"; - version = "0.8.0.2"; - sha256 = "b7f3c775454faea34a3bef496741f5d15ff5fc8319981b61b799ec895a21dca5"; + version = "0.8.0.3"; + sha256 = "699fc04179a479e2b1560122166c6687cd7214d2fa7376c14210465625657974"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -126540,8 +127162,10 @@ self: { }: mkDerivation { pname = "hpqtypes"; - version = "1.5.0"; - sha256 = "24c9d41d67f3df33fcf00d6eb03e9a9d0a6be8decf1488383696d1b0a44bb5ba"; + version = "1.5.1"; + sha256 = "82fb016dac6830ab8229f2b5e501ea36299c370cddbb7102b8c2837a25028f12"; + revision = "1"; + editedCabalFile = "aa5935930b36b798869a4071e1d390ee1f84f754652a16708e21abbdb3ce0989"; libraryHaskellDepends = [ aeson base bytestring containers data-default-class exceptions lifted-base monad-control mtl resource-pool text text-show time @@ -130783,6 +131407,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hspec-stack-rerun" = callPackage + ({ mkDerivation, base, directory, hspec, safe, strict }: + mkDerivation { + pname = "hspec-stack-rerun"; + version = "0.1.0.3"; + sha256 = "0f6714da2beb48b5882a17fb45e83d778ce5a6b12f60a83c75ae3391fee16deb"; + libraryHaskellDepends = [ base directory hspec safe strict ]; + homepage = "https://github.com/mwotton/hspec-stack-rerun#readme"; + description = "Simple project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hspec-structured-formatter" = callPackage ({ mkDerivation, base, hspec }: mkDerivation { @@ -135159,7 +135795,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "human-readable-duration" = callPackage + "human-readable-duration_0_2_0_1" = callPackage ({ mkDerivation, base, doctest, time }: mkDerivation { pname = "human-readable-duration"; @@ -135170,6 +135806,20 @@ self: { homepage = "http://github.com/yogsototh/human-readable-duration#readme"; description = "Provide duration helper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "human-readable-duration" = callPackage + ({ mkDerivation, base, doctest, Glob }: + mkDerivation { + pname = "human-readable-duration"; + version = "0.2.0.3"; + sha256 = "93f3a91a2994588728ae757dcca5104e18a570b3591773aa7f03c524c97599da"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest Glob ]; + homepage = "http://github.com/yogsototh/human-readable-duration#readme"; + description = "Provide duration helper"; + license = stdenv.lib.licenses.bsd3; }) {}; "hums" = callPackage @@ -135574,7 +136224,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hw-bits" = callPackage + "hw-bits_0_0_0_6" = callPackage ({ mkDerivation, base, bytestring, criterion, hspec, hw-prim, mmap , parsec, QuickCheck, resourcet, vector }: @@ -135592,6 +136242,29 @@ 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-bits" = callPackage + ({ mkDerivation, base, bytestring, criterion, hspec, hw-prim, mmap + , parsec, QuickCheck, resourcet, vector + }: + mkDerivation { + pname = "hw-bits"; + version = "0.0.0.7"; + sha256 = "16e58787b6a39fb6602926480be7eb5486f2e652668e0fb70b0ec1467b755926"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring hw-prim parsec vector ]; + executableHaskellDepends = [ + base criterion mmap resourcet vector + ]; + testHaskellDepends = [ + base bytestring hspec hw-prim QuickCheck vector + ]; + homepage = "http://github.com/haskell-works/hw-bits#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; @@ -135739,13 +136412,15 @@ self: { }: mkDerivation { pname = "hw-prim"; - version = "0.0.3.1"; - sha256 = "95ff89991fa2e1b0f4cb4a2d7a4bac15cf5a30224facd4b92292d8884600aff5"; + version = "0.0.3.2"; + sha256 = "c96ca6011d55419105bba7eebcae2d5afc627bdbcb4536469ba0b7a9f553c764"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring random vector ]; executableHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec QuickCheck ]; + testHaskellDepends = [ + base bytestring hspec QuickCheck random vector + ]; homepage = "http://github.com/haskell-works/hw-prim#readme"; description = "Primitive functions and data types"; license = stdenv.lib.licenses.bsd3; @@ -140224,6 +140899,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ini-qq" = callPackage + ({ mkDerivation, base, HUnit, ini, raw-strings-qq, template-haskell + , text + }: + mkDerivation { + pname = "ini-qq"; + version = "0.1.0.0"; + sha256 = "8c5e9da0f3307de0e3c291dc108fbbcac832fae7bb974f64961813dca4e8faeb"; + libraryHaskellDepends = [ base ini template-haskell text ]; + testHaskellDepends = [ base HUnit ini raw-strings-qq text ]; + homepage = "https://github.com/kseo/ini-qq#readme"; + description = "Quasiquoter for INI"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "inilist" = callPackage ({ mkDerivation, base, bifunctors, containers, deepseq, HUnit, safe , tasty, tasty-hunit, testpack, trifecta @@ -141237,7 +141927,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "invariant" = callPackage + "invariant_0_3_1" = callPackage ({ mkDerivation, array, base, bifunctors, containers, contravariant , ghc-prim, hspec, profunctors, QuickCheck, semigroups, StateVar , stm, tagged, template-haskell, transformers, transformers-compat @@ -141256,6 +141946,28 @@ self: { homepage = "https://github.com/nfrisby/invariant-functors"; description = "Haskell 98 invariant functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "invariant" = callPackage + ({ mkDerivation, array, base, bifunctors, comonad, containers + , contravariant, ghc-prim, hspec, profunctors, QuickCheck + , semigroups, StateVar, stm, tagged, template-haskell, transformers + , transformers-compat, unordered-containers + }: + mkDerivation { + pname = "invariant"; + version = "0.4"; + sha256 = "dccf2790eb545d167623c0133aa0838d714004bfd158e3c9dfaca38497aef316"; + libraryHaskellDepends = [ + array base bifunctors comonad containers contravariant ghc-prim + profunctors semigroups StateVar stm tagged template-haskell + transformers transformers-compat unordered-containers + ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "https://github.com/nfrisby/invariant-functors"; + description = "Haskell 98 invariant functors"; + license = stdenv.lib.licenses.bsd3; }) {}; "invertible" = callPackage @@ -145034,15 +145746,17 @@ self: { }) {}; "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, base, bytestring, QuickCheck - , quickcheck-simple, scientific, text, transformers, vector + ({ mkDerivation, aeson, base, bytestring, containers, dlist + , QuickCheck, quickcheck-simple, scientific, text, transformers + , unordered-containers, vector }: mkDerivation { pname = "json-rpc-generic"; - version = "0.0.1.0"; - sha256 = "248c91a30ec210afd5f96e0fd69a05188a1b015085313cebf6cad82ba57d2962"; + version = "0.1.0.0"; + sha256 = "20aee2bf91cd7e9b630282e34adb0b5ba6ae2f881aa5d3f4bd1b41536c49faa1"; libraryHaskellDepends = [ - aeson base bytestring scientific text transformers vector + aeson base bytestring containers dlist scientific text transformers + unordered-containers vector ]; testHaskellDepends = [ aeson base QuickCheck quickcheck-simple text @@ -146255,6 +146969,31 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "kawhi" = callPackage + ({ mkDerivation, aeson, base, bytestring, exceptions, http-client + , http-conduit, http-types, mtl, safe, scientific, smallcheck + , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, text + }: + mkDerivation { + pname = "kawhi"; + version = "0.0.1"; + sha256 = "bb7bb30129c065032d217834d9f991df63ddfa55ee14e4c45ef5ddf141839d6f"; + revision = "1"; + editedCabalFile = "624bf276517215fb85d51f9252dce93acfde800feaa6439d054f6037bc2f3cb3"; + libraryHaskellDepends = [ + aeson base bytestring exceptions http-client http-conduit + http-types mtl safe scientific text + ]; + testHaskellDepends = [ + aeson base bytestring exceptions http-client http-types mtl + scientific smallcheck tasty tasty-hunit tasty-quickcheck + tasty-smallcheck text + ]; + homepage = "https://github.com/hamsterdam/kawhi"; + description = "stats.NBA.com library"; + license = stdenv.lib.licenses.mit; + }) {}; + "kazura-queue" = callPackage ({ mkDerivation, async, atomic-primops, base, containers, deepseq , doctest, exceptions, free, hspec, hspec-expectations, HUnit, mtl @@ -150522,8 +151261,8 @@ self: { ({ mkDerivation, base, parsec, wl-pprint }: mkDerivation { pname = "language-webidl"; - version = "0.1.1.1"; - sha256 = "b2d096f8f44ee131e7bb06df246fa163b5da6a6eac0a3e385642fb14d5c19d18"; + version = "0.1.2.0"; + sha256 = "50be4849f64d6bfa799fafd77b89480e7342d4daf30684179dc88b8891cdce4c"; libraryHaskellDepends = [ base parsec wl-pprint ]; description = "Parser and Pretty Printer for WebIDL"; license = stdenv.lib.licenses.mit; @@ -151191,8 +151930,8 @@ self: { ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "leancheck"; - version = "0.4.1"; - sha256 = "7fb4316f341ade6abb56afe9f4978be204f0f7da42c324e474953b7ac0380793"; + version = "0.5.0"; + sha256 = "191b704dd7bb74e6ee23aecad3a9f267867908f5594b809755273950d6d516b8"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base template-haskell ]; homepage = "https://github.com/rudymatela/leancheck#readme"; @@ -152291,10 +153030,9 @@ self: { ({ mkDerivation, base, bindings-levmar, hmatrix, vector }: mkDerivation { pname = "levmar"; - version = "1.2.1.5"; - sha256 = "727ec5ebd523997b471685c7aed6f1a91120707e3b273734d23a6fc6a35d5525"; + version = "1.2.1.6"; + sha256 = "90e6560a6d3e94ea6e0517079b4f00559725c120047ea98bb7500624e6a2747e"; libraryHaskellDepends = [ base bindings-levmar hmatrix vector ]; - jailbreak = true; homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; @@ -153437,6 +154175,8 @@ self: { pname = "lifted-threads"; version = "1.0"; sha256 = "7f7dd54c54b252f3f3884a18282364a2b785ace96e8922b1d013fd62573800eb"; + revision = "1"; + editedCabalFile = "9ca26a82d283f9c00a7de537198cd0ce1a05e6e802e0e7f82663c45242a9e973"; libraryHaskellDepends = [ base monad-control threads transformers-base ]; @@ -155069,8 +155809,8 @@ self: { }: mkDerivation { pname = "list-tries"; - version = "0.6.2"; - sha256 = "604e0c634672d91688f859da9345a2f60a680f77471df4528cb6931ca3b8ea9e"; + version = "0.6.3"; + sha256 = "f5462fb3989c2687b4678aa427d61b0c2aa1793307a9f6e61c19aaecb2e19c35"; libraryHaskellDepends = [ base binary containers dlist ]; testHaskellDepends = [ base binary ChasingBottoms HUnit QuickCheck template-haskell @@ -155783,8 +156523,8 @@ self: { pname = "lock-file"; version = "0.5.0.2"; sha256 = "274ecb94d0af66fed7b624fca402381d7f262f510ac7c4271037153efda49ad0"; - revision = "1"; - editedCabalFile = "ef22bf7dfd46708eebcc8a895a0a265e6bbf1d05a7ebfdf0f9ee6513d838df8e"; + revision = "3"; + editedCabalFile = "565e73c14184f1760473a10e35d2a04f354dbec33abcf185d217754ad63709b6"; libraryHaskellDepends = [ base data-default-class directory exceptions tagged-exception-core transformers @@ -155794,7 +156534,6 @@ self: { tagged-exception-core test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - jailbreak = true; homepage = "https://github.com/trskop/lock-file"; description = "Provide exclusive access to a resource using lock file"; license = stdenv.lib.licenses.bsd3; @@ -155852,8 +156591,8 @@ self: { }: mkDerivation { pname = "log"; - version = "0.5.0"; - sha256 = "d73310d807d3caecec03911c06d0e7a374956ed1030910c6c477bac6af3ccdf5"; + version = "0.5.2"; + sha256 = "a105254ee5121e87cea0fb168909a14edbc1506bc62fef51e3bbba2e7d60c2b3"; libraryHaskellDepends = [ aeson aeson-pretty base base64-bytestring bloodhound bytestring cond deepseq exceptions hpqtypes http-client lifted-base @@ -156914,8 +157653,8 @@ self: { }: mkDerivation { pname = "ltext"; - version = "0.1.0"; - sha256 = "a9a9d43833a12c8ec19e4fdb3b1c94002fb3b91d2ee8bc6557abd4e6ea709fad"; + version = "0.1.2"; + sha256 = "24722147121bfe34e42e92badcf4b30a2f176608e7b72cf7c0a49d1e49498ebd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -158579,8 +159318,8 @@ self: { ({ mkDerivation, attoparsec, base, bytestring, doctest, Glob }: mkDerivation { pname = "makefile"; - version = "0.1.0.1"; - sha256 = "d78c1bf4e9ddd60f61a575887a742f20cdd9f1193a920b46ac9e5ad73d1089b5"; + version = "0.1.0.3"; + sha256 = "2ad77fc1cc390225ecb7155f6df87b3be5bdba5803629ba687f98711a8114e4a"; libraryHaskellDepends = [ attoparsec base bytestring ]; testHaskellDepends = [ attoparsec base bytestring doctest Glob ]; doCheck = false; @@ -158589,20 +159328,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "makefile_0_1_0_3" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, doctest, Glob }: - mkDerivation { - pname = "makefile"; - version = "0.1.0.3"; - sha256 = "2ad77fc1cc390225ecb7155f6df87b3be5bdba5803629ba687f98711a8114e4a"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - testHaskellDepends = [ attoparsec base bytestring doctest Glob ]; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "managed_1_0_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -162292,7 +163017,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-mtl" = callPackage + "microlens-mtl_0_1_8_0" = callPackage ({ mkDerivation, base, microlens, mtl, transformers , transformers-compat }: @@ -162306,9 +163031,10 @@ self: { homepage = "http://github.com/aelve/microlens"; description = "microlens support for Reader/Writer/State from mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-mtl_0_1_9_0" = callPackage + "microlens-mtl" = callPackage ({ mkDerivation, base, microlens, mtl, transformers , transformers-compat }: @@ -162322,7 +163048,6 @@ self: { homepage = "http://github.com/aelve/microlens"; description = "microlens support for Reader/Writer/State from mtl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens-platform_0_1_7_0" = callPackage @@ -162439,7 +163164,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-platform" = callPackage + "microlens-platform_0_3_2_0" = callPackage ({ mkDerivation, base, hashable, microlens, microlens-ghc , microlens-mtl, microlens-th, text, unordered-containers, vector }: @@ -162451,12 +163176,14 @@ self: { base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/aelve/microlens"; description = "Feature-complete microlens"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-platform_0_3_3_0" = callPackage + "microlens-platform" = callPackage ({ mkDerivation, base, hashable, microlens, microlens-ghc , microlens-mtl, microlens-th, text, unordered-containers, vector }: @@ -162468,11 +163195,9 @@ self: { base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector ]; - jailbreak = true; homepage = "http://github.com/aelve/microlens"; description = "Feature-complete microlens"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens-th_0_2_1_0" = callPackage @@ -163495,6 +164220,27 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "mios" = callPackage + ({ mkDerivation, base, bytestring, containers, ghc-prim, primitive + , vector + }: + mkDerivation { + pname = "mios"; + version = "1.2.1"; + sha256 = "a64ee6a6ccaa12204eec897cc2bef9122ffe92ec924920d6814f95f5a31e6280"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers ghc-prim primitive vector + ]; + executableHaskellDepends = [ + base bytestring containers ghc-prim primitive vector + ]; + homepage = "https://github.com/shnarazk/mios"; + description = "A Minisat-based SAT solver in Haskell"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "mirror-tweet" = callPackage ({ mkDerivation, authenticate-oauth, base, bytestring, conduit , lens, monad-logger, text, transformers, twitter-conduit @@ -165022,27 +165768,43 @@ self: { }: mkDerivation { pname = "monad-logger-prefix"; - version = "0.1.2"; - sha256 = "e9fdf038d50ddf6ae448591f758447359ea3f4f35f5f7e3d092c3f87ed686166"; + version = "0.1.4"; + sha256 = "3723db1545702f800a3fa5663f4120b9778ce089c50bddf4c0263ff8ca46d39a"; libraryHaskellDepends = [ base exceptions monad-control monad-logger mtl resourcet text transformers transformers-base ]; testHaskellDepends = [ base doctest Glob hspec QuickCheck ]; - jailbreak = true; homepage = "https://github.com/sellerlabs/monad-logger-prefix#readme"; description = "Add prefixes to your monad-logger output"; license = stdenv.lib.licenses.asl20; }) {}; + "monad-logger-syslog_0_1_1_1" = callPackage + ({ mkDerivation, base, bytestring, fast-logger, hsyslog + , monad-logger, text, transformers + }: + mkDerivation { + pname = "monad-logger-syslog"; + version = "0.1.1.1"; + sha256 = "6e1bc3833c3768c354ea269b95a8c566036ba606b769dacda1b9653b4b22b541"; + libraryHaskellDepends = [ + base bytestring fast-logger hsyslog monad-logger text transformers + ]; + homepage = "https://github.com/fpco/monad-logger-syslog"; + description = "syslog output for monad-logger"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "monad-logger-syslog" = callPackage ({ mkDerivation, base, bytestring, fast-logger, hsyslog , monad-logger, text, transformers }: mkDerivation { pname = "monad-logger-syslog"; - version = "0.1.1.1"; - sha256 = "6e1bc3833c3768c354ea269b95a8c566036ba606b769dacda1b9653b4b22b541"; + version = "0.1.2.0"; + sha256 = "8b7d6598cbe4046aaeb7f86e526f259be4dde43967bf8a15f8ce3ea9f33221c2"; libraryHaskellDepends = [ base bytestring fast-logger hsyslog monad-logger text transformers ]; @@ -165617,6 +166379,8 @@ self: { pname = "monad-time"; version = "0.2"; sha256 = "a9b901ca94b4c71d5f374a472506db92d26b13af523ceafe1e3302e8bae8b05d"; + revision = "1"; + editedCabalFile = "a3a67f4b7fd08b82054dcf1d0cda06afcafa60644ea837ac8135a1c2cbe1a9ec"; libraryHaskellDepends = [ base mtl time ]; testHaskellDepends = [ base mtl time ]; homepage = "https://github.com/scrive/monad-time"; @@ -166282,8 +167046,8 @@ self: { }: mkDerivation { pname = "mongoDB"; - version = "2.1.0.1"; - sha256 = "db9909feb0ba4fc2c6a554b1f97f546dc27acc57dcfc6a46854a17cace08686f"; + version = "2.1.0.2"; + sha256 = "476489da2b14e55c7c3a17bce0e3eb6283eb72a0f4dfa823ba7708a13924ce2c"; libraryHaskellDepends = [ array base base16-bytestring base64-bytestring binary bson bytestring containers cryptohash data-default-class hashtables @@ -166742,7 +167506,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monoid-extras" = callPackage + "monoid-extras_0_4_1_2" = callPackage ({ mkDerivation, base, groups, semigroupoids, semigroups }: mkDerivation { pname = "monoid-extras"; @@ -166751,6 +167515,18 @@ self: { libraryHaskellDepends = [ base groups semigroupoids semigroups ]; description = "Various extra monoid-related definitions and utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monoid-extras" = callPackage + ({ mkDerivation, base, groups, semigroupoids, semigroups }: + mkDerivation { + pname = "monoid-extras"; + version = "0.4.2"; + sha256 = "13ff4e055c9656a3e599567cbc4a46ef8617c05534de46909a4239696e34281f"; + libraryHaskellDepends = [ base groups semigroupoids semigroups ]; + description = "Various extra monoid-related definitions and utilities"; + license = stdenv.lib.licenses.bsd3; }) {}; "monoid-owns" = callPackage @@ -169774,6 +170550,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "namespace" = callPackage + ({ mkDerivation, base, containers }: + mkDerivation { + pname = "namespace"; + version = "0.1.0.0"; + sha256 = "5bb87af21ac3ac6fe6fee9ecf657b7c10a60b3b308e7ab7a933e80a52a743213"; + libraryHaskellDepends = [ base containers ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/xu-hao/namespace"; + description = "A Generic Haskell library for managing namespaces"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "nano-cryptr" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { @@ -169934,19 +170723,15 @@ self: { "nanovg" = callPackage ({ mkDerivation, base, bytestring, containers, freeglut, GLEW - , hspec, inline-c, linear, mesa, QuickCheck, text, vector + , hspec, inline-c, mesa, QuickCheck, text, vector }: mkDerivation { pname = "nanovg"; - version = "0.3.0.0"; - sha256 = "66225623b3841f35f68c177ab01c81c2ba47b1713b384df7c6f04124dca018b3"; - libraryHaskellDepends = [ - base bytestring containers linear text vector - ]; + version = "0.4.0.0"; + sha256 = "910addcdcf0691facf8a599fb800f0bdaf93cd06ba3bf76bdf3e6d0080833e91"; + libraryHaskellDepends = [ base bytestring containers text vector ]; librarySystemDepends = [ freeglut GLEW mesa ]; - testHaskellDepends = [ - base containers hspec inline-c linear QuickCheck - ]; + testHaskellDepends = [ base containers hspec inline-c QuickCheck ]; homepage = "https://github.com/cocreature/nanovg-hs"; description = "Haskell bindings for nanovg"; license = stdenv.lib.licenses.isc; @@ -170481,7 +171266,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation" = callPackage + "neat-interpolation_0_3_2" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell , text }: @@ -170496,6 +171281,24 @@ self: { homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "neat-interpolation" = callPackage + ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell + , text + }: + mkDerivation { + pname = "neat-interpolation"; + version = "0.3.2.1"; + sha256 = "5530e43ca4de09b972d173e522f9dc96265f3afe0df695a25f0141be816fa014"; + libraryHaskellDepends = [ + base base-prelude parsec template-haskell text + ]; + testHaskellDepends = [ base-prelude HTF ]; + homepage = "https://github.com/nikita-volkov/neat-interpolation"; + description = "A quasiquoter for neat and simple multiline text interpolation"; + license = stdenv.lib.licenses.mit; }) {}; "needle" = callPackage @@ -174409,8 +175212,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.13.2"; - sha256 = "661df67cee1c5719207e2c92aebde1d7da52333dd5b0227f87e2619a234d5729"; + version = "0.13.3"; + sha256 = "c3755604afc8b1757bdc94383d04d757ae6cd525f41b55ba9a210e1d74f6a9fb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -177006,6 +177809,8 @@ self: { pname = "overloaded-records"; version = "0.4.1.0"; sha256 = "f97b08e420bfc9d435a77ec391fec1da305000faaaf0c01ad84217de003b5a76"; + revision = "1"; + editedCabalFile = "0aa55c702c1bbd15c4ddeb7efd21c2024e628ea266ae601673c2cf9bb5e25f24"; libraryHaskellDepends = [ base data-default-class template-haskell ]; @@ -178131,6 +178936,54 @@ self: { maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; + "pandoc_1_17_2" = callPackage + ({ mkDerivation, aeson, ansi-terminal, array, base + , base64-bytestring, binary, blaze-html, blaze-markup, bytestring + , cmark, containers, data-default, deepseq, Diff, directory + , executable-path, extensible-exceptions, filemanip, filepath + , ghc-prim, haddock-library, highlighting-kate, hslua, HTTP + , http-client, http-client-tls, http-types, HUnit, JuicyPixels, mtl + , network, network-uri, old-time, pandoc-types, parsec, process + , QuickCheck, random, scientific, SHA, syb, tagsoup, temporary + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , texmath, text, time, unordered-containers, vector, xml, yaml + , zip-archive, zlib + }: + mkDerivation { + pname = "pandoc"; + version = "1.17.2"; + sha256 = "81727d054dfb26de816ea59ed541ebaf60d66d440012c12ec02f9c2b02fee8ec"; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson array base base64-bytestring binary blaze-html blaze-markup + bytestring cmark containers data-default deepseq directory + extensible-exceptions filemanip filepath ghc-prim haddock-library + highlighting-kate hslua HTTP http-client http-client-tls http-types + JuicyPixels mtl network network-uri old-time pandoc-types parsec + process random scientific SHA syb tagsoup temporary texmath text + time unordered-containers vector xml yaml zip-archive zlib + ]; + executableHaskellDepends = [ + aeson base bytestring containers directory extensible-exceptions + filepath highlighting-kate HTTP network network-uri pandoc-types + text yaml + ]; + testHaskellDepends = [ + ansi-terminal base bytestring containers Diff directory + executable-path filepath highlighting-kate HUnit pandoc-types + process QuickCheck syb test-framework test-framework-hunit + test-framework-quickcheck2 text zip-archive + ]; + doCheck = false; + homepage = "http://pandoc.org"; + description = "Conversion between markup formats"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; + }) {}; + "pandoc-citeproc_0_6" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl @@ -178432,6 +179285,41 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pandoc-citeproc_0_10_1" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , containers, data-default, directory, filepath, hs-bibutils, mtl + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 + , setenv, split, syb, tagsoup, temporary, text, time + , unordered-containers, vector, xml-conduit, yaml + }: + mkDerivation { + pname = "pandoc-citeproc"; + version = "0.10.1"; + sha256 = "ebc3eb3ff95e97ebd46c0918a65db2da021de2a70d02dc85ca5b344ea5c21205"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers data-default directory filepath + hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 + setenv split syb tagsoup text time unordered-containers vector + xml-conduit yaml + ]; + executableHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring filepath pandoc + pandoc-types syb text yaml + ]; + testHaskellDepends = [ + aeson base bytestring directory filepath pandoc pandoc-types + process temporary text yaml + ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/jgm/pandoc-citeproc"; + description = "Supports using pandoc with citeproc"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pandoc-citeproc-preamble" = callPackage ({ mkDerivation, base, directory, filepath, pandoc-types, process }: @@ -178457,8 +179345,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.2.1.3"; - sha256 = "d14b78972c48a722b7e53d12fb601e4379d5384f9a58c8ce46ab42b058125471"; + version = "0.2.2.1"; + sha256 = "85da5dff663b578367ed75dcd71d8273a9cd92e8ae4a907ff0b83694d8417abd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -178475,7 +179363,6 @@ self: { data-accessor-transformers data-default hspec mtl pandoc pandoc-types process roman-numerals syb template-haskell yaml ]; - jailbreak = true; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -180095,7 +180982,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "path-io" = callPackage + "path-io_1_1_0" = callPackage ({ mkDerivation, base, directory, exceptions, filepath, hspec, path , temporary, time, transformers }: @@ -180110,6 +180997,25 @@ self: { homepage = "https://github.com/mrkkrp/path-io"; description = "Interface to ‘directory’ package for users of ‘path’"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "path-io" = callPackage + ({ mkDerivation, base, containers, directory, exceptions, filepath + , hspec, path, temporary, time, transformers, unix-compat + }: + mkDerivation { + pname = "path-io"; + version = "1.2.0"; + sha256 = "cb8bfb9fca81eb0f0f9b81761cc5a6edc61204e2c630f7277173147cf149336f"; + libraryHaskellDepends = [ + base containers directory exceptions filepath path temporary time + transformers unix-compat + ]; + testHaskellDepends = [ base exceptions hspec path unix-compat ]; + homepage = "https://github.com/mrkkrp/path-io"; + description = "Interface to ‘directory’ package for users of ‘path’"; + license = stdenv.lib.licenses.bsd3; }) {}; "path-pieces_0_1_4" = callPackage @@ -181250,6 +182156,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "periodic" = callPackage + ({ mkDerivation, base, cereal, hedis, hspec, text, time }: + mkDerivation { + pname = "periodic"; + version = "0.1.0.0"; + sha256 = "1973c062977b6babdfca47f172356657296142c711a834d1123c9414df1bab84"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base cereal hedis text time ]; + executableHaskellDepends = [ base cereal hedis text time ]; + testHaskellDepends = [ base cereal hedis hspec text time ]; + homepage = "https://github.com/positiondev/periodic"; + description = "A reliable at-least-once periodic job scheduler backed by redis"; + license = stdenv.lib.licenses.isc; + }) {}; + "perm" = callPackage ({ mkDerivation, base, catch-fd, HUnit, mtl, test-framework , test-framework-hunit, transformers @@ -183407,8 +184329,8 @@ self: { }: mkDerivation { pname = "persistent-template"; - version = "2.5.1.3"; - sha256 = "c0070245e0b569ceef15e55be816a069cf2d26774c9613368d915e6ecb396f2a"; + version = "2.5.1.4"; + sha256 = "bd2fb5aadbee3770c562a472e87dd812f30fea05334e6e19b223f322ebced072"; libraryHaskellDepends = [ aeson aeson-compat base bytestring containers ghc-prim http-api-data monad-control monad-logger path-pieces persistent @@ -185104,7 +186026,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "pipes-cliff" = callPackage + "pipes-cliff_0_10_0_4" = callPackage ({ mkDerivation, async, base, bytestring, pipes, pipes-safe , process, stm }: @@ -185118,6 +186040,23 @@ self: { homepage = "http://www.github.com/massysett/pipes-cliff"; description = "Streaming to and from subprocesses using Pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-cliff" = callPackage + ({ mkDerivation, async, base, bytestring, pipes, pipes-safe + , process, stm, unix + }: + mkDerivation { + pname = "pipes-cliff"; + version = "0.12.0.0"; + sha256 = "4fc4ce908899d20ed1ea8964cfe38bc547476d6901934cbb82e35e4ada5417c5"; + libraryHaskellDepends = [ + async base bytestring pipes pipes-safe process stm unix + ]; + homepage = "http://www.github.com/massysett/pipes-cliff"; + description = "Streaming to and from subprocesses using Pipes"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-concurrency_2_0_2" = callPackage @@ -186216,8 +187155,8 @@ self: { }: mkDerivation { pname = "pixelated-avatar-generator"; - version = "0.1.0"; - sha256 = "f4fe2536605c0f1df69fd15da6007c95a28fff1b8c40d2368a120d906f85e2ef"; + version = "0.1.1"; + sha256 = "0900c62aa1ffc80ef2293f52fd20d25da75cb801e059c5afff6e8b60d2ae841f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -192227,8 +193166,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160708"; - sha256 = "6a2a246694723c81312a3963c5750b0ddd60b863b200849a9d2f9d2fe1e85a5f"; + version = "0.20160716"; + sha256 = "19d7fd9990954284073323d9d22a892f1b600761e5353e9a0473d46591956956"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -193639,6 +194578,7 @@ self: { homepage = "http://khumba.net/projects/qtah"; description = "Qt bindings for Haskell - C++ library"; license = stdenv.lib.licenses.lgpl3; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; "qtah-examples" = callPackage @@ -193657,6 +194597,7 @@ self: { homepage = "http://khumba.net/projects/qtah"; description = "Example programs for Qtah Qt bindings"; license = stdenv.lib.licenses.lgpl3; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; "qtah-generator" = callPackage @@ -193665,8 +194606,8 @@ self: { }: mkDerivation { pname = "qtah-generator"; - version = "0.1.0"; - sha256 = "446d1d14e629f5b18bd4d28d3e6d1866d73147ce499a47d84f1bf91f4490126a"; + version = "0.1.1"; + sha256 = "10cf7128d9cd923fa677433222720770762b1c72fcd74b26d3174e9d7a7c028f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -193678,6 +194619,7 @@ self: { homepage = "http://khumba.net/projects/qtah"; description = "Generator for Qtah Qt bindings"; license = stdenv.lib.licenses.lgpl3; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; "qtah-qt5" = callPackage @@ -193698,6 +194640,7 @@ self: { homepage = "http://khumba.net/projects/qtah"; description = "Qt bindings for Haskell"; license = stdenv.lib.licenses.lgpl3; + maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {qtah = null;}; "quadratic-irrational" = callPackage @@ -194021,8 +194964,8 @@ self: { ({ mkDerivation, base, QuickCheck, unfoldable-restricted }: mkDerivation { pname = "quickcheck-combinators"; - version = "0.0.0"; - sha256 = "42fe67cfbab7c215b00e843b773fcee84e28f4ffdae5f43affa21331dcdcb2b5"; + version = "0.0.1"; + sha256 = "bc334ff44f93e580e13cbe07c4ccf5924bf22df943934987f769ebec6800ec8d"; libraryHaskellDepends = [ base QuickCheck unfoldable-restricted ]; description = "Simple type-level combinators for augmenting QuickCheck instances"; license = stdenv.lib.licenses.bsd3; @@ -194120,7 +195063,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "quickcheck-io" = callPackage + "quickcheck-io_0_1_2" = callPackage ({ mkDerivation, base, HUnit, QuickCheck }: mkDerivation { pname = "quickcheck-io"; @@ -194132,9 +195075,10 @@ self: { homepage = "https://github.com/hspec/quickcheck-io#readme"; description = "Use HUnit assertions as QuickCheck properties"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "quickcheck-io_0_1_3" = callPackage + "quickcheck-io" = callPackage ({ mkDerivation, base, HUnit, QuickCheck }: mkDerivation { pname = "quickcheck-io"; @@ -194144,7 +195088,6 @@ self: { homepage = "https://github.com/hspec/quickcheck-io#readme"; description = "Use HUnit assertions as QuickCheck properties"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-poly" = callPackage @@ -194484,6 +195427,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "quipper" = callPackage + ({ mkDerivation, base, containers, directory, easyrender, mtl + , process, random, template-haskell, unix + }: + mkDerivation { + pname = "quipper"; + version = "0.7"; + sha256 = "38d86bce23509ff81a0e2964d9c04107c4cbb8ecf799abfed216cc2192dcc47c"; + revision = "1"; + editedCabalFile = "ed852a0a36ec59cf0c95e5cec2d0bc82e19a0576f75236ee986f7a221a721c7b"; + libraryHaskellDepends = [ + base containers directory easyrender mtl process random + template-haskell unix + ]; + jailbreak = true; + homepage = "http://www.mathstat.dal.ca/~selinger/quipper/"; + description = "An embedded, scalable functional programming language for quantum computing"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "quiver" = callPackage ({ mkDerivation, base, mmorph, transformers }: mkDerivation { @@ -194568,11 +195531,10 @@ self: { ({ mkDerivation, base, dlist, hspec, QuickCheck, quiver }: mkDerivation { pname = "quiver-groups"; - version = "0.1.0.0"; - sha256 = "a2edef17cf3e860afda832181de10055cbc953f3f3bfe3f30227341497fe9104"; + version = "0.1.0.1"; + sha256 = "19a29e6c2011a5fb996d831c594ec6d6d133c3fdb4ad74763e1251d7f1f39255"; libraryHaskellDepends = [ base dlist quiver ]; testHaskellDepends = [ base hspec QuickCheck quiver ]; - jailbreak = true; description = "Group and chunk values within a Quiver"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -195860,8 +196822,8 @@ self: { }: mkDerivation { pname = "ratel"; - version = "0.2.0"; - sha256 = "426ce15b19dc132b19cc511c74e0a18e0c6caa0b56aa6e1056bda09e1bd2fd96"; + version = "0.3.0"; + sha256 = "08e96d4ad35c562fd4bb651303ee527d0d2e83d45ea026060fec45e3aed6a3e7"; libraryHaskellDepends = [ aeson base bytestring case-insensitive containers http-client http-client-tls http-types text uuid @@ -195872,7 +196834,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "ratel-wai" = callPackage + "ratel-wai_0_1_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-client, ratel, wai }: @@ -195887,6 +196849,23 @@ 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; + }) {}; + + "ratel-wai" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , http-client, ratel, wai + }: + mkDerivation { + pname = "ratel-wai"; + version = "0.2.0"; + sha256 = "2714c211ee6252bad68a4f5828c5b196fe4e5fff9dfed778c9bf15918ac35911"; + 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; }) {}; "ratio-int" = callPackage @@ -196637,8 +197616,8 @@ self: { }: mkDerivation { pname = "rebase"; - version = "0.5.3"; - sha256 = "f5737cb4408b0bf1f19736fa8387d6e92f73d23c49f2455b530232f8f17b64fc"; + version = "0.5.4"; + sha256 = "86fda65310e4b7b83575ed8717780e6295116ff220621ee383b71fa98e09e2f2"; libraryHaskellDepends = [ base base-prelude bifunctors bytestring containers contravariant contravariant-extras deepseq dlist either fail hashable mtl @@ -197578,6 +198557,8 @@ self: { pname = "reflex-dom"; version = "0.3"; sha256 = "a52bacd0ebdbb559a64fc3c7abfb34d8264c3c84243b8bc126c256e505b58d3a"; + revision = "1"; + editedCabalFile = "908cf399bc1af34e18674cad421c0046b667ee8172254fce6e59dae83ce96a6a"; libraryHaskellDepends = [ aeson base bifunctors bytestring containers data-default dependent-map dependent-sum dependent-sum-template directory @@ -198778,7 +199759,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "relational-query" = callPackage + "relational-query_0_8_2_3" = callPackage ({ mkDerivation, array, base, bytestring, containers, dlist , names-th, persistable-record, quickcheck-simple, sql-words , template-haskell, text, th-reify-compat, time, time-locale-compat @@ -198799,6 +199780,30 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Typeful, Modular, Relational, algebraic query engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "relational-query" = callPackage + ({ mkDerivation, array, base, bytestring, containers, dlist + , names-th, persistable-record, quickcheck-simple, sql-words + , template-haskell, text, th-reify-compat, time, time-locale-compat + , transformers + }: + mkDerivation { + pname = "relational-query"; + version = "0.8.3.0"; + sha256 = "8935e9b1f9dfbc7f7c34737db669ebfcbe352beac00ddc45a8b67420f93001ee"; + libraryHaskellDepends = [ + array base bytestring containers dlist names-th persistable-record + sql-words template-haskell text th-reify-compat time + time-locale-compat transformers + ]; + testHaskellDepends = [ + base containers quickcheck-simple transformers + ]; + homepage = "http://khibino.github.io/haskell-relational-record/"; + description = "Typeful, Modular, Relational, algebraic query engine"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -201867,6 +202872,7 @@ self: { utf8-string vector ]; testHaskellDepends = [ base doctest ]; + doCheck = false; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.2"; license = stdenv.lib.licenses.asl20; @@ -202228,7 +203234,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "retry" = callPackage + "retry_0_7_4" = callPackage ({ mkDerivation, base, data-default-class, exceptions, ghc-prim , hspec, HUnit, mtl, QuickCheck, random, stm, time, transformers }: @@ -202247,6 +203253,27 @@ self: { homepage = "http://github.com/Soostone/retry"; description = "Retry combinators for monadic actions that may fail"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "retry" = callPackage + ({ mkDerivation, base, data-default-class, exceptions, ghc-prim + , hspec, HUnit, mtl, QuickCheck, random, stm, time, transformers + }: + mkDerivation { + pname = "retry"; + version = "0.7.4.1"; + sha256 = "d2791b0ea317655c3d5a5d9d1d443eeb66a31953e0a66ac7a510050c54d83fab"; + libraryHaskellDepends = [ + base data-default-class exceptions ghc-prim random transformers + ]; + testHaskellDepends = [ + base data-default-class exceptions ghc-prim hspec HUnit mtl + QuickCheck random stm time transformers + ]; + homepage = "http://github.com/Soostone/retry"; + description = "Retry combinators for monadic actions that may fail"; + license = stdenv.lib.licenses.bsd3; }) {}; "retryer" = callPackage @@ -204112,8 +205139,8 @@ self: { }: mkDerivation { pname = "safe-exceptions"; - version = "0.1.2.0"; - sha256 = "06dbc08b55de6bf54223724248bc5b8407f49cdbd9d03aefb8d682d5603a3721"; + version = "0.1.3.0"; + sha256 = "1acc605f83e2954f01a502095bec89f064a510cfc52a2a08369e4e60542c13e5"; libraryHaskellDepends = [ base deepseq exceptions transformers ]; testHaskellDepends = [ base hspec void ]; homepage = "https://github.com/fpco/safe-exceptions#readme"; @@ -207471,6 +208498,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "semibounded-lattices" = callPackage + ({ mkDerivation, base, containers, lattices, semibounded-lattice }: + mkDerivation { + pname = "semibounded-lattices"; + version = "0.1.0.0"; + sha256 = "433329bceb9eb326cc4f1fdb6a78970cbd278b72d051382baab1a043dddfbce4"; + libraryHaskellDepends = [ base containers lattices ]; + testHaskellDepends = [ base semibounded-lattice ]; + jailbreak = true; + homepage = "https://github.com/xu-hao/semibounded-lattices#readme"; + description = "A Haskell implementation of semibounded lattices"; + license = stdenv.lib.licenses.bsd3; + broken = true; + }) {semibounded-lattice = null;}; + "semigroupoid-extras_4_0" = callPackage ({ mkDerivation, base, semigroupoids }: mkDerivation { @@ -209913,8 +210955,8 @@ self: { }: mkDerivation { pname = "servant-router"; - version = "0.8.0"; - sha256 = "6d7362d8b7b8928b847ead37d081fc6d5dbfb6e3df1464e24c682b4e1cba2a93"; + version = "0.8.1"; + sha256 = "fe94b7f998f96f29ca148dd89c5367ddacf6c925692660162a0f2c5e9696cbec"; libraryHaskellDepends = [ base bytestring http-api-data http-types mtl network-uri servant text @@ -210328,8 +211370,8 @@ self: { pname = "servant-swagger"; version = "0.1.1"; sha256 = "d89df7e8ee82978f6db32c2f278591df26bcdd6ef4282dff53933d3417d53a6c"; - revision = "1"; - editedCabalFile = "4982e79b812758d953cf852474e97882f826f194b09ba66eed74ec52fceb6f8e"; + revision = "2"; + editedCabalFile = "a6657e0ef2ea025a6b82b19949765fe92301e1d90be3330153789bee8e7959fe"; libraryHaskellDepends = [ aeson base bytestring http-media lens servant swagger2 text unordered-containers @@ -210337,6 +211379,7 @@ self: { testHaskellDepends = [ aeson aeson-qq base hspec lens servant swagger2 text time ]; + jailbreak = true; homepage = "https://github.com/dmjio/servant-swagger"; description = "Generate Swagger specification for your servant API"; license = stdenv.lib.licenses.bsd3; @@ -212468,8 +213511,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "sharc-timbre"; - version = "0.1"; - sha256 = "cbdedf5c24664d362be1b4a285c4c0021c17126e9a9562c17f23eb174249184d"; + version = "0.2"; + sha256 = "4a5f16ee586d056ff9be7d148ec044f2c004ca67e5d7941a23ea5259929e9fb3"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/anton-k/sharc"; description = "Sandell Harmonic Archive. A collection of stable phases for all instruments in the orchestra."; @@ -214437,10 +215480,9 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "simtreelo"; - version = "0.1.1.0"; - sha256 = "820e7189bb824c3480bb5492ddaf04a3b8200fea747084ab35e15ad46815f8c8"; + version = "0.1.1.1"; + sha256 = "0c990c2e520069d07030f63fc861c1a8c2e287bf2fc2ae4ebf24504d89cd1b64"; libraryHaskellDepends = [ base containers ]; - jailbreak = true; description = "Loader for data organized in a tree"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -215692,6 +216734,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "smerdyakov" = callPackage + ({ mkDerivation, base, doctest, exceptions, free, Glob, hspec, mtl + , process, QuickCheck, text, transformers, yaml + }: + mkDerivation { + pname = "smerdyakov"; + version = "0.0.0.0"; + sha256 = "32b6b8bfeebc8915784f9ee0c3df3299fd1b09bf0c70985d0407740c28eea709"; + libraryHaskellDepends = [ + base exceptions free mtl process text transformers + ]; + testHaskellDepends = [ + base doctest exceptions free Glob hspec mtl process QuickCheck text + transformers yaml + ]; + jailbreak = true; + homepage = "http://github.com/jkarni/smerdyakov#README.md"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "smoothie_0_1_3" = callPackage ({ mkDerivation, base, linear, vector }: mkDerivation { @@ -219587,24 +220649,22 @@ self: { ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, containers, data-default, docopt, entropy , http-conduit, http-kit, http-types, interpolatedstring-perl6 - , network, postgresql-simple, raw-strings-qq, resource-pool, SHA - , split, string-conversions, text, time, tls, unix, utf8-string - , x509, yaml + , network, postgresql-simple, resource-pool, SHA, split, text, time + , tls, unix, utf8-string, x509, yaml }: mkDerivation { pname = "sproxy"; - version = "0.9.6"; - sha256 = "3c35dad6f3b838f51ebd7c70231421cbb34ef5c3a38f3560c926cf7de8a9a5aa"; + version = "0.9.8"; + sha256 = "255f78f65439ad2e8e0f05fe9df5d07b07863b433bda486b67c3a6c4e0a0311a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring containers data-default docopt entropy http-conduit http-kit http-types - interpolatedstring-perl6 network postgresql-simple raw-strings-qq - resource-pool SHA split string-conversions text time tls unix - utf8-string x509 yaml + interpolatedstring-perl6 network postgresql-simple resource-pool + SHA split text time tls unix utf8-string x509 yaml ]; - description = "HTTP proxy for authenticating users via Google OAuth2"; + description = "HTTP proxy for authenticating users via OAuth2"; license = stdenv.lib.licenses.mit; }) {}; @@ -221748,16 +222808,15 @@ self: { , http-client-tls, http-conduit, lucid, mime-types, monad-unlift , monad-unlift-ref, mono-traversable, mtl, old-locale , optparse-applicative, optparse-simple, process, QuickCheck - , resourcet, safe, semigroups, stackage-install, stm, store - , streaming-commons, syb, system-fileio, system-filepath, tar - , temporary, text, time, transformers, unix-compat - , unordered-containers, utf8-string, vector, xml-conduit, xml-types - , yaml, zlib + , resourcet, safe, semigroups, stm, store, streaming-commons, syb + , system-fileio, system-filepath, tar, temporary, text, time + , transformers, unix-compat, unordered-containers, utf8-string + , vector, xml-conduit, xml-types, yaml, zlib }: mkDerivation { pname = "stackage-curator"; - version = "0.14.1"; - sha256 = "245df3b4c16323c4896422be6eaeb5bc019c52f387399ea8ecfe52e7ad3b4ecb"; + version = "0.14.1.1"; + sha256 = "1db3dee8833fe6e42f1266c9b78a5cbee9b02d6a9c83f4cf7e2c607f4a6ad6d5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -221767,10 +222826,10 @@ self: { cryptohash-conduit data-default-class directory exceptions filepath hashable html-conduit http-client http-client-tls http-conduit lucid mime-types monad-unlift monad-unlift-ref mono-traversable mtl - old-locale process resourcet safe semigroups stackage-install stm - store streaming-commons syb system-fileio system-filepath tar - temporary text time transformers unix-compat unordered-containers - utf8-string vector xml-conduit xml-types yaml zlib + old-locale process resourcet safe semigroups stm store + streaming-commons syb system-fileio system-filepath tar temporary + text time transformers unix-compat unordered-containers utf8-string + vector xml-conduit xml-types yaml zlib ]; executableHaskellDepends = [ aeson base http-client http-client-tls optparse-applicative @@ -221795,6 +222854,33 @@ self: { pname = "stackage-install"; version = "0.1.0.3"; sha256 = "95bcae12cb795d5edae0edd45ec0827a55ae1a0e35199bfadef1bf0077373ed5"; + revision = "1"; + editedCabalFile = "c0365ebfce87f0fe849850eea8d8c77201879d7817a78e531e5c490363514165"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async base bytestring containers cryptohash directory + filepath http-client http-client-tls http-types process stm tar + text + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/fpco/stackage-install"; + description = "Secure download of packages for cabal-install"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stackage-install_0_1_1_1" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, containers + , cryptohash, directory, filepath, http-client, http-client-tls + , http-types, process, stm, tar, text + }: + mkDerivation { + pname = "stackage-install"; + version = "0.1.1.1"; + sha256 = "46af3ae310cd7691f3b9edf3e17b0078c38b81c2c136c1485718f81e7068b875"; + revision = "1"; + editedCabalFile = "4d211f81f164148b6fd1581e19446c1aeb0d5783d8f5b1d4ec7caca2b784edef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -221816,8 +222902,8 @@ self: { }: mkDerivation { pname = "stackage-install"; - version = "0.1.1.1"; - sha256 = "46af3ae310cd7691f3b9edf3e17b0078c38b81c2c136c1485718f81e7068b875"; + version = "0.1.2"; + sha256 = "d46a0dfb3b82a154509fc396d966df642302341bfd758204d72d23e590874843"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -223776,6 +224862,7 @@ self: { th-orphans th-reify-many th-utilities time transformers unordered-containers vector vector-binary-instances void weigh ]; + doCheck = false; homepage = "https://github.com/fpco/store#readme"; description = "Fast binary serialization"; license = stdenv.lib.licenses.mit; @@ -225346,7 +226433,7 @@ self: { license = stdenv.lib.licenses.mit; }) {stripe-tests = null;}; - "strive" = callPackage + "strive_2_2_2" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline , http-conduit, http-types, markdown-unlit, template-haskell, text , time, transformers @@ -225367,6 +226454,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "strive" = callPackage + ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline + , http-client, http-client-tls, http-types, markdown-unlit + , template-haskell, text, time, transformers + }: + mkDerivation { + pname = "strive"; + version = "3.0.0"; + sha256 = "9fa6409127c240846e11d1c7e8746dfa6f5713af90db46cc60f6ff05507556b0"; + libraryHaskellDepends = [ + aeson base bytestring data-default gpolyline http-client + http-client-tls http-types template-haskell text time transformers + ]; + testHaskellDepends = [ base bytestring markdown-unlit time ]; + homepage = "https://github.com/tfausak/strive#readme"; + description = "A client for the Strava V3 API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "strptime" = callPackage ({ mkDerivation, base, bytestring, text, time }: mkDerivation { @@ -227215,7 +228322,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "sync-mht" = callPackage + "sync-mht_0_3_8_4" = callPackage ({ mkDerivation, array, base, base16-bytestring, byteable, bytes , bytestring, cereal, containers, cryptohash, directory, exceptions , filepath, HUnit, io-streams, mtl, process, random, regex-compat @@ -227249,6 +228356,43 @@ self: { homepage = "https://github.com/ekarayel/sync-mht"; description = "Fast incremental file transfer using Merkle-Hash-Trees"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "sync-mht" = callPackage + ({ mkDerivation, array, base, base16-bytestring, byteable, bytes + , bytestring, cereal, containers, cryptohash, directory, exceptions + , filepath, HUnit, io-streams, mtl, process, random, regex-compat + , temporary, text, time, transformers, unix, zlib + }: + mkDerivation { + pname = "sync-mht"; + version = "0.3.8.5"; + sha256 = "146c2e789845bbc58c4baf9f4c6e4e9b0908b5518311b321543dd481f90efdaa"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base base16-bytestring byteable bytes bytestring cereal + containers cryptohash directory exceptions filepath HUnit + io-streams mtl process random regex-compat temporary text time + transformers unix zlib + ]; + executableHaskellDepends = [ + array base base16-bytestring byteable bytes bytestring cereal + containers cryptohash directory exceptions filepath HUnit + io-streams mtl process random regex-compat temporary text time + transformers unix zlib + ]; + testHaskellDepends = [ + array base base16-bytestring byteable bytes bytestring cereal + containers cryptohash directory exceptions filepath HUnit + io-streams mtl process random regex-compat temporary text time + transformers unix zlib + ]; + jailbreak = true; + homepage = "https://github.com/ekarayel/sync-mht"; + description = "Fast incremental file transfer using Merkle-Hash-Trees"; + license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; @@ -228087,6 +229231,19 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "system-locale" = callPackage + ({ mkDerivation, base, hspec, megaparsec, process, time }: + mkDerivation { + pname = "system-locale"; + version = "0.1.0.0"; + sha256 = "0df7815525b55d875e8c0393f22c3595655a90a0701b5208799f97e653686fab"; + libraryHaskellDepends = [ base megaparsec process time ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/cocreature/system-locale"; + description = "Get system locales"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "system-posix-redirect" = callPackage ({ mkDerivation, base, bytestring, unix }: mkDerivation { @@ -231280,14 +232437,16 @@ self: { "test-fixture" = callPackage ({ mkDerivation, base, data-default, hspec, hspec-discover, mtl - , template-haskell + , template-haskell, transformers }: mkDerivation { pname = "test-fixture"; - version = "0.3.1.0"; - sha256 = "2e706aca06eaa8fd3223be69c554c4334d54dcaac43a3bebaa5d7802d599d60b"; + version = "0.4.0.0"; + sha256 = "0601604365bec95ab5407051410f7a857ae19dc6c25fad8bc004756aca02dff0"; libraryHaskellDepends = [ base data-default mtl template-haskell ]; - testHaskellDepends = [ base hspec hspec-discover ]; + testHaskellDepends = [ + base hspec hspec-discover mtl transformers + ]; homepage = "http://github.com/cjdev/test-fixture#readme"; description = "Test monadic side-effects"; license = stdenv.lib.licenses.bsd3; @@ -232628,8 +233787,8 @@ self: { }: mkDerivation { pname = "text-icu-normalized"; - version = "0.1.4.1"; - sha256 = "3ffe3706e994327563568a84e0b41761b235f84ca3b3c307656de406d7b8e2e3"; + version = "0.1.5.1"; + sha256 = "a6b10fe10fbd83c23c6719879a19536ff0fdfb01b4ea42e25e014d59ed29f3a6"; libraryHaskellDepends = [ base base-unicode-symbols bytestring lens text text-icu ]; @@ -234244,6 +235403,7 @@ self: { base bytestring containers directory filepath hspec primitive syb template-haskell text th-orphans vector ]; + doCheck = false; homepage = "https://github.com/fpco/th-utilities#readme"; description = "Collection of useful functions for use with Template Haskell"; license = stdenv.lib.licenses.mit; @@ -234420,8 +235580,8 @@ self: { pname = "these"; version = "0.7"; sha256 = "21959dd626454a9b7f0ac7b57d923802b72d008ca77f752fa8f569698bf6ea10"; - revision = "1"; - editedCabalFile = "d9c6643b3d9565bb5931e24d5b18f5f60293c7644a3bb9298429db8b632b1279"; + revision = "2"; + editedCabalFile = "2b24a8c4430c41db5ee2e58f853f944e4500ce6c2ccd0899502e701312e452c4"; libraryHaskellDepends = [ base bifunctors containers data-default-class hashable mtl profunctors semigroupoids transformers transformers-compat @@ -242516,12 +243676,11 @@ self: { }: mkDerivation { pname = "unordered-graphs"; - version = "0.1.0"; - sha256 = "9c14ac49ccc570dc93aadd45f89c82c92f6872a3077effc16825be81a2e7a9c7"; + version = "0.1.0.1"; + sha256 = "0b4e1024bef803a8a853273175d1735ab8155cc5f4f954a7883701b85a3a7aff"; libraryHaskellDepends = [ base deepseq dlist hashable unordered-containers ]; - jailbreak = true; description = "Graph library using unordered-containers"; license = stdenv.lib.licenses.mit; }) {}; @@ -244752,8 +245911,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "validity"; - version = "0.1.0.0"; - sha256 = "f4ca276d10484547ce104a63d0bdb35df60d18a185c5a5db426f97c9e4f69aa2"; + version = "0.2.0.0"; + sha256 = "4e6fb906ca4b7f35995ca2a700f58cfae6bead91319f30c3a2a35ca0ede08d93"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/NorfairKing/validity#readme"; description = "Validity typeclass"; @@ -244868,8 +246027,8 @@ self: { ({ mkDerivation, base, hspec, QuickCheck, time, transformers }: mkDerivation { pname = "varying"; - version = "0.5.0.2"; - sha256 = "86b2972408ebb8e99ca1194c43ac68a6a51ce33b0e4ee627b42b1646bfd758fe"; + version = "0.5.0.3"; + sha256 = "a1eff74bb76c4a6b6af64f4490621f3c8a24deec7d44032dfb90e02fc2c73039"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base transformers ]; @@ -245960,8 +247119,8 @@ self: { ({ mkDerivation, base, binary, data-default-class, deepseq }: mkDerivation { pname = "verbosity"; - version = "0.2.1.0"; - sha256 = "faa4121629a8e397572bb61a37e0dd95e281f68c5f779eb7ee756517796f39d3"; + version = "0.2.2.0"; + sha256 = "5193bd13b2dfd39794248b2b5d79e8b4b2a9681f06a6c196c1dd649363bfa868"; libraryHaskellDepends = [ base binary data-default-class deepseq ]; homepage = "https://github.com/trskop/verbosity"; description = "Simple enum that encodes application verbosity"; @@ -246309,11 +247468,14 @@ self: { pname = "vinyl-plus"; version = "0.1.1"; sha256 = "f8a195c81456db7694f0e44966e2907d90a9417d231a3aece78e9e9a35905697"; + revision = "1"; + editedCabalFile = "008aeff291dd0e3ef96f715783d1d609590103068de788a927d53068353e6ef6"; libraryHaskellDepends = [ base contravariant ghc-prim profunctors transformers unordered-containers vinyl ]; testHaskellDepends = [ base doctest vinyl ]; + jailbreak = true; homepage = "http://github.com/andrew/vinyl-plus"; description = "Vinyl records utilities"; license = stdenv.lib.licenses.bsd3; @@ -249308,7 +250470,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-crowd" = callPackage + "wai-middleware-crowd_0_1_4" = callPackage ({ mkDerivation, authenticate, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, clientsession , containers, cookie, gitrev, http-client, http-client-tls @@ -249335,6 +250497,36 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-middleware-crowd" = callPackage + ({ mkDerivation, authenticate, base, base64-bytestring, binary + , blaze-builder, bytestring, case-insensitive, clientsession + , containers, cookie, gitrev, http-client, http-client-tls + , http-reverse-proxy, http-types, optparse-applicative, resourcet + , template-haskell, text, time, transformers, unix-compat, vault + , wai, wai-app-static, wai-extra, warp + }: + mkDerivation { + pname = "wai-middleware-crowd"; + version = "0.1.4.1"; + sha256 = "b9bf4c1fe892232a8f3adcaca9407f81cadd2a8926e763eb2ecb35b2e9674d2e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + authenticate base base64-bytestring binary blaze-builder bytestring + case-insensitive clientsession containers cookie http-client + http-client-tls http-types resourcet text time unix-compat vault + wai + ]; + executableHaskellDepends = [ + base bytestring clientsession gitrev http-client http-client-tls + http-reverse-proxy http-types optparse-applicative template-haskell + text transformers wai wai-app-static wai-extra warp + ]; + description = "Middleware and utilities for using Atlassian Crowd authentication"; + license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; @@ -266924,18 +268116,19 @@ self: { "zip-archive" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , digest, directory, filepath, HUnit, mtl, old-time, pretty - , process, text, time, unix, zip, zlib + , process, temporary, text, time, unix, zip, zlib }: mkDerivation { pname = "zip-archive"; - version = "0.3.0.2"; - sha256 = "c5367d9bc72d3ceace0508800bab08a120e308ea1f4f5c8d5843fcca36b15313"; + version = "0.3.0.4"; + sha256 = "67a463b23e1694ad7d4d1f6815b009288c9b585bc411eb1754396b830eba8f92"; libraryHaskellDepends = [ array base binary bytestring containers digest directory filepath mtl old-time pretty text time unix zlib ]; testHaskellDepends = [ - base bytestring directory HUnit old-time process time unix + base bytestring directory HUnit old-time process temporary time + unix ]; testToolDepends = [ zip ]; homepage = "http://github.com/jgm/zip-archive"; From c0b5213aad3b906b7403c439c91075bfcd42265d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 18 Jul 2016 19:25:56 +0200 Subject: [PATCH 456/508] haskell-hfsevents: remove obsolete override cabal2nix generates correct build instructions now. Fixes https://github.com/NixOS/nixpkgs/pull/17046. --- pkgs/development/haskell-modules/configuration-common.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index dad8a9f8f42..2b721b751e9 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -204,11 +204,6 @@ self: super: { # on darwin: https://github.com/NixOS/cabal2nix/issues/146. hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else super.hinotify; - # hfsevents needs CoreServices in scope - hfsevents = if pkgs.stdenv.isDarwin - then with pkgs.darwin.apple_sdk.frameworks; addBuildTool (addBuildDepends super.hfsevents [Cocoa]) CoreServices - else super.hfsevents; - # FSEvents API is very buggy and tests are unreliable. See # http://openradar.appspot.com/10207999 and similar issues. # https://github.com/haskell-fswatch/hfsnotify/issues/62 From f3dc4d9ec32dba8f9694305f00e2e706f66d8085 Mon Sep 17 00:00:00 2001 From: Josef Kemetmueller Date: Thu, 28 Apr 2016 20:43:21 +0200 Subject: [PATCH 457/508] superlu: init at 5.2.1 --- ...lib-as-dependency-for-the-unit-tests.patch | 7 ++++ .../science/math/superlu/default.nix | 36 +++++++++++++++++++ .../math/superlu/find-openblas-library.patch | 11 ++++++ pkgs/top-level/all-packages.nix | 2 ++ 4 files changed, 56 insertions(+) create mode 100644 pkgs/development/libraries/science/math/superlu/add-superlu-lib-as-dependency-for-the-unit-tests.patch create mode 100644 pkgs/development/libraries/science/math/superlu/default.nix create mode 100644 pkgs/development/libraries/science/math/superlu/find-openblas-library.patch diff --git a/pkgs/development/libraries/science/math/superlu/add-superlu-lib-as-dependency-for-the-unit-tests.patch b/pkgs/development/libraries/science/math/superlu/add-superlu-lib-as-dependency-for-the-unit-tests.patch new file mode 100644 index 00000000000..29d86238af0 --- /dev/null +++ b/pkgs/development/libraries/science/math/superlu/add-superlu-lib-as-dependency-for-the-unit-tests.patch @@ -0,0 +1,7 @@ +--- a/TESTING/MATGEN/CMakeLists.txt ++++ b/TESTING/MATGEN/CMakeLists.txt +@@ -97,3 +97,4 @@ if(enable_complex16) + endif() + + add_library(matgen ${sources}) ++target_link_libraries(matgen superlu) diff --git a/pkgs/development/libraries/science/math/superlu/default.nix b/pkgs/development/libraries/science/math/superlu/default.nix new file mode 100644 index 00000000000..9938a3096a0 --- /dev/null +++ b/pkgs/development/libraries/science/math/superlu/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, cmake, + gfortran, openblasCompat}: + +stdenv.mkDerivation rec { + version = "5.2.1"; + name = "superlu-${version}"; + + src = fetchurl { + url = "http://crd-legacy.lbl.gov/~xiaoye/SuperLU/superlu_${version}.tar.gz"; + sha256 = "0qzlb7cd608q62kyppd0a8c65l03vrwqql6gsm465rky23b6dyr8"; + }; + + buildInputs = [ cmake gfortran ]; + + propagatedBuildInputs = [ openblasCompat ]; + + cmakeFlags = [ + "-DBUILD_SHARED_LIBS=true" + "-DUSE_XSDK_DEFAULTS=true" + ]; + + patches = [ + ./find-openblas-library.patch + ./add-superlu-lib-as-dependency-for-the-unit-tests.patch + ]; + + doCheck = true; + checkTarget = "test"; + + meta = { + homepage = http://crd-legacy.lbl.gov/~xiaoye/SuperLU/; + license = http://crd-legacy.lbl.gov/~xiaoye/SuperLU/License.txt; + description = "A library for the solution of large, sparse, nonsymmetric systems of linear equations"; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/libraries/science/math/superlu/find-openblas-library.patch b/pkgs/development/libraries/science/math/superlu/find-openblas-library.patch new file mode 100644 index 00000000000..ce7bc6974c9 --- /dev/null +++ b/pkgs/development/libraries/science/math/superlu/find-openblas-library.patch @@ -0,0 +1,11 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -75,6 +75,8 @@ set(CMAKE_C_FLAGS_RELEASE "-O3" CACHE STRING "") + ###################################################################### + # + #--------------------- BLAS --------------------- ++find_package(OpenBLAS) ++set(TPL_BLAS_LIBRARIES ${OpenBLAS_LIBRARIES}) + if(NOT enable_blaslib) + if (TPL_BLAS_LIBRARIES) + set(BLAS_FOUND TRUE) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c723433bf51..aa5988722e6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16382,6 +16382,8 @@ in suitesparse_4_4 = callPackage ../development/libraries/science/math/suitesparse {}; suitesparse = suitesparse_4_4; + superlu = callPackage ../development/libraries/science/math/superlu {}; + ipopt = callPackage ../development/libraries/science/math/ipopt { openblas = openblasCompat; }; gmsh = callPackage ../applications/science/math/gmsh { }; From 93dfdf0a0c5aea8ca7391941097566609060fa9a Mon Sep 17 00:00:00 2001 From: Josef Kemetmueller Date: Mon, 18 Jul 2016 21:55:26 +0200 Subject: [PATCH 458/508] armadillo: correct dependencies - Remove unused dependencies atlas/blas - Add hdf5/superlu dependency (As superlu needs openblasCompat, we also use it here.) - Add support for darwin - Make use of OpenBLAS-LAPACK in armadillo OpenBLAS (confusingly) contains LAPACK already by default, so we simply use OpenBLAS when searching for LAPACK. The better solution would be for armadillo to use cmake built in FindBLAS/FindLAPACK which both would find OpenBLAS. --- .../libraries/armadillo/default.nix | 25 +++++++++++-------- .../armadillo/use-OpenBLAS-as-LAPACK.patch | 14 +++++++++++ .../armadillo/use-unix-config-on-OS-X.patch | 11 ++++++++ 3 files changed, 39 insertions(+), 11 deletions(-) create mode 100644 pkgs/development/libraries/armadillo/use-OpenBLAS-as-LAPACK.patch create mode 100644 pkgs/development/libraries/armadillo/use-unix-config-on-OS-X.patch diff --git a/pkgs/development/libraries/armadillo/default.nix b/pkgs/development/libraries/armadillo/default.nix index 8d904efe0d6..937275b6528 100644 --- a/pkgs/development/libraries/armadillo/default.nix +++ b/pkgs/development/libraries/armadillo/default.nix @@ -1,23 +1,26 @@ -{stdenv, fetchurl, cmake, pkgconfig, atlas, blas, openblas}: +{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }: stdenv.mkDerivation rec { - version = "7.200.1b"; + version = "7.200.2"; name = "armadillo-${version}"; - + src = fetchurl { - url = "http://sourceforge.net/projects/arma/files/armadillo-${version}.tar.xz"; - sha256 = "00s8xrywc4aipipq1zpd6q9gzqmsiv8cwd25zvb1csrpninmidvc"; + url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; + sha256 = "1yvx75caks477jqwx5gspi6946jialddk00wdvg6dnh5wdi2xasm"; }; - unpackCmd = [ "tar -xf ${src}" ]; - - nativeBuildInputs = [ cmake atlas blas openblas ]; + buildInputs = [ cmake openblasCompat superlu hdf5 ]; + + cmakeFlags = [ "-DDETECT_HDF5=ON" ]; + + patches = [ ./use-unix-config-on-OS-X.patch + ./use-OpenBLAS-as-LAPACK.patch ]; meta = with stdenv.lib; { description = "C++ linear algebra library"; - homepage = "http://arma.sourceforge.net" ; + homepage = http://arma.sourceforge.net; license = licenses.mpl20; - platforms = stdenv.lib.platforms.linux ; - maintainers = [ stdenv.lib.maintainers.juliendehos ]; + platforms = platforms.unix; + maintainers = [ maintainers.juliendehos ]; }; } diff --git a/pkgs/development/libraries/armadillo/use-OpenBLAS-as-LAPACK.patch b/pkgs/development/libraries/armadillo/use-OpenBLAS-as-LAPACK.patch new file mode 100644 index 00000000000..e4c77d2cc2e --- /dev/null +++ b/pkgs/development/libraries/armadillo/use-OpenBLAS-as-LAPACK.patch @@ -0,0 +1,14 @@ +diff --git a/cmake_aux/Modules/ARMA_FindLAPACK.cmake b/cmake_aux/Modules/ARMA_FindLAPACK.cmake +index 5395afb..a203c93 100644 +--- a/cmake_aux/Modules/ARMA_FindLAPACK.cmake ++++ b/cmake_aux/Modules/ARMA_FindLAPACK.cmake +@@ -5,7 +5,7 @@ + # also defined, but not for general use are + # LAPACK_LIBRARY, where to find the LAPACK library. + +-SET(LAPACK_NAMES ${LAPACK_NAMES} lapack) ++SET(LAPACK_NAMES ${LAPACK_NAMES} openblas) + FIND_LIBRARY(LAPACK_LIBRARY + NAMES ${LAPACK_NAMES} + PATHS /usr/lib64/atlas /usr/lib/atlas /usr/lib64 /usr/lib /usr/local/lib64 /usr/local/lib + diff --git a/pkgs/development/libraries/armadillo/use-unix-config-on-OS-X.patch b/pkgs/development/libraries/armadillo/use-unix-config-on-OS-X.patch new file mode 100644 index 00000000000..b6fdddcaf2d --- /dev/null +++ b/pkgs/development/libraries/armadillo/use-unix-config-on-OS-X.patch @@ -0,0 +1,11 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -84,7 +84,7 @@ message(STATUS "DETECT_HDF5 = ${DETECT_HDF5}" ) + ## + ## Find LAPACK and BLAS libraries, or their optimised versions + ## +- ++set(APPLE false) + if(APPLE) + + set(ARMA_OS macos) From bae6ad8efa7aa085f39f6a024f3c06f546b75227 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 15:06:10 +0200 Subject: [PATCH 459/508] uzbl: fix build See also #16740. --- pkgs/applications/networking/browsers/uzbl/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/uzbl/default.nix b/pkgs/applications/networking/browsers/uzbl/default.nix index 0fb0db99891..4b768602c6e 100644 --- a/pkgs/applications/networking/browsers/uzbl/default.nix +++ b/pkgs/applications/networking/browsers/uzbl/default.nix @@ -1,6 +1,8 @@ { stdenv, fetchurl, pkgconfig, python3, makeWrapper, pygtk , webkit, glib_networking, gsettings_desktop_schemas, pythonPackages }: +# This package needs python3 during buildtime, +# but Python 2 + packages during runtime. stdenv.mkDerivation rec { name = "uzbl-v0.9.0"; @@ -22,8 +24,8 @@ stdenv.mkDerivation rec { preConfigure = '' makeFlags="$makeFlags PREFIX=$out" makeFlags="$makeFlags PYINSTALL_EXTRA=--prefix=$out" - mkdir -p $out/lib/python3.4/site-packages/ - export PYTHONPATH=$PYTHONPATH:$out/lib/python3.4/site-packages/ + mkdir -p $out/${python3.sitePackages}/ + export PYTHONPATH=$PYTHONPATH:$out/${python3.sitePackages} ''; preFixup = '' @@ -37,5 +39,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig python3 makeWrapper ]; - buildInputs = [ gsettings_desktop_schemas webkit pygtk pythonPackages.six ]; + buildInputs = [ gsettings_desktop_schemas webkit ]; + propagatedBuildInputs = [ pygtk pythonPackages.six ]; } From 848bf3099f969010b8daed1182e69ffbb5009e51 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 09:45:28 -0400 Subject: [PATCH 460/508] pythonPackages.moto: init at 0.4.25 --- pkgs/top-level/python-packages.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 783578b1f1a..83fb269fd4a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13019,6 +13019,23 @@ in modules // { }; }; + moto = buildPythonPackage rec { + version = "0.4.25"; + name = "moto-${version}"; + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/df/9e/0b22ac0abf61711c86ae75a0548825e19cc123b522ff3508cbc43924969d/moto-0.4.25.tar.gz"; + sha256 = "1gqm7h6bm5xkspd07bnjwdr2q6cvpxkayx0hkgk8fhkawbg0fqq7"; + }; + + propagatedBuildInputs = with self; [ + # Main dependencies + jinja2 werkzeug flask requests2 six boto httpretty xmltodict + # For tests + nose sure boto3 freezegun + ]; + }; + + mox = buildPythonPackage rec { name = "mox-0.5.3"; From 2173e6b49a16b721db7dd249d9de225278a90b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 19 Jul 2016 15:27:15 +0200 Subject: [PATCH 461/508] lighttpd: 1.4.39 -> 1.4.40 Major bug-fix release; hundreds of issues resolved in issue tracker. https://www.lighttpd.net/2016/7/16/1.4.40/ --- 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 af029cc4db2..8f75461070f 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.39"; + name = "lighttpd-1.4.40"; src = fetchurl { url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz"; - sha256 = "0nrnhxl1ypzgsms0ky6zdf6ib94vf8x77c422s2xav9x7j2s3fby"; + sha256 = "13agkmxii11kyary7pmv8kw4w1rp15swx800d98nqkb0yzy0sic0"; }; buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ] From 332a3e9073a5f2d62b5329e502b9d46d0a17529d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 15:44:09 +0200 Subject: [PATCH 462/508] pythonPackages.etcd: init at 2.0.8 --- pkgs/top-level/python-packages.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 83fb269fd4a..8ee30f590e8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5834,6 +5834,31 @@ in modules // { propagatedBuildInputs = with self; [ configparser ]; }; + etcd = buildPythonPackage rec { + name = "etcd-${version}"; + version = "2.0.8"; + + # PyPI package is incomplete + src = pkgs.fetchurl { + url = "https://github.com/dsoprea/PythonEtcdClient/archive/${version}.tar.gz"; + sha256 = "0fi6rxa1yxvz7nwrc7dw6fax3041d6bj3iyhywjgbkg7nadi9i8v"; + }; + + patchPhase = '' + sed -i -e '13,14d;37d' setup.py + ''; + + propagatedBuildInputs = with self; [ simplejson pytz requests2 ]; + + # No proper tests are available + doCheck = false; + + meta = { + description = "A Python etcd client that just works"; + homepage = https://github.com/dsoprea/PythonEtcdClient; + license = licenses.gpl2; + }; + }; evdev = buildPythonPackage rec { version = "0.4.7"; From 9dae8a7e458f9a9f1fa99d613b07b3ffa9cb5e15 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 16:00:46 +0200 Subject: [PATCH 463/508] pythonPackages.python-etcd: init at 0.4.3 --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8ee30f590e8..c46c5d3c8c6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19488,6 +19488,27 @@ in modules // { }; }; + python-etcd = buildPythonPackage rec { + name = "python-etcd-${version}"; + version = "0.4.3"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/python-etcd/${name}.tar.gz"; + sha256 = "cf53262b3890d185fe637eed15fe39c8d7a8261864ddcd7037b22c961456d7fc"; + }; + + buildInputs = with self; [ nose mock pyopenssl ]; + + propagatedBuildInputs = with self; [ urllib3 dns]; + + + meta = { + description = "A python client for Etcd"; + homepage = http://github.com/jplana/python-etcd; + license = licenses.mit; + }; + }; + pytz = buildPythonPackage rec { name = "pytz-${version}"; From e0476c2512b5b0a71d1c6b6ea53f81ed608c7019 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 10:12:30 -0400 Subject: [PATCH 464/508] pythonPackages.moto: add checkPhase, but leave it turned off Someday we'll turn it on, but the side-effecting tests aren't going to work on Hydra right now. --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c46c5d3c8c6..9b222cae354 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13058,6 +13058,11 @@ in modules // { # For tests nose sure boto3 freezegun ]; + + checkPhase = "nosetests"; + + # TODO: make this true; I think lots of the tests want network access but we can probably run the others + doCheck = false; }; From dd5cf8059096c32ab85392bb0c06d3865152e8cb Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 19 Jul 2016 16:22:17 +0200 Subject: [PATCH 465/508] pythonPackages.ghp-import: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b222cae354..c352a3b6bd9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -27126,6 +27126,9 @@ in modules // { LC_ALL="en_US.UTF-8"; + # No tests available + doCheck = false; + meta = { description = "Copy your docs directly to the gh-pages branch"; homepage = "http://github.com/davisp/ghp-import"; From 48c32dc0b77636036b2b2ff04aa25d9a3c40b0dc Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Tue, 19 Jul 2016 14:33:15 +0000 Subject: [PATCH 466/508] nixops: update to 1.4 (cherry picked from commit 9909d31602f6242259bcf7d31e88107fa5f1fb5f) --- pkgs/tools/package-management/nixops/default.nix | 4 ++-- pkgs/tools/package-management/nixops/generic.nix | 6 ++++++ pkgs/tools/package-management/nixops/unstable.nix | 6 +++--- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/package-management/nixops/default.nix b/pkgs/tools/package-management/nixops/default.nix index b49491cf15f..bba392e30e7 100644 --- a/pkgs/tools/package-management/nixops/default.nix +++ b/pkgs/tools/package-management/nixops/default.nix @@ -1,9 +1,9 @@ { callPackage, fetchurl }: callPackage ./generic.nix (rec { - version = "1.3.1"; + version = "1.4"; src = fetchurl { url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2"; - sha256 = "04j8s0gg1aj3wmj1bs7dwscfmlzk2xpwfw9rk4xzxwxw1y0j64nd"; + sha256 = "1a6vkn8rh5lgalxh6cwr4894n3yp7f2qxcbcjv42nnmy5g4fy5fd"; }; }) diff --git a/pkgs/tools/package-management/nixops/generic.nix b/pkgs/tools/package-management/nixops/generic.nix index 023ec07dba1..7948ebc43fb 100644 --- a/pkgs/tools/package-management/nixops/generic.nix +++ b/pkgs/tools/package-management/nixops/generic.nix @@ -17,6 +17,12 @@ pythonPackages.buildPythonApplication { pythonPackages.sqlite3 pythonPackages.hetzner pythonPackages.libcloud + pythonPackages.azure-storage + pythonPackages.azure-mgmt-compute + pythonPackages.azure-mgmt-network + pythonPackages.azure-mgmt-resource + pythonPackages.azure-mgmt-storage + pythonPackages.adal ]; doCheck = false; diff --git a/pkgs/tools/package-management/nixops/unstable.nix b/pkgs/tools/package-management/nixops/unstable.nix index 40d56518b3d..bba392e30e7 100644 --- a/pkgs/tools/package-management/nixops/unstable.nix +++ b/pkgs/tools/package-management/nixops/unstable.nix @@ -1,9 +1,9 @@ { callPackage, fetchurl }: callPackage ./generic.nix (rec { - version = "2015-12-18"; + version = "1.4"; src = fetchurl { - url = "http://hydra.nixos.org/build/29118371/download/2/nixops-1.3.1pre1673_a0d5681.tar.bz2"; - sha256 = "177lnlfz32crcc0gjmh1gn5y2xs142kmb4b68k4raxcxxw118kw9"; + url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2"; + sha256 = "1a6vkn8rh5lgalxh6cwr4894n3yp7f2qxcbcjv42nnmy5g4fy5fd"; }; }) From fe46fa9d175cf0f3dae3ca2ccef40d7833454185 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Tue, 19 Jul 2016 16:40:31 +0200 Subject: [PATCH 467/508] =?UTF-8?q?pharo-vm5:=202016.05.04=20=E2=87=92=202?= =?UTF-8?q?016.07.16?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/pharo/vm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/pharo/vm/default.nix b/pkgs/development/pharo/vm/default.nix index 0ebbb34f8ae..aca5c37d265 100644 --- a/pkgs/development/pharo/vm/default.nix +++ b/pkgs/development/pharo/vm/default.nix @@ -16,12 +16,12 @@ rec { }; pharo-spur = pharo-vm-build rec { - version = "2016.05.04"; + version = "2016.07.16"; name = "pharo-vm-spur-i386-${version}"; binary-basename = "pharo-spur-vm"; src = fetchurl { url = "${base-url}/pharo-vm-spur-${version}.tar.bz2"; - sha256 = "01xvpcp9mslxmfjpi43jhgf8jnx20dqngwrfyi838il61128hwq2"; + sha256 = "07nk4w5wh7gcf27cch5paqp9zdlshnknpv4y7imxlkjd76viac2b"; }; }; } From 78eac466b0f9ea964d7f8b3e473b93584c76bf44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 19 Jul 2016 16:49:46 +0200 Subject: [PATCH 468/508] nixos/ddclient: add warning about password being world readable Closes #16885. --- nixos/modules/services/networking/ddclient.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix index 633ceaebfa4..005c57dce7c 100644 --- a/nixos/modules/services/networking/ddclient.nix +++ b/nixos/modules/services/networking/ddclient.nix @@ -48,7 +48,7 @@ in default = ""; type = str; description = '' - Password. + Password. WARNING: The password becomes world readable in the Nix store. ''; }; From 3563be8dd6eddebf486e4974e9ab137fb7fe0bfe Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 19 Jul 2016 15:10:54 +0000 Subject: [PATCH 469/508] gradle: 2.14 -> 2.14.1 --- pkgs/development/tools/build-managers/gradle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index dabc7b0d7f2..533808243a2 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -51,11 +51,11 @@ rec { }; gradleLatest = gradleGen rec { - name = "gradle-2.14"; + name = "gradle-2.14.1"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "1m98m4cxnvyl5ymkj6z8xb9vpdna47hdh5qrfblqkijjnqrlyfwr"; + sha256 = "0fggjxpsnakdaviw7bn2jmsl06997phlqr1251bjmlgjf7d1xing"; }; }; From 9b658d51cb746cfffcc60aa4dc27b60f2ab3e228 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Mon, 18 Jul 2016 15:00:23 -0400 Subject: [PATCH 470/508] gd: cherry-pick a temporary patch for darwin --- pkgs/development/libraries/gd/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix index f4386a22ffa..cf0ed7883a0 100644 --- a/pkgs/development/libraries/gd/default.nix +++ b/pkgs/development/libraries/gd/default.nix @@ -8,6 +8,7 @@ , libXpm ? null , fontconfig , freetype +, fetchpatch, autoreconfHook, perl }: stdenv.mkDerivation rec { @@ -19,7 +20,17 @@ stdenv.mkDerivation rec { sha256 = "1311g5mva2xlzqv3rjqjc4jjkn5lzls4skvr395h633zw1n7b7s8"; }; - nativeBuildInputs = [ pkgconfig ]; + # Address an incompatibility with Darwin's libtool + patches = stdenv.lib.optional stdenv.isDarwin (fetchpatch { + url = https://github.com/libgd/libgd/commit/502e4cd873c3b37b307b9f450ef827d40916c3d6.patch; + sha256 = "0gawr2c4zr6cljnwzhdlxhz2mkbg0r5vzvr79dv6yf6fcj06awfs"; + }); + + # -pthread gets passed to clang, causing warnings + configureFlags = stdenv.lib.optional stdenv.isDarwin "--enable-werror=no"; + + nativeBuildInputs = [ pkgconfig ] + ++ stdenv.lib.optionals stdenv.isDarwin [ autoreconfHook perl ]; buildInputs = [ zlib fontconfig freetype ]; propagatedBuildInputs = [ libpng libjpeg libwebp libtiff libXpm ]; From 6ef6c5a6f69640db9e3290e95ce50eb75892c01d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 19 Jul 2016 12:34:53 -0500 Subject: [PATCH 471/508] qt55: add missing module setup hook --- pkgs/development/libraries/qt-5/5.5/default.nix | 2 ++ pkgs/development/libraries/qt-5/5.5/setup-hook.sh | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 pkgs/development/libraries/qt-5/5.5/setup-hook.sh diff --git a/pkgs/development/libraries/qt-5/5.5/default.nix b/pkgs/development/libraries/qt-5/5.5/default.nix index 9cfc052e730..24b4c749853 100644 --- a/pkgs/development/libraries/qt-5/5.5/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/default.nix @@ -49,6 +49,8 @@ let outputs = args.outputs or [ "dev" "out" ]; setOutputFlags = args.setOutputFlags or false; + setupHook = ./setup-hook.sh; + enableParallelBuilding = args.enableParallelBuilding or true; meta = self.qtbase.meta // (args.meta or {}); diff --git a/pkgs/development/libraries/qt-5/5.5/setup-hook.sh b/pkgs/development/libraries/qt-5/5.5/setup-hook.sh new file mode 100644 index 00000000000..e41433c1138 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/setup-hook.sh @@ -0,0 +1,2 @@ +NIX_QT5_MODULES="${NIX_QT5_MODULES}${NIX_QT5_MODULES:+:}@out@" +NIX_QT5_MODULES_DEV="${NIX_QT5_MODULES_DEV}${NIX_QT5_MODULES_DEV:+:}@dev@" From d130c27c62d39348d1eda5c580072c7d9e826253 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 19 Jul 2016 12:35:04 -0500 Subject: [PATCH 472/508] pyqt5: run configure hooks Fixes #17045. Whenever a phase is overridden, the pre- and post-hooks for that phase must be invoked! --- pkgs/development/python-modules/pyqt/5.x.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index 71fb5cb3657..7ec89ffd7ee 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -27,6 +27,8 @@ in stdenv.mkDerivation { propagatedBuildInputs = [ sip ]; configurePhase = '' + runHook preConfigure + mkdir -p $out lndir ${pythonDBus} $out @@ -39,11 +41,14 @@ in stdenv.mkDerivation { ${python.executable} configure.py -w \ --confirm-license \ --dbus=$out/include/dbus-1.0 \ + --qmake=$QMAKE \ --no-qml-plugin \ --bindir=$out/bin \ --destdir=$out/lib/${python.libPrefix}/site-packages \ --sipdir=$out/share/sip \ --designer-plugindir=$out/plugins/designer + + runHook postConfigure ''; postInstall = '' From 4a86f9a44f9fa10d9150ec04f71123af5157dc4e Mon Sep 17 00:00:00 2001 From: Jiri Marsicek Date: Mon, 18 Jul 2016 23:37:47 +0200 Subject: [PATCH 473/508] gfxtablet: git-2013-10-21 -> 1.4 --- pkgs/os-specific/linux/gfxtablet/default.nix | 32 +++++++++----------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/pkgs/os-specific/linux/gfxtablet/default.nix b/pkgs/os-specific/linux/gfxtablet/default.nix index 36397b77b77..9fc052c5ac1 100644 --- a/pkgs/os-specific/linux/gfxtablet/default.nix +++ b/pkgs/os-specific/linux/gfxtablet/default.nix @@ -1,32 +1,30 @@ -{stdenv, fetchgit, linuxHeaders}: -let - s = # Generated upstream information - rec { - version="git-2013-10-21"; - name = "gfxtablet-uinput-driver-${version}"; - rev = "c4e337ae0b53a8ccdfe11b904ff129714bd25ec4"; - sha256 = "14ll9rls2mamllmpwjiv2dc6165plazv7ny9cliylafrwgb55l7p"; - url = "https://github.com/rfc2822/GfxTablet.git"; - }; +{stdenv, fetchFromGitHub, linuxHeaders}: + +stdenv.mkDerivation rec { + version = "1.4"; + name = "gfxtablet-uinput-driver-${version}"; + buildInputs = [ linuxHeaders ]; -in -stdenv.mkDerivation { - inherit (s) name version; - inherit buildInputs; - src = fetchgit { - inherit (s) url sha256 rev; + + src = fetchFromGitHub { + owner = "rfc2822"; + repo = "GfxTablet"; + rev = "android-app-${version}"; + sha256 = "1i2m98yypfa9phshlmvjlgw7axfisxmldzrvnbzm5spvv5s4kvvb"; }; + preBuild = ''cd driver-uinput''; + installPhase = '' mkdir -p "$out/bin" cp networktablet "$out/bin" mkdir -p "$out/share/doc/gfxtablet/" cp ../*.md "$out/share/doc/gfxtablet/" ''; + meta = { - inherit (s) version; description = ''Uinput driver for Android GfxTablet tablet-as-input-device app''; license = stdenv.lib.licenses.mit ; maintainers = [stdenv.lib.maintainers.raskin]; From db8e69dea9d0ac20088dfaf5235dcf07e0ff5582 Mon Sep 17 00:00:00 2001 From: Casey Ransom Date: Tue, 19 Jul 2016 16:57:02 -0400 Subject: [PATCH 474/508] aws_shell: 0.1.0 -> 0.1.1 This also fixes https://github.com/awslabs/aws-shell/issues/118 --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7bdf5491746..4486d31ba91 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1401,13 +1401,13 @@ in modules // { aws_shell = buildPythonPackage rec { name = "aws-shell-${version}"; - version = "0.1.0"; + version = "0.1.1"; src = pkgs.fetchurl { - sha256 = "05isyrqbk16dg1bc3mnc4ynxr3nchslvia5wr1sdmxvc3v2y729d"; - url = "mirror://pypi/a/aws-shell/aws-shell-0.1.0.tar.gz"; + sha256 = "1pw9lrdjl24n6lrs6lnqpyiyic8bdxgvhyqvb2rx6kkbjrfhhgv5"; + url = "mirror://pypi/a/aws-shell/aws-shell-${version}.tar.gz"; }; propagatedBuildInputs = with self; [ - configobj prompt_toolkit_52 awscli boto3 pygments sqlite3 mock pytest + configobj prompt_toolkit awscli boto3 pygments sqlite3 mock pytest pytestcov unittest2 tox ]; From 4ddaf12dc68552f6d0c0b70af3fb1b9bf48b60b4 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Tue, 19 Jul 2016 23:15:08 +0200 Subject: [PATCH 475/508] vifm: 0.8.1 -> 0.8.2 --- pkgs/applications/misc/vifm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/vifm/default.nix b/pkgs/applications/misc/vifm/default.nix index e5f3011e6ba..2e8f747e724 100644 --- a/pkgs/applications/misc/vifm/default.nix +++ b/pkgs/applications/misc/vifm/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "vifm-${version}"; - version = "0.8.1"; + version = "0.8.2"; src = fetchurl { url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2"; - sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r"; + sha256 = "07r15kq7kjl3a41sd11ncpsii866xxps4f90zh3lv8jqcrv6silb"; }; nativeBuildInputs = [ pkgconfig ]; From b5f22e070a61cefeb0c2c0d699bcdf417c02d24c Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 18:13:33 -0400 Subject: [PATCH 476/508] pythonPackages.hvac: init at 0.2.15 --- pkgs/top-level/python-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c352a3b6bd9..d2804c429f3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11150,6 +11150,18 @@ in modules // { }; }; + hvac = buildPythonPackage rec { + name = "hvac-${version}"; + version = "0.2.15"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/11/ba/6101780891b9d55f6174fa78b47d462c8c1f0cde34072b45fc39f7f8a77c/hvac-0.2.15.tar.gz"; + sha256 = "0qxa4g1ij1bj27mbp8l54lcr7d5krkb2rayisc6shkpf2b51ip4c"; + }; + + propagatedBuildInputs = with self; [ requests2 ]; + }; + hypothesis1 = buildPythonPackage rec { name = "hypothesis-1.14.0"; From 7ac4d7702eea5f8a4de83aec15526d4a14cd9529 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 18:15:38 -0400 Subject: [PATCH 477/508] pythonPackages.credstash: init at 1.11.0 --- pkgs/top-level/python-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d2804c429f3..d186430075d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3879,6 +3879,18 @@ in modules // { }; }; + credstash = buildPythonPackage rec { + name = "credstash-${version}"; + version = "1.11.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/e2/64/6abae87b8da07c262d50b51eed540096ed1f6e01539bf2f2d4c3f718c8c6/credstash-1.11.0.tar.gz"; + sha256 = "03qm8bjfskzkkmgcy5dr70x9pxabjb3fi0v0nxicg1kryy64k0dz"; + }; + + propagatedBuildInputs = with self; [ pycrypto boto3 docutils ]; + }; + cython = buildPythonPackage rec { name = "Cython-${version}"; version = "0.24"; From cfa10cd20b1526cd33f552e55888f177c0a01496 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 18:16:51 -0400 Subject: [PATCH 478/508] pythonPackages.timeout-decorator: init at 0.3.2 --- pkgs/top-level/python-packages.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d186430075d..99700f82da5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21587,6 +21587,16 @@ in modules // { }; }; + timeout-decorator = buildPythonPackage rec { + name = "timeout-decorator-${version}"; + version = "0.3.2"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/t/timeout-decorator/${name}.tar.gz"; + sha256 = "1x9l8bwdk72if2d5h5mi4lcaidbsmyh0iz114cfyyj1rzz5rxqaf"; + }; + }; + pid = buildPythonPackage rec { name = "pid-${version}"; version = "2.0.1"; From b3adffcd5681bbf579cd78da4e8698c683fb66cc Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 18:17:50 -0400 Subject: [PATCH 479/508] pythonPackages.pychef: init at 0.3.0 --- pkgs/top-level/python-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 99700f82da5..19d47e1146f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21618,6 +21618,21 @@ in modules // { }; }; + pychef = buildPythonPackage rec { + name = "PyChef-${version}"; + version = "0.3.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/f9/31/17cde137e3b8ada4d7c80fd4504264f2abed329a9a8100c3622a044c485e/PyChef-0.3.0.tar.gz"; + sha256 = "0zdz8lw545cd3a34cpib7mdwnad83gr2mrrxyj3v74h4zhwabhmg"; + }; + + propagatedBuildInputs = with self; [ six requests2 mock unittest2 ]; + + # FIXME + doCheck = false; + }; + pydns = buildPythonPackage rec { name = "pydns-2.3.6"; disabled = isPy3k; From 584b667efc08addee7ca4322bc259611b45d8532 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 18 Jul 2016 20:10:33 +0300 Subject: [PATCH 480/508] ddrescue: lzip is a nativeBuildInput --- pkgs/tools/system/ddrescue/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/ddrescue/default.nix b/pkgs/tools/system/ddrescue/default.nix index b436b6ecf96..173c2623e18 100644 --- a/pkgs/tools/system/ddrescue/default.nix +++ b/pkgs/tools/system/ddrescue/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "1b71hb42lh33y9843nd1mxlwkk9qh9ajvnz6ivzd1jq9lav4x7ph"; }; - buildInputs = [ lzip ]; + nativeBuildInputs = [ lzip ]; doCheck = true; From 8d62f62a7807c52a764a68bb4818f75d08fdc417 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 17 Jul 2016 04:20:23 +0300 Subject: [PATCH 481/508] stdenv: Remove unpack-bootstrap-tools-arm.sh This file was using the 'double patchelf' hack, which hasn't been needed for a while, after the original patchelf bug was fixed: https://github.com/NixOS/patchelf/commit/65a4dc6aa982191b11c739c4c9b802c7fa4cbebb --- pkgs/stdenv/linux/default.nix | 5 +- .../scripts/unpack-bootstrap-tools-arm.sh | 64 ------------------- 2 files changed, 1 insertion(+), 68 deletions(-) delete mode 100644 pkgs/stdenv/linux/scripts/unpack-bootstrap-tools-arm.sh diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index fbadfa80fe1..e3aeafe178d 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -42,10 +42,7 @@ rec { builder = bootstrapFiles.busybox; - args = if system == "armv5tel-linux" then - [ "ash" "-e" ./scripts/unpack-bootstrap-tools-arm.sh ] - else - [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ]; + args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ]; tarball = bootstrapFiles.bootstrapTools; diff --git a/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools-arm.sh b/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools-arm.sh deleted file mode 100644 index 4fe86776e3b..00000000000 --- a/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools-arm.sh +++ /dev/null @@ -1,64 +0,0 @@ -set -e - -# Unpack the bootstrap tools tarball. -echo Unpacking the bootstrap tools... -$builder mkdir $out -< $tarball $builder unxz | $builder tar x -C $out - -# Set the ELF interpreter / RPATH in the bootstrap binaries. -echo Patching the bootstrap tools... - -# On x86_64, ld-linux-x86-64.so.2 barfs on patchelf'ed programs. So -# use a copy of patchelf. -LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? $out/bin/cp $out/bin/patchelf . - -for i in $out/bin/* $out/libexec/gcc/*/*/* $out/lib/librt*; do - if test ${i%.la} != $i; then continue; fi - if test ${i%*.so*} != $i; then continue; fi - if ! test -f $i; then continue; fi - if test -L $i; then continue; fi - echo patching $i - LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \ - $out/bin/patchelf --set-interpreter $out/lib/ld-linux*.so.? --set-rpath $out/lib --force-rpath $i - LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \ - $out/bin/patchelf --set-interpreter $out/lib/ld-linux*.so.? --set-rpath $out/lib --force-rpath $i -done -for i in $out/lib/librt* $out/lib/libcloog* $out/lib/libppl* $out/lib/libgmp* $out/lib/libpcre*; do - if ! test -f $i; then continue; fi - if test -L $i; then continue; fi - echo patching $i - LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \ - $out/bin/patchelf --set-rpath $out/lib --force-rpath $i - LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \ - $out/bin/patchelf --set-rpath $out/lib --force-rpath $i -done - -# Fix the libc linker script. -export PATH=$out/bin -cat $out/lib/libc.so | sed "s|/nix/store/e*-[^/]*/|$out/|g" > $out/lib/libc.so.tmp -mv $out/lib/libc.so.tmp $out/lib/libc.so -cat $out/lib/libpthread.so | sed "s|/nix/store/e*-[^/]*/|$out/|g" > $out/lib/libpthread.so.tmp -mv $out/lib/libpthread.so.tmp $out/lib/libpthread.so - -# Provide some additional symlinks. -ln -s bash $out/bin/sh -ln -s bzip2 $out/bin/bunzip2 - -# Provide a gunzip script -cat > $out/bin/gunzip < $out/bin/egrep -echo "exec $out/bin/grep -E \"\$@\"" >> $out/bin/egrep -echo "#! $out/bin/sh" > $out/bin/fgrep -echo "exec $out/bin/grep -F \"\$@\"" >> $out/bin/fgrep - -# Provide xz (actually only xz -d will work). -echo "#! $out/bin/sh" > $out/bin/xz -echo "exec $builder unxz \"\$@\"" >> $out/bin/xz - -chmod +x $out/bin/egrep $out/bin/fgrep $out/bin/xz From 2fefa331e76413abb39eda1128462d254e5fbdfa Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 1 Jun 2016 22:52:03 +0300 Subject: [PATCH 482/508] busybox: Fix cross build with musl --- pkgs/os-specific/linux/busybox/default.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix index 92f24b9e9ae..296b19bc5b6 100644 --- a/pkgs/os-specific/linux/busybox/default.nix +++ b/pkgs/os-specific/linux/busybox/default.nix @@ -64,7 +64,11 @@ stdenv.mkDerivation rec { EOF make oldconfig - '' + lib.optionalString useMusl '' + + runHook postConfigure + ''; + + postConfigure = lib.optionalString useMusl '' makeFlagsArray+=("CC=gcc -isystem ${musl}/include -B${musl}/lib -L${musl}/lib") ''; @@ -73,10 +77,11 @@ stdenv.mkDerivation rec { crossAttrs = { extraCrossConfig = '' CONFIG_CROSS_COMPILER_PREFIX "${stdenv.cross.config}-" - '' + - (if stdenv.cross.platform.kernelMajor == "2.4" then '' - CONFIG_IONICE n - '' else ""); + ''; + + postConfigure = stdenv.lib.optionalString useMusl '' + makeFlagsArray+=("CC=$crossConfig-gcc -isystem ${musl.crossDrv}/include -B${musl.crossDrv}/lib -L${musl.crossDrv}/lib") + ''; }; enableParallelBuilding = true; From 953249db34d2c385cdeef0e50e6449f736a8bb65 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 17 Mar 2016 13:55:13 +0200 Subject: [PATCH 483/508] platforms.nix: kirkwood_defconfig is gone, use multi_v5_defconfig kirkwood_defconfig was removed in 3.17, and our kernel headers are based on 4.4. Make this change to allow the armv5tel bootstrap tarball to build again (I can't test it, though). --- pkgs/top-level/platforms.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/platforms.nix b/pkgs/top-level/platforms.nix index 83859f821d8..0c2056928c3 100644 --- a/pkgs/top-level/platforms.nix +++ b/pkgs/top-level/platforms.nix @@ -24,7 +24,7 @@ rec { sheevaplug = { name = "sheevaplug"; kernelMajor = "2.6"; - kernelHeadersBaseConfig = "kirkwood_defconfig"; + kernelHeadersBaseConfig = "multi_v5_defconfig"; kernelBaseConfig = "multi_v5_defconfig"; kernelArch = "arm"; kernelAutoModules = false; From 9f0dc294da55783c4636b68a78f755754606f2c7 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 5 Jan 2016 11:25:53 +0200 Subject: [PATCH 484/508] make-bootstrap-tools-cross.nix: Add/fix some .so dependencies - cloog, ppl, cloogppl aren't used by recent GCCs. Kill references to them. - Use correct versions of isl, as the current GCC depends on non-default versions of them. - Also clarify isl dynamic libraries are needed in cross builds, but not in native builds - Since aeb3d8c (bzip2: fix cross build on mingw by using autoconf patch), it seems that the bzip2 binary depends on libbz2 when cross compiling. So copy libbz2 into the bootstrap tarball as well. - Curl isn't used in the bootstrap tools since e6f61b4cf3388. --- .../linux/make-bootstrap-tools-cross.nix | 23 +++++++------------ 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index 6dfe1bf41e4..8dce40b08a7 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -74,15 +74,13 @@ let gcc = pkgs.gcc.cc.crossDrv; gmpxx = pkgs.gmpxx.crossDrv; mpfr = pkgs.mpfr.crossDrv; - ppl = pkgs.ppl.crossDrv; - cloogppl = pkgs.cloogppl.crossDrv; - cloog = pkgs.cloog.crossDrv; zlib = pkgs.zlib.crossDrv; - isl = pkgs.isl.crossDrv; libmpc = pkgs.libmpc.crossDrv; binutils = pkgs.binutils.crossDrv; libelf = pkgs.libelf.crossDrv; + # Keep these versions in sync with the versions used in the current GCC! + isl = pkgs.isl_0_14.crossDrv; in rec { @@ -94,12 +92,6 @@ rec { singleBinary = "symlinks"; })).crossDrv; - curlMinimal = (pkgs.curl.override { - zlibSupport = false; - sslSupport = false; - scpSupport = false; - }).crossDrv; - busyboxMinimal = (pkgs.busybox.override { # TBD: uClibc is broken. # useUclibc = true; @@ -172,8 +164,6 @@ rec { cp -d ${gnumake}/bin/* $out/bin cp -d ${patch}/bin/* $out/bin cp ${patchelf}/bin/* $out/bin - cp ${curlMinimal}/bin/curl $out/bin - cp -d ${curlMinimal}/lib/libcurl* $out/lib cp -d ${gnugrep.pcre.crossDrv}/lib/libpcre*.so* $out/lib # needed by grep @@ -206,10 +196,13 @@ rec { cp -d ${zlib.out}/lib/libz.so* $out/lib cp -d ${libelf}/lib/libelf.so* $out/lib - # TBD: Why are these needed for cross but not native tools? - cp -d ${cloogppl}/lib/libcloog*.so* $out/lib - cp -d ${cloog}/lib/libcloog*.so* $out/lib + # These needed for cross but not native tools because the stdenv + # GCC has certain things built in statically. See + # pkgs/stdenv/linux/default.nix for the details. cp -d ${isl}/lib/libisl*.so* $out/lib + # Also this is needed since bzip2 uses a custom build system + # for native builds but autoconf (via a patch) for cross builds + cp -d ${bzip2}/lib/libbz2.so* $out/lib # Copy binutils. for i in as ld ar ranlib nm strip readelf objdump; do From 171c7f0e63b0f92c71c73b756cbbd91b8ddce444 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 17 Jul 2016 00:11:34 +0300 Subject: [PATCH 485/508] make-bootstrap-tools-cross.nix: Have more consistency with platforms.nix E.g. we had `arch = "arm"` in the former and `arch = "armv6"` in the latter. Try to have some more consistency. --- pkgs/stdenv/linux/make-bootstrap-tools-cross.nix | 12 ++++++------ pkgs/top-level/platforms.nix | 4 ++++ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index 8dce40b08a7..32f287cdc4c 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -8,9 +8,9 @@ let sheevaplugCrossSystem = { crossSystem = rec { - config = "armv5tel-unknown-linux-gnueabi"; + config = "arm-linux-gnueabi"; bigEndian = false; - arch = "arm"; + arch = "armv5te"; float = "soft"; withTLS = true; libc = "glibc"; @@ -21,9 +21,9 @@ let raspberrypiCrossSystem = { crossSystem = rec { - config = "armv6l-unknown-linux-gnueabi"; + config = "arm-linux-gnueabihf"; bigEndian = false; - arch = "arm"; + arch = "armv6"; float = "hard"; fpu = "vfp"; withTLS = true; @@ -36,9 +36,9 @@ let armv7l-hf-multiplatform-crossSystem = { crossSystem = rec { - config = "armv7l-unknown-linux-gnueabi"; + config = "arm-linux-gnueabihf"; bigEndian = false; - arch = "arm"; + arch = "armv7-a"; float = "hard"; fpu = "vfpv3-d16"; withTLS = true; diff --git a/pkgs/top-level/platforms.nix b/pkgs/top-level/platforms.nix index 0c2056928c3..1be8c7ad264 100644 --- a/pkgs/top-level/platforms.nix +++ b/pkgs/top-level/platforms.nix @@ -129,6 +129,10 @@ rec { # Only for uboot = uboot : ubootConfig = "sheevaplug_config"; kernelDTB = true; # Beyond 3.10 + gcc = { + arch = "armv5te"; + float = "soft"; + }; }; raspberrypi = { From 0968641edad9a4655c3edf82d5946af3f4433ea1 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 1 Jun 2016 22:52:34 +0300 Subject: [PATCH 486/508] make-bootstrap-tools-cross.nix: Use busybox with musl Do this because I cannot figure out how to refer to `glibc.static` inside busybox when cross building in a manner that works. --- pkgs/stdenv/linux/make-bootstrap-tools-cross.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index 32f287cdc4c..868e6f209e9 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -93,8 +93,7 @@ rec { })).crossDrv; busyboxMinimal = (pkgs.busybox.override { - # TBD: uClibc is broken. - # useUclibc = true; + useMusl = true; enableStatic = true; enableMinimal = true; extraConfig = '' From 954e54f563b8e75a91b4241e043f1e4e3f0ca81f Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 1 Jun 2016 23:01:57 +0300 Subject: [PATCH 487/508] make-bootstrap-tools-cross.nix: Reference correct outputs --- .../linux/make-bootstrap-tools-cross.nix | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index 868e6f209e9..11db5d8b7eb 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -164,15 +164,15 @@ rec { cp -d ${patch}/bin/* $out/bin cp ${patchelf}/bin/* $out/bin - cp -d ${gnugrep.pcre.crossDrv}/lib/libpcre*.so* $out/lib # needed by grep + cp -d ${gnugrep.pcre.crossDrv.out}/lib/libpcre*.so* $out/lib # needed by grep # Copy what we need of GCC. - cp -d ${gcc}/bin/gcc $out/bin - cp -d ${gcc}/bin/cpp $out/bin - cp -d ${gcc}/bin/g++ $out/bin - cp -d ${gcc}/lib*/libgcc_s.so* $out/lib - cp -d ${gcc}/lib*/libstdc++.so* $out/lib - cp -rd ${gcc}/lib/gcc $out/lib + cp -d ${gcc.out}/bin/gcc $out/bin + cp -d ${gcc.out}/bin/cpp $out/bin + cp -d ${gcc.out}/bin/g++ $out/bin + cp -d ${gcc.lib}/lib*/libgcc_s.so* $out/lib + cp -d ${gcc.lib}/lib*/libstdc++.so* $out/lib + cp -rd ${gcc.out}/lib/gcc $out/lib chmod -R u+w $out/lib rm -f $out/lib/gcc/*/*/include*/linux rm -f $out/lib/gcc/*/*/include*/sound @@ -180,18 +180,18 @@ rec { rm -f $out/lib/gcc/*/*/include-fixed/asm rm -rf $out/lib/gcc/*/*/plugin #rm -f $out/lib/gcc/*/*/*.a - cp -rd ${gcc}/libexec/* $out/libexec + cp -rd ${gcc.out}/libexec/* $out/libexec chmod -R u+w $out/libexec rm -rf $out/libexec/gcc/*/*/plugin mkdir $out/include - cp -rd ${gcc}/include/c++ $out/include + cp -rd ${gcc.out}/include/c++ $out/include chmod -R u+w $out/include rm -rf $out/include/c++/*/ext/pb_ds rm -rf $out/include/c++/*/ext/parallel - cp -d ${gmpxx}/lib/libgmp*.so* $out/lib + cp -d ${gmpxx.out}/lib/libgmp*.so* $out/lib cp -d ${mpfr.out}/lib/libmpfr*.so* $out/lib - cp -d ${libmpc}/lib/libmpc*.so* $out/lib + cp -d ${libmpc.out}/lib/libmpc*.so* $out/lib cp -d ${zlib.out}/lib/libz.so* $out/lib cp -d ${libelf}/lib/libelf.so* $out/lib @@ -201,11 +201,11 @@ rec { cp -d ${isl}/lib/libisl*.so* $out/lib # Also this is needed since bzip2 uses a custom build system # for native builds but autoconf (via a patch) for cross builds - cp -d ${bzip2}/lib/libbz2.so* $out/lib + cp -d ${bzip2.out}/lib/libbz2.so* $out/lib # Copy binutils. for i in as ld ar ranlib nm strip readelf objdump; do - cp ${binutils}/bin/$i $out/bin + cp ${binutils.out}/bin/$i $out/bin done cp -d ${binutils.out}/lib/lib*.so* $out/lib From 5cbb6ac151dbb1596c0001138ece5312be67e5f0 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 17 Jul 2016 03:40:45 +0300 Subject: [PATCH 488/508] make-bootstrap-tools-cross.nix: More syncs from the non-cross version --- .../linux/make-bootstrap-tools-cross.nix | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index 11db5d8b7eb..b688cca1f69 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -65,7 +65,6 @@ let gnused = pkgs.gnused.crossDrv; gnugrep = pkgs.gnugrep.crossDrv; gawk = pkgs.gawk.crossDrv; - gnutar = pkgs.gnutar.crossDrv; gzip = pkgs.gzip.crossDrv; bzip2 = pkgs.bzip2.crossDrv; gnumake = pkgs.gnumake.crossDrv; @@ -85,6 +84,7 @@ in rec { + coreutilsMinimal = (pkgs.coreutils.override (args: { # We want coreutils without ACL support. aclSupport = false; @@ -92,6 +92,8 @@ rec { singleBinary = "symlinks"; })).crossDrv; + tarMinimal = (pkgs.gnutar.override { acl = null; }).crossDrv; + busyboxMinimal = (pkgs.busybox.override { useMusl = true; enableStatic = true; @@ -107,19 +109,16 @@ rec { ''; }).crossDrv; - inherit pkgs; - build = stdenv.mkDerivation { - name = "build"; + name = "stdenv-bootstrap-tools-cross"; + crossConfig = stdenv.cross.config; buildInputs = [nukeReferences cpio binutilsCross]; - crossConfig = stdenv.cross.config; - buildCommand = '' - set -x + set -x mkdir -p $out/bin $out/lib $out/libexec # Copy what we need of Glibc. @@ -137,7 +136,15 @@ rec { cp -d ${glibc.out}/lib/crt?.o $out/lib cp -rL ${glibc.dev}/include $out - chmod -R u+w $out/include + chmod -R u+w "$out" + + # glibc can contain linker scripts: find them, copy their deps, + # and get rid of absolute paths (nuke-refs would make them useless) + local lScripts=$(grep --files-with-matches --max-count=1 'GNU ld script' -R "$out/lib") + cp -d -t "$out/lib/" $(cat $lScripts | tr " " "\n" | grep -F '${glibc.out}' | sort -u) + for f in $lScripts; do + substituteInPlace "$f" --replace '${glibc.out}/lib/' "" + done # Hopefully we won't need these. rm -rf $out/include/mtd $out/include/rdma $out/include/sound $out/include/video @@ -157,7 +164,7 @@ rec { cp -d ${gnugrep}/bin/grep $out/bin cp ${gawk}/bin/gawk $out/bin cp -d ${gawk}/bin/awk $out/bin - cp ${gnutar}/bin/tar $out/bin + cp ${tarMinimal}/bin/tar $out/bin cp ${gzip}/bin/gzip $out/bin cp ${bzip2.bin}/bin/bzip2 $out/bin cp -d ${gnumake}/bin/* $out/bin From 53c039b96a8c6c31a79fb3b3d7a95f6295dd7164 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 17 Jul 2016 06:34:31 +0300 Subject: [PATCH 489/508] make-bootstrap-tools-cross.nix: Support 'dist' target --- pkgs/stdenv/linux/make-bootstrap-tools-cross.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index b688cca1f69..0bc8c64be63 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -247,6 +247,15 @@ rec { allowedReferences = []; }; + dist = stdenv.mkDerivation { + name = "stdenv-bootstrap-tools-cross"; + + buildCommand = '' + mkdir -p $out/nix-support + echo "file tarball ${build}/on-server/bootstrap-tools.tar.xz" >> $out/nix-support/hydra-build-products + echo "file busybox ${build}/on-server/busybox" >> $out/nix-support/hydra-build-products + ''; + }; } ); in { From 3d509896511fac1c73307fedf2060c9dddebf73a Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 19 Jul 2016 01:04:53 +0300 Subject: [PATCH 490/508] make-bootstrap-tools{,-cross}.nix: Create deterministic tars --- pkgs/stdenv/linux/make-bootstrap-tools-cross.nix | 2 +- pkgs/stdenv/linux/make-bootstrap-tools.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index 0bc8c64be63..522c28905a8 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -235,7 +235,7 @@ rec { mv $out/.pack $out/pack mkdir $out/on-server - tar cvfJ $out/on-server/bootstrap-tools.tar.xz -C $out/pack . + tar cvfJ $out/on-server/bootstrap-tools.tar.xz --hard-dereference --sort=name --numeric-owner --owner=0 --group=0 --mtime=@1 -C $out/pack . cp ${busyboxMinimal}/bin/busybox $out/on-server chmod u+w $out/on-server/busybox nuke-refs $out/on-server/busybox diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index 866906662ae..1ecb222af3e 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -146,7 +146,7 @@ rec { mv $out/.pack $out/pack mkdir $out/on-server - tar cvfJ $out/on-server/bootstrap-tools.tar.xz -C $out/pack . + tar cvfJ $out/on-server/bootstrap-tools.tar.xz --hard-dereference --sort=name --numeric-owner --owner=0 --group=0 --mtime=@1 -C $out/pack . cp ${busyboxMinimal}/bin/busybox $out/on-server chmod u+w $out/on-server/busybox nuke-refs $out/on-server/busybox From d0e25d815ce610c34581860abc1269408323ca1e Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 11 Jul 2016 14:45:29 +0300 Subject: [PATCH 491/508] release-cross.nix: Drop any platforms not having a single working build --- pkgs/top-level/release-cross.nix | 204 ------------------------------- 1 file changed, 204 deletions(-) diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index ced90c0489c..c0cac8c8103 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -50,95 +50,6 @@ in { }); }) // ( -/* Test some cross builds to the Sheevaplug - uclibc*/ -let - crossSystem = { - config = "armv5tel-unknown-linux-gnueabi"; - bigEndian = false; - arch = "arm"; - float = "soft"; - withTLS = true; - platform = pkgs.platforms.sheevaplug; - libc = "uclibc"; - openssl.system = "linux-generic32"; - uclibc.extraConfig = '' - CONFIG_ARM_OABI n - CONFIG_ARM_EABI y - ARCH_BIG_ENDIAN n - ARCH_WANTS_BIG_ENDIAN n - ARCH_WANTS_LITTLE_ENDIAN y - LINUXTHREADS_OLD y - ''; - }; - -in { - crossSheevaplugLinuxUclibc = mapTestOnCross crossSystem ( - basic // - { - ubootSheevaplug.crossDrv = nativePlatforms; - }); -}) // ( - -/* Test some cross builds to the mipsel */ -let - crossSystem = { - config = "mipsel-unknown-linux"; - bigEndian = false; - arch = "mips"; - float = "soft"; - withTLS = true; - libc = "uclibc"; - platform = { - name = "malta"; - kernelMajor = "2.4"; - kernelBaseConfig = "defconfig-malta"; - kernelHeadersBaseConfig = "defconfig-malta"; - uboot = null; - kernelArch = "mips"; - kernelAutoModules = false; - kernelTarget = "vmlinux"; - }; - openssl.system = "linux-generic32"; - uclibc.extraConfig = '' - ARCH_BIG_ENDIAN n - ARCH_WANTS_BIG_ENDIAN n - ARCH_WANTS_LITTLE_ENDIAN y - LINUXTHREADS_OLD y - - # Without this, it does not build for linux 2.4 - UCLIBC_SUSV4_LEGACY y - ''; - }; -in { - crossMipselLinux24 = mapTestOnCross crossSystem basic; -}) // ( - -/* Test some cross builds to the ultrasparc */ -let - crossSystem = { - config = "sparc64-unknown-linux"; - bigEndian = true; - arch = "sparc64"; - float = "hard"; - withTLS = true; - libc = "glibc"; - platform = { - name = "ultrasparc"; - kernelMajor = "2.6"; - kernelHeadersBaseConfig = "sparc64_defconfig"; - kernelBaseConfig = "sparc64_defconfig"; - kernelArch = "sparc"; - kernelAutoModules = false; - kernelTarget = "zImage"; - uboot = null; - }; - openssl.system = "linux64-sparcv9"; - gcc.cpu = "ultrasparc"; - }; -in { - crossUltraSparcLinux = mapTestOnCross crossSystem basic; -}) // ( - /* Test some cross builds on 32 bit mingw-w64 */ let crossSystem = { @@ -182,52 +93,6 @@ in { }; }) // ( -/* GNU aka. GNU/Hurd. */ -let - crossSystem = { - config = "i586-pc-gnu"; - bigEndian = false; - arch = "i586"; - float = "hard"; - withTLS = true; - platform = pkgs.platforms.pc32; - libc = "glibc"; - openssl.system = "hurd-x86"; # Nix depends on OpenSSL. - }; -in { - crossGNU = mapTestOnCross crossSystem { - gnu.hurdCross = nativePlatforms; - gnu.mach.crossDrv = nativePlatforms; - gnu.mig = nativePlatforms; - gnu.smbfs.crossDrv = nativePlatforms; - - coreutils.crossDrv = nativePlatforms; - ed.crossDrv = nativePlatforms; - grub2.crossDrv = nativePlatforms; - inetutils.crossDrv = nativePlatforms; - boehmgc.crossDrv = nativePlatforms; - findutils.crossDrv = nativePlatforms; - gcc.crossDrv = nativePlatforms; - gcc46.crossDrv = nativePlatforms; - gdb.crossDrv = nativePlatforms; - gmp.crossDrv = nativePlatforms; - gnugrep.crossDrv = nativePlatforms; - gnumake.crossDrv = nativePlatforms; - gnused.crossDrv = nativePlatforms; - guile_1_8.crossDrv = nativePlatforms; - guile.crossDrv = nativePlatforms; - libffi.crossDrv = nativePlatforms; - libtool.crossDrv = nativePlatforms; - libunistring.crossDrv = nativePlatforms; - lsh.crossDrv = nativePlatforms; - nixUnstable.crossDrv = nativePlatforms; - openssl.crossDrv = nativePlatforms; # dependency of Nix - patch.crossDrv = nativePlatforms; - samba_light.crossDrv = nativePlatforms; # needed for `runInGenericVM' - zile.crossDrv = nativePlatforms; - }; -}) // ( - /* Linux on the fuloong */ let crossSystem = { @@ -266,75 +131,6 @@ in { }; }) // ( -/* Linux on the Ben Nanonote */ -let - crossSystem = { - config = "mipsel-unknown-linux"; - bigEndian = false; - arch = "mips"; - float = "soft"; - withTLS = true; - libc = "glibc"; - platform = { - name = "ben_nanonote"; - kernelMajor = "2.6"; - kernelBaseConfig = "qi_lb60_defconfig"; - kernelHeadersBaseConfig = "malta_defconfig"; - uboot = "nanonote"; - kernelArch = "mips"; - kernelAutoModules = false; - kernelTarget = "vmlinux.bin"; - kernelExtraConfig = '' - SOUND y - SND y - SND_MIPS y - SND_SOC y - SND_JZ4740_SOC y - SND_JZ4740_SOC_QI_LB60 y - FUSE_FS m - MIPS_FPU_EMU y - ''; - }; - openssl.system = "linux-generic32"; - perl.arch = "mipsel-unknown"; - uclibc.extraConfig = '' - CONFIG_MIPS_ISA_1 n - CONFIG_MIPS_ISA_MIPS32 y - CONFIG_MIPS_N32_ABI n - CONFIG_MIPS_O32_ABI y - ARCH_BIG_ENDIAN n - ARCH_WANTS_BIG_ENDIAN n - ARCH_WANTS_LITTLE_ENDIAN y - LINUXTHREADS_OLD y - ''; - gcc = { - abi = "32"; - arch = "mips32"; - }; - mpg123.cpu = "generic_nofpu"; - }; -in { - nanonote = mapTestOnCross crossSystem { - - coreutils.crossDrv = nativePlatforms; - ed.crossDrv = nativePlatforms; - inetutils.crossDrv = nativePlatforms; - nixUnstable.crossDrv = nativePlatforms; - patch.crossDrv = nativePlatforms; - zile.crossDrv = nativePlatforms; - prboom.crossDrv = nativePlatforms; - vim.crossDrv = nativePlatforms; - lynx.crossDrv = nativePlatforms; - patchelf.crossDrv = nativePlatforms; - nix.crossDrv = nativePlatforms; - fossil.crossDrv = nativePlatforms; - binutils.crossDrv = nativePlatforms; - mpg123.crossDrv = nativePlatforms; - yacas.crossDrv = nativePlatforms; - }; -}) // ( - - /* Linux on Raspberrypi */ let crossSystem = { From ee1a647bc292248f4745fa040b4d5ed75117d227 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 18 Jul 2016 20:43:13 +0300 Subject: [PATCH 492/508] release-cross.nix: Remove bunch of packages that don't build --- pkgs/top-level/release-cross.nix | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index c0cac8c8103..9823bd7b910 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -9,13 +9,6 @@ let busybox.crossDrv = nativePlatforms; coreutils.crossDrv = nativePlatforms; dropbear.crossDrv = nativePlatforms; - tigervnc.crossDrv = nativePlatforms; - wxGTK.crossDrv = nativePlatforms; - #firefox = nativePlatforms; - xorg = { - #xorgserver.crossDrv = nativePlatforms; - }; - nixUnstable.crossDrv = nativePlatforms; }; /* Basic list of packages to be natively built, @@ -123,11 +116,7 @@ in { coreutils.crossDrv = nativePlatforms; ed.crossDrv = nativePlatforms; - grub2.crossDrv = nativePlatforms; - inetutils.crossDrv = nativePlatforms; - nixUnstable.crossDrv = nativePlatforms; patch.crossDrv = nativePlatforms; - zile.crossDrv = nativePlatforms; }; }) // ( @@ -154,23 +143,13 @@ in { rpi = mapTestOnCross crossSystem { coreutils.crossDrv = nativePlatforms; ed.crossDrv = nativePlatforms; - inetutils.crossDrv = nativePlatforms; - nixUnstable.crossDrv = nativePlatforms; patch.crossDrv = nativePlatforms; vim.crossDrv = nativePlatforms; - tmux.crossDrv = nativePlatforms; - screen.crossDrv = nativePlatforms; - unrar.crossDrv = nativePlatforms; unzip.crossDrv = nativePlatforms; - hdparm.crossDrv = nativePlatforms; ddrescue.crossDrv = nativePlatforms; - git.crossDrv = nativePlatforms; lynx.crossDrv = nativePlatforms; patchelf.crossDrv = nativePlatforms; - nix.crossDrv = nativePlatforms; - fossil.crossDrv = nativePlatforms; binutils.crossDrv = nativePlatforms; mpg123.crossDrv = nativePlatforms; - yacas.crossDrv = nativePlatforms; }; }) From cd645c417a162debb695691b0b94ef438ac21f39 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 18 Jul 2016 00:04:51 +0300 Subject: [PATCH 493/508] release-cross.nix: Build the bootstrap tools for ARM --- pkgs/top-level/release-cross.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index 9823bd7b910..f670eaea98a 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -152,4 +152,13 @@ in { binutils.crossDrv = nativePlatforms; mpg123.crossDrv = nativePlatforms; }; +}) // ( + +/* Cross-built bootstrap tools for every supported platform */ +let + tools = import ../stdenv/linux/make-bootstrap-tools-cross.nix { system = "x86_64-linux"; }; + maintainers = [ pkgs.lib.maintainers.dezgeg ]; + mkBootstrapToolsJob = bt: hydraJob' (pkgs.lib.addMetaAttrs { inherit maintainers; } bt.dist); +in { + bootstrapTools = pkgs.lib.mapAttrs (name: mkBootstrapToolsJob) tools; }) From 322faf92196ddf282703ddc608e221eeaaa6578c Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 17 Jul 2016 00:14:22 +0300 Subject: [PATCH 494/508] platforms.nix: Switch ARMv7 to vfpv3-d16 Make ARMv7 compatible with non-NEON chips, changing to the same float ABI that Debian and Arch Linux use. This is apparently required for the binaries to work on Scaleway, for instance. --- pkgs/top-level/platforms.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/platforms.nix b/pkgs/top-level/platforms.nix index 1be8c7ad264..3c94501b1a5 100644 --- a/pkgs/top-level/platforms.nix +++ b/pkgs/top-level/platforms.nix @@ -417,11 +417,12 @@ rec { # Cortex-A15: -mfpu=neon-vfpv4 # More about FPU: - #https://wiki.debian.org/ArmHardFloatPort/VfpComparison + # https://wiki.debian.org/ArmHardFloatPort/VfpComparison - # We try to be compatible with beaglebone by now + # vfpv3-d16 is what Debian uses and seems to be the best compromise: NEON is not supported in e.g. Scaleway or Tegra 2, + # and the above page suggests NEON is only an improvement with hand-written assembly. arch = "armv7-a"; - fpu = "neon"; + fpu = "vfpv3-d16"; float = "hard"; # For Raspberry Pi the 2 the best would be: From ad16c9ac31f4eb2b5a6b5a4615df8e9ea4c3a405 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 19 Jul 2016 21:52:19 +0300 Subject: [PATCH 495/508] Revert "spidermonkey: Disable tests on ARM" This reverts commit f9654a88e76703a80b8d1464f384bba21abeaf52. At least for now, the problem has gone away on ARMv7 by the switch of FPU flags used by GCC. Some details of the bug at: https://github.com/NixOS/nixpkgs/pull/16850#issuecomment-232339143 --- pkgs/development/interpreters/spidermonkey/17.0.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/spidermonkey/17.0.nix b/pkgs/development/interpreters/spidermonkey/17.0.nix index 5cd3ff0cca6..cbe2c47594d 100644 --- a/pkgs/development/interpreters/spidermonkey/17.0.nix +++ b/pkgs/development/interpreters/spidermonkey/17.0.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - doCheck = !stdenv.isArm; # fails on v7 with "Alignment trap: not handling instruction" in kernel log + doCheck = true; preCheck = '' rm jit-test/tests/sunspider/check-date-format-tofte.js # https://bugzil.la/600522 From 6c4ba06597be6efec7e2036c76d4dd8d2e53443c Mon Sep 17 00:00:00 2001 From: Jookia <166291@gmail.com> Date: Sun, 3 Jul 2016 21:32:51 +1000 Subject: [PATCH 496/508] spidermonkey: Fix building 185-1.0.0 on ARMv7. --- .../interpreters/spidermonkey/185-1.0.0.nix | 15 +- .../interpreters/spidermonkey/arm-flags.patch | 342 ++++++++++++++++++ 2 files changed, 353 insertions(+), 4 deletions(-) create mode 100644 pkgs/development/interpreters/spidermonkey/arm-flags.patch diff --git a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix index 779f0ef26d4..b3fa96d756a 100644 --- a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix +++ b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, nspr, perl, python, zip }: +{ stdenv, autoconf213, fetchurl, pkgconfig, nspr, perl, python, zip }: stdenv.mkDerivation rec { version = "185-1.0.0"; @@ -12,17 +12,21 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ nspr ]; buildInputs = [ pkgconfig perl python zip ]; + nativeBuildInputs = if stdenv.isArm then [ autoconf213 ] else []; postUnpack = "sourceRoot=\${sourceRoot}/js/src"; preConfigure = '' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr.dev}/include/nspr" export LIBXUL_DIST=$out + ${if stdenv.isArm then "autoreconf --verbose --force" else ""} ''; - # Explained below in configureFlags for ARM patches = stdenv.lib.optionals stdenv.isArm [ + # Explained below in configureFlags for ARM ./findvanilla.patch + # Fix for hard float flags. + ./arm-flags.patch ]; patchFlags = "-p3"; @@ -33,12 +37,15 @@ stdenv.mkDerivation rec { # of polkit, which is what matters most, it does not override the allocator # so the failure of that test does not matter much. configureFlags = [ "--enable-threadsafe" "--with-system-nspr" ] ++ - stdenv.lib.optionals stdenv.isArm [ + stdenv.lib.optionals (stdenv.system == "armv5tel-linux") [ "--with-cpu-arch=armv5t" "--disable-tracejit" ]; # hack around a make problem, see https://github.com/NixOS/nixpkgs/issues/1279#issuecomment-29547393 - preBuild = "touch -- {.,shell,jsapi-tests}/{-lpthread,-ldl}"; + preBuild = '' + touch -- {.,shell,jsapi-tests}/{-lpthread,-ldl} + ${if stdenv.isArm then "rm -r jit-test/tests/jaeger/bug563000" else ""} + ''; enableParallelBuilding = true; diff --git a/pkgs/development/interpreters/spidermonkey/arm-flags.patch b/pkgs/development/interpreters/spidermonkey/arm-flags.patch new file mode 100644 index 00000000000..721aff154e3 --- /dev/null +++ b/pkgs/development/interpreters/spidermonkey/arm-flags.patch @@ -0,0 +1,342 @@ +From: Mike Hommey +Date: Wed, 27 Apr 2011 08:58:01 +0200 +Subject: Bug 626035 - Modify the way arm compiler flags are set in configure + +--- + configure.in | 292 ++++++++++++++++++++++++++++++++------------------- + js/src/configure.in | 284 ++++++++++++++++++++++++++++++++----------------- + 2 files changed, 372 insertions(+), 204 deletions(-) + +Index: mozjs-1.8.5-1.0.0+dfsg/js/src/configure.in +=================================================================== +--- mozjs-1.8.5-1.0.0+dfsg.orig/js/src/configure.in 2012-01-21 15:57:37.507703219 +0100 ++++ mozjs-1.8.5-1.0.0+dfsg/js/src/configure.in 2012-01-21 15:58:04.951703302 +0100 +@@ -3535,34 +3535,6 @@ + AC_CHECK_LIB(socket, socket) + esac + +-AC_MSG_CHECKING(for ARM SIMD support in compiler) +-AC_TRY_COMPILE([], +- [asm("uqadd8 r1, r1, r2");], +- result="yes", result="no") +-AC_MSG_RESULT("$result") +-if test "$result" = "yes"; then +- AC_DEFINE(HAVE_ARM_SIMD) +- HAVE_ARM_SIMD=1 +-fi +-AC_SUBST(HAVE_ARM_SIMD) +- +-AC_MSG_CHECKING(for ARM NEON support in compiler) +-_SAVE_CFLAGS="$CFLAGS" +-if test "$GNU_CC"; then +- # gcc needs -mfpu=neon to recognize NEON instructions +- CFLAGS="$CFLAGS -mfpu=neon -mfloat-abi=softfp" +-fi +-AC_TRY_COMPILE([], +- [asm("vadd.i8 d0, d0, d0");], +- result="yes", result="no") +-AC_MSG_RESULT("$result") +-if test "$result" = "yes"; then +- AC_DEFINE(HAVE_ARM_NEON) +- HAVE_ARM_NEON=1 +-fi +-CFLAGS="$_SAVE_CFLAGS" +-AC_SUBST(HAVE_ARM_NEON) +- + dnl ======================================================== + dnl = pthread support + dnl = Start by checking whether the system support pthreads +@@ -4614,13 +4586,11 @@ + BUILD_STATIC_LIBS= + ENABLE_TESTS=1 + +-MOZ_THUMB2= + USE_ARM_KUSER= + + case "${target}" in + arm-android-eabi) + USE_ARM_KUSER=1 +- MOZ_THUMB2=1 + ;; + esac + +@@ -4666,80 +4636,204 @@ + dnl ======================================================== + MOZ_ARG_HEADER(Individual module options) + +-dnl Setup default CPU arch for arm target +-case "$target_cpu" in +- arm*) +- MOZ_ARM_ARCH=armv7 +- ;; +-esac + dnl ======================================================== +-dnl = Enable building the Thumb2 instruction set ++dnl = ARM toolchain tweaks + dnl ======================================================== +-MOZ_ARG_ENABLE_BOOL(thumb2, +- [ --enable-thumb2 Enable Thumb2 instruction set (implies ARMv7)], +- MOZ_THUMB2=1, +- MOZ_THUMB2=) +-if test -n "$MOZ_THUMB2"; then +- MOZ_ARM_ARCH=armv7 ++ ++dnl Defaults ++case "${target}" in ++arm-android-eabi) ++ MOZ_THUMB=yes ++ MOZ_ARCH=armv7-a ++ MOZ_FPU=vfp ++ MOZ_FLOAT_ABI=softfp ++ ;; ++arm*-*) ++ if test -n "$MOZ_PLATFORM_MAEMO"; then ++ MOZ_THUMB=no ++ MOZ_ARCH=armv7-a ++ MOZ_FLOAT_ABI=softfp ++ fi ++ if test "$MOZ_PLATFORM_MAEMO" = 6; then ++ MOZ_THUMB=yes ++ fi ++ ;; ++esac ++ ++dnl Kept for compatibility with some buildbot mozconfig ++MOZ_ARG_DISABLE_BOOL(thumb2, [], MOZ_THUMB=no, MOZ_THUMB=yes) ++ ++MOZ_ARG_WITH_STRING(thumb, ++[ --with-thumb[[=yes|no|toolchain]]] ++[ Use Thumb instruction set (-mthumb)], ++ if test -z "$GNU_CC"; then ++ AC_MSG_ERROR([--with-thumb is not supported on non-GNU toolchains]) ++ fi ++ MOZ_THUMB=$withval) ++ ++MOZ_ARG_WITH_STRING(thumb-interwork, ++[ --with-thumb-interwork[[=yes|no|toolchain]] ++ Use Thumb/ARM instuctions interwork (-mthumb-interwork)], ++ if test -z "$GNU_CC"; then ++ AC_MSG_ERROR([--with-thumb-interwork is not supported on non-GNU toolchains]) ++ fi ++ MOZ_THUMB_INTERWORK=$withval) ++ ++MOZ_ARG_WITH_STRING(arch, ++[ --with-arch=[[type|toolchain]] ++ Use specific CPU features (-march=type)], ++ if test -z "$GNU_CC"; then ++ AC_MSG_ERROR([--with-arch is not supported on non-GNU toolchains]) ++ fi ++ MOZ_ARCH=$withval) ++ ++MOZ_ARG_WITH_STRING(fpu, ++[ --with-fpu=[[type|toolchain]] ++ Use specific FPU type (-mfpu=type)], ++ if test -z "$GNU_CC"; then ++ AC_MSG_ERROR([--with-fpu is not supported on non-GNU toolchains]) ++ fi ++ MOZ_FPU=$withval) ++ ++MOZ_ARG_WITH_STRING(float-abi, ++[ --with-float-abi=[[type|toolchain]] ++ Use specific arm float ABI (-mfloat-abi=type)], ++ if test -z "$GNU_CC"; then ++ AC_MSG_ERROR([--with-float-abi is not supported on non-GNU toolchains]) ++ fi ++ MOZ_FLOAT_ABI=$withval) ++ ++MOZ_ARG_WITH_STRING(soft-float, ++[ --with-soft-float[[=yes|no|toolchain]] ++ Use soft float library (-msoft-float)], ++ if test -z "$GNU_CC"; then ++ AC_MSG_ERROR([--with-soft-float is not supported on non-GNU toolchains]) ++ fi ++ MOZ_SOFT_FLOAT=$withval) ++ ++case "$MOZ_ARCH" in ++toolchain|"") ++ arch_flag="" ++ ;; ++*) ++ arch_flag="-march=$MOZ_ARCH" ++ ;; ++esac ++ ++case "$MOZ_THUMB" in ++yes) ++ MOZ_THUMB2=1 ++ thumb_flag="-mthumb" ++ ;; ++no) ++ MOZ_THUMB2= ++ thumb_flag="-marm" ++ ;; ++*) ++ _SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$arch_flag" ++ AC_TRY_COMPILE([],[return sizeof(__thumb2__);], ++ MOZ_THUMB2=1, ++ MOZ_THUMB2=) ++ CFLAGS="$_SAVE_CFLAGS" ++ thumb_flag="" ++ ;; ++esac ++ ++if test "$MOZ_THUMB2" = 1; then ++ AC_DEFINE(MOZ_THUMB2) + fi + +-dnl ======================================================== +-dnl = Enable building for ARM specific CPU features +-dnl ======================================================== +-MOZ_ARG_WITH_STRING(cpu-arch, +-[ --with-cpu-arch=arch Use specific arm architecture CPU features, default armv7], +- MOZ_ARM_ARCH=$withval) ++case "$MOZ_THUMB_INTERWORK" in ++yes) ++ thumb_interwork_flag="-mthumb-interwork" ++ ;; ++no) ++ thumb_interwork_flag="-mno-thumb-interwork" ++ ;; ++*) # toolchain ++ thumb_interwork_flag="" ++ ;; ++esac + +-if test -n "$MOZ_THUMB2"; then +- case "$target_cpu" in +- arm*) +- if test "$MOZ_ARM_ARCH" != "armv7"; then +- AC_MSG_ERROR([--enable-thumb2 is not compatible with cpu-arch=$MOZ_ARM_ARCH]) +- fi +- if test "$GNU_CC"; then +- AC_DEFINE(MOZ_THUMB2) +- AC_DEFINE(MOZ_ARM_ARCH) +- CFLAGS="$CFLAGS -march=armv7-a -mthumb -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS" +- CXXFLAGS="$CXXFLAGS -march=armv7-a -mthumb -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS" +- ASFLAGS="$ASFLAGS -march=armv7-a -mthumb -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS" +- else +- AC_MSG_ERROR([--enable-thumb2 is not supported for non-GNU toolchains]) +- fi ++case "$MOZ_FPU" in ++toolchain|"") ++ fpu_flag="" + ;; +- *) +- AC_MSG_ERROR([--enable-thumb2 is not supported for non-ARM CPU architectures]) ++*) ++ fpu_flag="-mfpu=$MOZ_FPU" + ;; +- esac +-elif test "$MOZ_ARM_ARCH" = "armv7"; then +- case "$target_cpu" in +- arm*) +- if test "$GNU_CC"; then +- AC_DEFINE(MOZ_ARM_ARCH) +- CFLAGS="$CFLAGS -march=armv7-a -marm -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS" +- CXXFLAGS="$CXXFLAGS -march=armv7-a -marm -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS" +- ASFLAGS="$ASFLAGS -march=armv7-a -marm -mfloat-abi=softfp $MOZ_ARM_VFP_FLAGS" +- else +- AC_MSG_ERROR([--with-cpu-arch=armv7 is not supported for non-GNU toolchains]) +- fi ++esac ++ ++case "$MOZ_FLOAT_ABI" in ++toolchain|"") ++ float_abi_flag="" + ;; +- *) +- AC_MSG_ERROR([--with-cpu-arch=armv7 is not supported for non-ARM CPU architectures]) ++*) ++ float_abi_flag="-mfloat-abi=$MOZ_FLOAT_ABI" + ;; +- esac +-else +- case "$target_cpu" in +- arm*) +- if test "$GNU_CC"; then +- CFLAGS="$CFLAGS -march=armv5te -mthumb-interwork -msoft-float" +- CXXFLAGS="$CXXFLAGS -march=armv5te -mthumb-interwork -msoft-float" +- ASFLAGS="$ASFLAGS -march=armv5te -mthumb-interwork -msoft-float" +- fi +- ;; +- esac ++esac ++ ++case "$MOZ_SOFT_FLOAT" in ++yes) ++ soft_float_flag="-msoft-float" ++ ;; ++no) ++ soft_float_flag="-mno-soft-float" ++ ;; ++*) # toolchain ++ soft_float_flag="" ++ ;; ++esac ++ ++dnl Use echo to avoid accumulating space characters ++all_flags=`echo $arch_flag $thumb_flag $thumb_interwork_flag $fpu_flag $float_abi_flag $soft_float_flag` ++if test -n "$all_flags"; then ++ _SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$all_flags" ++ AC_MSG_CHECKING(whether the chosen combination of compiler flags ($all_flags) works) ++ AC_TRY_COMPILE([],[return 0;], ++ AC_MSG_RESULT([yes]), ++ AC_MSG_ERROR([no])) ++ ++ CFLAGS="$_SAVE_CFLAGS $all_flags" ++ CXXFLAGS="$CXXFLAGS $all_flags" ++ ASFLAGS="$ASFLAGS $all_flags" ++ if test -n "$thumb_flag"; then ++ LDFLAGS="$LDFLAGS $thumb_flag" ++ fi + fi + + AC_SUBST(MOZ_THUMB2) +-AC_SUBST(MOZ_ARM_ARCH) ++ ++if test "$CPU_ARCH" = "arm"; then ++ AC_MSG_CHECKING(for ARM SIMD support in compiler) ++ # We try to link so that this also fails when ++ # building with LTO. ++ AC_TRY_LINK([], ++ [asm("uqadd8 r1, r1, r2");], ++ result="yes", result="no") ++ AC_MSG_RESULT("$result") ++ if test "$result" = "yes"; then ++ AC_DEFINE(HAVE_ARM_SIMD) ++ HAVE_ARM_SIMD=1 ++ fi ++ ++ AC_MSG_CHECKING(for ARM NEON support in compiler) ++ # We try to link so that this also fails when ++ # building with LTO. ++ AC_TRY_LINK([], ++ [asm(".fpu neon\n vadd.i8 d0, d0, d0");], ++ result="yes", result="no") ++ AC_MSG_RESULT("$result") ++ if test "$result" = "yes"; then ++ AC_DEFINE(HAVE_ARM_NEON) ++ HAVE_ARM_NEON=1 ++ fi ++fi # CPU_ARCH = arm ++ ++AC_SUBST(HAVE_ARM_SIMD) ++AC_SUBST(HAVE_ARM_NEON) + + dnl ======================================================== + dnl = +@@ -6147,12 +6241,6 @@ + if test "$OS_ARCH" = "OS2"; then + ac_configure_args="$ac_configure_args CFLAGS=-Zomf AR=emxomfar" + fi +- if test -n "$MOZ_THUMB2"; then +- ac_configure_args="$ac_configure_args --enable-thumb2" +- fi +- if test -n "$MOZ_ARM_ARCH"; then +- ac_configure_args="$ac_configure_args --with-cpu-arch=$MOZ_ARM_ARCH" +- fi + + # Use a separate cache file for libffi, since it does things differently + # from our configure. From cde9fb47a9027e95b452dca23d451dc7ec3a2c0a Mon Sep 17 00:00:00 2001 From: Jookia <166291@gmail.com> Date: Sun, 3 Jul 2016 21:34:14 +1000 Subject: [PATCH 497/508] spidermonkey: Fix building 31.5 on GCC 5. --- pkgs/development/interpreters/spidermonkey/31.5.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/interpreters/spidermonkey/31.5.nix b/pkgs/development/interpreters/spidermonkey/31.5.nix index 4ee6658f59c..3943de2d8f9 100644 --- a/pkgs/development/interpreters/spidermonkey/31.5.nix +++ b/pkgs/development/interpreters/spidermonkey/31.5.nix @@ -18,6 +18,7 @@ stdenv.mkDerivation rec { postUnpack = "sourceRoot=\${sourceRoot}/js/src"; preConfigure = '' + export CXXFLAGS="-fpermissive" export LIBXUL_DIST=$out ''; From 33a1d8080b50bdbf0143f4513db2fb4fe3acbd2e Mon Sep 17 00:00:00 2001 From: Jookia <166291@gmail.com> Date: Sun, 3 Jul 2016 21:34:33 +1000 Subject: [PATCH 498/508] spidermonkey: Enable tests on 31.5. --- pkgs/development/interpreters/spidermonkey/31.5.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/interpreters/spidermonkey/31.5.nix b/pkgs/development/interpreters/spidermonkey/31.5.nix index 3943de2d8f9..0a71dc567b2 100644 --- a/pkgs/development/interpreters/spidermonkey/31.5.nix +++ b/pkgs/development/interpreters/spidermonkey/31.5.nix @@ -27,9 +27,6 @@ stdenv.mkDerivation rec { "--with-system-ffi" "--enable-readline" - # there is at least one unfixed issue building the tests, so I didn't bother - "--disable-tests" - # enabling these because they're wanted by 0ad. They may or may # not be good defaults for other uses. "--enable-gcgenerational" @@ -44,9 +41,6 @@ stdenv.mkDerivation rec { # to re-enable parallel builds if the source revision changes. enableParallelBuilding = false; - # see comment by --disable-tests - doCheck = false; - postFixup = '' # The headers are symlinks to a directory that doesn't get put # into $out, so they end up broken. Fix that by just resolving the From fcfec7507b3db27d1f17091602057f510591bb97 Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Mon, 18 Jul 2016 20:44:46 -0700 Subject: [PATCH 499/508] qt5ct: init at 0.24 --- pkgs/tools/misc/qt5ct/default.nix | 30 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/misc/qt5ct/default.nix diff --git a/pkgs/tools/misc/qt5ct/default.nix b/pkgs/tools/misc/qt5ct/default.nix new file mode 100644 index 00000000000..dd94e379eed --- /dev/null +++ b/pkgs/tools/misc/qt5ct/default.nix @@ -0,0 +1,30 @@ +{stdenv, fetchurl, qtbase, qtsvg, qttools, qmakeHook, makeQtWrapper}: + +stdenv.mkDerivation rec { + name = "qt5ct-${version}"; + version = "0.24"; + + src = fetchurl { + url = "mirror://sourceforge/qt5ct/qt5ct-${version}.tar.bz2"; + sha256 = "0k62nd945pbgkshycijzrgdyrwj5kcswk33slaj7hr7d6r7bmb6p"; + }; + + buildInputs = [ qtbase qtsvg ]; + nativeBuildInputs = [ makeQtWrapper qmakeHook qttools ]; + + preConfigure = '' + qmakeFlags="$qmakeFlags PLUGINDIR=$out/lib/qt5/plugins/platformthemes/" + ''; + + preFixup = '' + wrapQtProgram $out/bin/qt5ct + ''; + + meta = with stdenv.lib; { + description = "Qt5 Configuration Tool"; + homepage = https://www.opendesktop.org/content/show.php?content=168066; + platforms = platforms.linux; + license = licenses.bsd2; + maintainers = with maintainers; [ ralith ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6d606e24612..9a1759183dc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8903,6 +8903,8 @@ in qt5 = self.qt56; + qt5ct = qt5.callPackage ../tools/misc/qt5ct { }; + qt5LibsFun = self: with self; { accounts-qt = callPackage ../development/libraries/accounts-qt { }; From 33ef911d3d5e679399312693f68af068439e8f17 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Wed, 20 Jul 2016 09:48:25 +0300 Subject: [PATCH 500/508] perl-Math-Calc-Units: init at 1.07 --- pkgs/top-level/perl-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 31607fe2bf2..3007f08906c 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -7632,6 +7632,18 @@ let self = _self // overrides; _self = with self; { }; }; + MathCalcUnits = buildPerlPackage rec { + name = "Math-Calc-Units-1.07"; + src = fetchurl { + url = "mirror://cpan/authors/id/S/SF/SFINK/${name}.tar.gz"; + sha256 = "13wgbxv2fmigdj0vf7nwkq1y2q07jgfj8wdrpqkywfxv4zdwzqv1"; + }; + meta = { + description = "Human-readable unit-aware calculator"; + license = with stdenv.lib.licenses; [ artistic1 gpl2 ]; + }; + }; + MathBigInt = buildPerlPackage rec { name = "Math-BigInt-1.999724"; src = fetchurl { From f0fcbb072e89f2986b540c32610b8f25d2e72970 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Wed, 20 Jul 2016 09:48:49 +0300 Subject: [PATCH 501/508] perl-Monitoring-Plugin: init at 0.39 --- pkgs/top-level/perl-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3007f08906c..d50237f06d5 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -8306,6 +8306,25 @@ let self = _self // overrides; _self = with self; { }; }; + MonitoringPlugin = buildPerlPackage rec { + name = "Monitoring-Plugin-0.39"; + src = fetchurl { + url = "mirror://cpan/authors/id/N/NI/NIERLEIN/${name}.tar.gz"; + sha256 = "030cw86j8712z8rn66k935gbilb5rcj3lnk4n53vh1b2phrszvjw"; + }; + buildInputs = [ TestMore ]; + propagatedBuildInputs = [ + Carp ClassAccessor ConfigTiny + MathCalcUnits ParamsValidate ]; + meta = { + description = '' + A family of perl modules to streamline writing Naemon, + Nagios, Icinga or Shinken (and compatible) plugins + ''; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + IOPipely = buildPerlPackage rec { name = "IO-Pipely-0.005"; src = fetchurl { From c93ffb95bcebd6b64713df8dc07b0c77c9bb858e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 16 Jul 2016 16:58:15 +0200 Subject: [PATCH 502/508] grsecurity: enable support for setting pax flags via xattrs While useless for binaries within the Nix store, user xattrs are a convenient alternative for setting PaX flags to executables outside of the store. To use disable secure memory protections for a non-store file foo, do $ setfattr -n user.pax.flags -v em foo --- pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix b/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix index 894f2d8e364..67bad8aeb40 100644 --- a/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix +++ b/pkgs/os-specific/linux/kernel/grsecurity-nixos-config.nix @@ -14,7 +14,7 @@ GRKERNSEC_CONFIG_VIRT_KVM y GRKERNSEC_CONFIG_PRIORITY_SECURITY y PAX_PT_PAX_FLAGS y -PAX_XATTR_PAX_FLAGS n +PAX_XATTR_PAX_FLAGS y PAX_EI_PAX n GRKERNSEC_PROC_GID 0 From 55120ac4cb6ee9c051006508390c48649301e6db Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 20 Jul 2016 10:14:00 +0200 Subject: [PATCH 503/508] grsecurity: 4.6.4-201607112205 -> 4.6.4-201607192040 --- pkgs/os-specific/linux/kernel/patches.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 7b2feaf84a8..ddb1ccce91b 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -94,8 +94,8 @@ rec { grsecurity_testing = grsecPatch { kver = "4.6.4"; - grrev = "201607112205"; - sha256 = "16j01qqa7yi5yvli1lkl8ffybhy4697nyi18lbl5329zd09xq2ww"; + grrev = "201607192040"; + sha256 = "14l52halck6lwbpahz3fmv7q5cx22r77k1hqfnn29a66ws9ra6sz"; }; # This patch relaxes grsec constraints on the location of usermode helpers, From 1681718e2fd81c2613604df0a3fbb259bf213ceb Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 18 Jul 2016 13:40:47 +0200 Subject: [PATCH 504/508] google-fonts: Turn into a fixed-output derivation Also remove the executable bit from some fonts, and don't build on Hydra because this package is huge. --- pkgs/data/fonts/google-fonts/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/google-fonts/default.nix b/pkgs/data/fonts/google-fonts/default.nix index e4c655877c8..0e41cd4e6b7 100644 --- a/pkgs/data/fonts/google-fonts/default.nix +++ b/pkgs/data/fonts/google-fonts/default.nix @@ -12,15 +12,22 @@ stdenv.mkDerivation rec { phases = [ "unpackPhase" "installPhase" ]; installPhase = '' - mkdir -p $out/share/fonts/truetype - find . -name "*.ttf" -exec cp -v {} $out/share/fonts/truetype \; + dest=$out/share/fonts/truetype + mkdir -p $dest + find . -name "*.ttf" -exec cp -v {} $dest \; + chmod -x $dest/*.ttf ''; + outputHashAlgo = "sha256"; + outputHashMode = "recursive"; + outputHash = "0q03gg0sh2mljlbmhamnxz28d13znh9dzca84p554s7pwg6z4wca"; + meta = with stdenv.lib; { homepage = https://www.google.com/fontsl; description = "Font files available from Google Font"; license = with licenses; [ asl20 ofl ufl ]; platforms = platforms.all; + hydraPlatforms = []; maintainers = with maintainers; [ manveru ]; }; } From 024cb9eecd1f25dad64622ce1e59299059d5019c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 20 Jul 2016 11:54:34 +0200 Subject: [PATCH 505/508] gnutls: Disable parallel building This can fail randomly with CC systemkey.o In file included from systemkey.c:47:0: systemkey-args.h:1:1: error: unterminated comment /* -*- buffer-read-only: t -*- vi: set ro: which is presumably caused by a race with the generation step above: autogen systemkey-args.def http://hydra.nixos.org/build/37878764#tabs-buildsteps --- pkgs/development/libraries/gnutls/generic.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gnutls/generic.nix b/pkgs/development/libraries/gnutls/generic.nix index 9866dd9fd3a..10047888423 100644 --- a/pkgs/development/libraries/gnutls/generic.nix +++ b/pkgs/development/libraries/gnutls/generic.nix @@ -36,8 +36,9 @@ stdenv.mkDerivation { # Build of the Guile bindings is not parallel-safe. See # - # for the actual fix. - enableParallelBuilding = !guileBindings; + # for the actual fix. Also an apparent race in the generation of + # systemkey-args.h. + enableParallelBuilding = false; buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen ] ++ lib.optional doCheck nettools From 13fc6e56fe8012936710a0475e2fd833acc3d3fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 20 Jul 2016 12:33:06 +0200 Subject: [PATCH 506/508] Adding intel-gpu-tools to xorg. --- pkgs/servers/x11/xorg/default.nix | 11 +++++++++++ pkgs/servers/x11/xorg/extra.list | 1 + pkgs/servers/x11/xorg/overrides.nix | 4 ++++ pkgs/top-level/all-packages.nix | 3 ++- 4 files changed, 18 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 32303dac386..63e628bf29e 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -611,6 +611,17 @@ let meta.platforms = stdenv.lib.platforms.unix; }) // {inherit ;}; + intelgputools = (mkDerivation "intelgputools" { + name = "intel-gpu-tools-1.15"; + builder = ./builder.sh; + src = fetchurl { + url = mirror://xorg/individual/app/intel-gpu-tools-1.15.tar.bz2; + sha256 = "1gb22hvj4gdjj92iqbwcp44kf2znk2l1fvbcrr4sm4i65l8mdwnw"; + }; + buildInputs = [pkgconfig dri2proto libdrm udev libpciaccess python libX11 libXext libXrandr libXv ]; + meta.platforms = stdenv.lib.platforms.unix; + }) // {inherit dri2proto libdrm udev libpciaccess python libX11 libXext libXrandr libXv ;}; + kbproto = (mkDerivation "kbproto" { name = "kbproto-1.0.7"; builder = ./builder.sh; diff --git a/pkgs/servers/x11/xorg/extra.list b/pkgs/servers/x11/xorg/extra.list index 56a7b1f76a9..3129e090e6b 100644 --- a/pkgs/servers/x11/xorg/extra.list +++ b/pkgs/servers/x11/xorg/extra.list @@ -9,3 +9,4 @@ http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2 http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2 http://xcb.freedesktop.org/dist/xcb-util-errors-1.0.tar.bz2 mirror://xorg/individual/app/appres-1.0.4.tar.bz2 +mirror://xorg/individual/app/intel-gpu-tools-1.15.tar.bz2 diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 99964bd77c3..bc00df85bda 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -57,6 +57,10 @@ in tradcpp = if stdenv.isDarwin then args.tradcpp else null; }; + intelgputools = attrs: attrs // { + buildInputs = attrs.buildInputs ++ [ args.cairo args.libunwind ]; + }; + mkfontdir = attrs: attrs // { preBuild = "substituteInPlace mkfontdir.in --replace @bindir@ ${xorg.mkfontscale}/bin"; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2b5ad033eb2..47e02253c7e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10573,7 +10573,8 @@ in inherit clangStdenv fetchurl fetchgit fetchpatch stdenv pkgconfig intltool freetype fontconfig libxslt expat libpng zlib perl mesa_drivers spice_protocol libunwind dbus libuuid openssl gperf m4 libevdev tradcpp libinput mcpp makeWrapper autoreconfHook - autoconf automake libtool xmlto asciidoc flex bison python mtdev pixman; + autoconf automake libtool xmlto asciidoc flex bison python mtdev pixman + cairo; inherit (darwin) apple_sdk cf-private libobjc; bootstrap_cmds = if stdenv.isDarwin then darwin.bootstrap_cmds else null; mesa = mesa_noglu; From c5222b9d550ff867d8922bf9b14c84d5996f84aa Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Wed, 20 Jul 2016 18:46:22 +0800 Subject: [PATCH 507/508] syncthing: 0.13.10 -> 0.14.0 (#17110) --- .../networking/syncthing/default.nix | 4 +- .../networking/syncthing013/default.nix | 38 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 pkgs/applications/networking/syncthing013/default.nix diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix index b6d318011aa..4529cf3bd78 100644 --- a/pkgs/applications/networking/syncthing/default.nix +++ b/pkgs/applications/networking/syncthing/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchgit, go }: stdenv.mkDerivation rec { - version = "0.13.10"; + version = "0.14.0"; name = "syncthing-${version}"; src = fetchgit { url = https://github.com/syncthing/syncthing; rev = "refs/tags/v${version}"; - sha256 = "07q3j6mnrza719rnvbkdsmvlkyr2pch5sj2l204m5iy5mxaghpx7"; + sha256 = "15l3q3r6i3q95i474winswx4y149b5ic7xhpnj52s78fxd4va2q2"; }; buildInputs = [ go ]; diff --git a/pkgs/applications/networking/syncthing013/default.nix b/pkgs/applications/networking/syncthing013/default.nix new file mode 100644 index 00000000000..b6d318011aa --- /dev/null +++ b/pkgs/applications/networking/syncthing013/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchgit, go }: + +stdenv.mkDerivation rec { + version = "0.13.10"; + name = "syncthing-${version}"; + + src = fetchgit { + url = https://github.com/syncthing/syncthing; + rev = "refs/tags/v${version}"; + sha256 = "07q3j6mnrza719rnvbkdsmvlkyr2pch5sj2l204m5iy5mxaghpx7"; + }; + + buildInputs = [ go ]; + + buildPhase = '' + mkdir -p src/github.com/syncthing + ln -s $(pwd) src/github.com/syncthing/syncthing + export GOPATH=$(pwd) + + # Syncthing's build.go script expects this working directory + cd src/github.com/syncthing/syncthing + + go run build.go -no-upgrade -version v${version} install all + ''; + + installPhase = '' + mkdir -p $out/bin + cp bin/* $out/bin + ''; + + meta = { + homepage = https://www.syncthing.net/; + description = "Open Source Continuous File Synchronization"; + license = stdenv.lib.licenses.mpl20; + maintainers = with stdenv.lib.maintainers; [pshendry]; + platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 47e02253c7e..f146cc92dcc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14604,6 +14604,8 @@ in syncthing012 = callPackage ../applications/networking/syncthing012 { }; + syncthing013 = callPackage ../applications/networking/syncthing013 { }; + # linux only by now synergy = callPackage ../applications/misc/synergy { }; From ddfc4ba977f9a3a706e9bdcd573a10f6091220e4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 20 Jul 2016 12:49:40 +0200 Subject: [PATCH 508/508] haskell-Glob: fix LTS build --- .../development/haskell-modules/configuration-ghc-7.10.x.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 4131e33234b..ab8a091aabe 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -63,9 +63,6 @@ self: super: { nats = dontHaddock super.nats; bytestring-builder = dontHaddock super.bytestring-builder; - # requires filepath >=1.1 && <1.4 - Glob = doJailbreak super.Glob; - # Setup: At least the following dependencies are missing: base <4.8 hspec-expectations = overrideCabal super.hspec-expectations (drv: { postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal"; @@ -211,6 +208,8 @@ self: super: { semigroups_0_18_1 = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]); + Glob_0_7_9 = addBuildDepends super.Glob_0_7_9 (with self; [semigroups]); + Glob = addBuildDepends super.Glob (with self; [semigroups]); # Moved out from common as no longer the case for GHC8 ghc-mod = super.ghc-mod.override { cabal-helper = self.cabal-helper_0_6_3_1; };